xref: /linux/kernel/sched/ext.c (revision a514e6f8f5caa24413731bed54b322bd34d918dd)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * BPF extensible scheduler class: Documentation/scheduler/sched-ext.rst
4  *
5  * Copyright (c) 2022 Meta Platforms, Inc. and affiliates.
6  * Copyright (c) 2022 Tejun Heo <tj@kernel.org>
7  * Copyright (c) 2022 David Vernet <dvernet@meta.com>
8  */
9 #define SCX_OP_IDX(op)		(offsetof(struct sched_ext_ops, op) / sizeof(void (*)(void)))
10 
11 enum scx_consts {
12 	SCX_DSP_DFL_MAX_BATCH		= 32,
13 	SCX_DSP_MAX_LOOPS		= 32,
14 	SCX_WATCHDOG_MAX_TIMEOUT	= 30 * HZ,
15 
16 	SCX_EXIT_BT_LEN			= 64,
17 	SCX_EXIT_MSG_LEN		= 1024,
18 	SCX_EXIT_DUMP_DFL_LEN		= 32768,
19 
20 	SCX_CPUPERF_ONE			= SCHED_CAPACITY_SCALE,
21 
22 	/*
23 	 * Iterating all tasks may take a while. Periodically drop
24 	 * scx_tasks_lock to avoid causing e.g. CSD and RCU stalls.
25 	 */
26 	SCX_OPS_TASK_ITER_BATCH		= 32,
27 };
28 
29 enum scx_exit_kind {
30 	SCX_EXIT_NONE,
31 	SCX_EXIT_DONE,
32 
33 	SCX_EXIT_UNREG = 64,	/* user-space initiated unregistration */
34 	SCX_EXIT_UNREG_BPF,	/* BPF-initiated unregistration */
35 	SCX_EXIT_UNREG_KERN,	/* kernel-initiated unregistration */
36 	SCX_EXIT_SYSRQ,		/* requested by 'S' sysrq */
37 
38 	SCX_EXIT_ERROR = 1024,	/* runtime error, error msg contains details */
39 	SCX_EXIT_ERROR_BPF,	/* ERROR but triggered through scx_bpf_error() */
40 	SCX_EXIT_ERROR_STALL,	/* watchdog detected stalled runnable tasks */
41 };
42 
43 /*
44  * An exit code can be specified when exiting with scx_bpf_exit() or
45  * scx_ops_exit(), corresponding to exit_kind UNREG_BPF and UNREG_KERN
46  * respectively. The codes are 64bit of the format:
47  *
48  *   Bits: [63  ..  48 47   ..  32 31 .. 0]
49  *         [ SYS ACT ] [ SYS RSN ] [ USR  ]
50  *
51  *   SYS ACT: System-defined exit actions
52  *   SYS RSN: System-defined exit reasons
53  *   USR    : User-defined exit codes and reasons
54  *
55  * Using the above, users may communicate intention and context by ORing system
56  * actions and/or system reasons with a user-defined exit code.
57  */
58 enum scx_exit_code {
59 	/* Reasons */
60 	SCX_ECODE_RSN_HOTPLUG	= 1LLU << 32,
61 
62 	/* Actions */
63 	SCX_ECODE_ACT_RESTART	= 1LLU << 48,
64 };
65 
66 /*
67  * scx_exit_info is passed to ops.exit() to describe why the BPF scheduler is
68  * being disabled.
69  */
70 struct scx_exit_info {
71 	/* %SCX_EXIT_* - broad category of the exit reason */
72 	enum scx_exit_kind	kind;
73 
74 	/* exit code if gracefully exiting */
75 	s64			exit_code;
76 
77 	/* textual representation of the above */
78 	const char		*reason;
79 
80 	/* backtrace if exiting due to an error */
81 	unsigned long		*bt;
82 	u32			bt_len;
83 
84 	/* informational message */
85 	char			*msg;
86 
87 	/* debug dump */
88 	char			*dump;
89 };
90 
91 /* sched_ext_ops.flags */
92 enum scx_ops_flags {
93 	/*
94 	 * Keep built-in idle tracking even if ops.update_idle() is implemented.
95 	 */
96 	SCX_OPS_KEEP_BUILTIN_IDLE = 1LLU << 0,
97 
98 	/*
99 	 * By default, if there are no other task to run on the CPU, ext core
100 	 * keeps running the current task even after its slice expires. If this
101 	 * flag is specified, such tasks are passed to ops.enqueue() with
102 	 * %SCX_ENQ_LAST. See the comment above %SCX_ENQ_LAST for more info.
103 	 */
104 	SCX_OPS_ENQ_LAST	= 1LLU << 1,
105 
106 	/*
107 	 * An exiting task may schedule after PF_EXITING is set. In such cases,
108 	 * bpf_task_from_pid() may not be able to find the task and if the BPF
109 	 * scheduler depends on pid lookup for dispatching, the task will be
110 	 * lost leading to various issues including RCU grace period stalls.
111 	 *
112 	 * To mask this problem, by default, unhashed tasks are automatically
113 	 * dispatched to the local DSQ on enqueue. If the BPF scheduler doesn't
114 	 * depend on pid lookups and wants to handle these tasks directly, the
115 	 * following flag can be used.
116 	 */
117 	SCX_OPS_ENQ_EXITING	= 1LLU << 2,
118 
119 	/*
120 	 * If set, only tasks with policy set to SCHED_EXT are attached to
121 	 * sched_ext. If clear, SCHED_NORMAL tasks are also included.
122 	 */
123 	SCX_OPS_SWITCH_PARTIAL	= 1LLU << 3,
124 
125 	/*
126 	 * CPU cgroup support flags
127 	 */
128 	SCX_OPS_HAS_CGROUP_WEIGHT = 1LLU << 16,	/* cpu.weight */
129 
130 	SCX_OPS_ALL_FLAGS	= SCX_OPS_KEEP_BUILTIN_IDLE |
131 				  SCX_OPS_ENQ_LAST |
132 				  SCX_OPS_ENQ_EXITING |
133 				  SCX_OPS_SWITCH_PARTIAL |
134 				  SCX_OPS_HAS_CGROUP_WEIGHT,
135 };
136 
137 /* argument container for ops.init_task() */
138 struct scx_init_task_args {
139 	/*
140 	 * Set if ops.init_task() is being invoked on the fork path, as opposed
141 	 * to the scheduler transition path.
142 	 */
143 	bool			fork;
144 #ifdef CONFIG_EXT_GROUP_SCHED
145 	/* the cgroup the task is joining */
146 	struct cgroup		*cgroup;
147 #endif
148 };
149 
150 /* argument container for ops.exit_task() */
151 struct scx_exit_task_args {
152 	/* Whether the task exited before running on sched_ext. */
153 	bool cancelled;
154 };
155 
156 /* argument container for ops->cgroup_init() */
157 struct scx_cgroup_init_args {
158 	/* the weight of the cgroup [1..10000] */
159 	u32			weight;
160 };
161 
162 enum scx_cpu_preempt_reason {
163 	/* next task is being scheduled by &sched_class_rt */
164 	SCX_CPU_PREEMPT_RT,
165 	/* next task is being scheduled by &sched_class_dl */
166 	SCX_CPU_PREEMPT_DL,
167 	/* next task is being scheduled by &sched_class_stop */
168 	SCX_CPU_PREEMPT_STOP,
169 	/* unknown reason for SCX being preempted */
170 	SCX_CPU_PREEMPT_UNKNOWN,
171 };
172 
173 /*
174  * Argument container for ops->cpu_acquire(). Currently empty, but may be
175  * expanded in the future.
176  */
177 struct scx_cpu_acquire_args {};
178 
179 /* argument container for ops->cpu_release() */
180 struct scx_cpu_release_args {
181 	/* the reason the CPU was preempted */
182 	enum scx_cpu_preempt_reason reason;
183 
184 	/* the task that's going to be scheduled on the CPU */
185 	struct task_struct	*task;
186 };
187 
188 /*
189  * Informational context provided to dump operations.
190  */
191 struct scx_dump_ctx {
192 	enum scx_exit_kind	kind;
193 	s64			exit_code;
194 	const char		*reason;
195 	u64			at_ns;
196 	u64			at_jiffies;
197 };
198 
199 /**
200  * struct sched_ext_ops - Operation table for BPF scheduler implementation
201  *
202  * Userland can implement an arbitrary scheduling policy by implementing and
203  * loading operations in this table.
204  */
205 struct sched_ext_ops {
206 	/**
207 	 * select_cpu - Pick the target CPU for a task which is being woken up
208 	 * @p: task being woken up
209 	 * @prev_cpu: the cpu @p was on before sleeping
210 	 * @wake_flags: SCX_WAKE_*
211 	 *
212 	 * Decision made here isn't final. @p may be moved to any CPU while it
213 	 * is getting dispatched for execution later. However, as @p is not on
214 	 * the rq at this point, getting the eventual execution CPU right here
215 	 * saves a small bit of overhead down the line.
216 	 *
217 	 * If an idle CPU is returned, the CPU is kicked and will try to
218 	 * dispatch. While an explicit custom mechanism can be added,
219 	 * select_cpu() serves as the default way to wake up idle CPUs.
220 	 *
221 	 * @p may be dispatched directly by calling scx_bpf_dispatch(). If @p
222 	 * is dispatched, the ops.enqueue() callback will be skipped. Finally,
223 	 * if @p is dispatched to SCX_DSQ_LOCAL, it will be dispatched to the
224 	 * local DSQ of whatever CPU is returned by this callback.
225 	 */
226 	s32 (*select_cpu)(struct task_struct *p, s32 prev_cpu, u64 wake_flags);
227 
228 	/**
229 	 * enqueue - Enqueue a task on the BPF scheduler
230 	 * @p: task being enqueued
231 	 * @enq_flags: %SCX_ENQ_*
232 	 *
233 	 * @p is ready to run. Dispatch directly by calling scx_bpf_dispatch()
234 	 * or enqueue on the BPF scheduler. If not directly dispatched, the bpf
235 	 * scheduler owns @p and if it fails to dispatch @p, the task will
236 	 * stall.
237 	 *
238 	 * If @p was dispatched from ops.select_cpu(), this callback is
239 	 * skipped.
240 	 */
241 	void (*enqueue)(struct task_struct *p, u64 enq_flags);
242 
243 	/**
244 	 * dequeue - Remove a task from the BPF scheduler
245 	 * @p: task being dequeued
246 	 * @deq_flags: %SCX_DEQ_*
247 	 *
248 	 * Remove @p from the BPF scheduler. This is usually called to isolate
249 	 * the task while updating its scheduling properties (e.g. priority).
250 	 *
251 	 * The ext core keeps track of whether the BPF side owns a given task or
252 	 * not and can gracefully ignore spurious dispatches from BPF side,
253 	 * which makes it safe to not implement this method. However, depending
254 	 * on the scheduling logic, this can lead to confusing behaviors - e.g.
255 	 * scheduling position not being updated across a priority change.
256 	 */
257 	void (*dequeue)(struct task_struct *p, u64 deq_flags);
258 
259 	/**
260 	 * dispatch - Dispatch tasks from the BPF scheduler and/or consume DSQs
261 	 * @cpu: CPU to dispatch tasks for
262 	 * @prev: previous task being switched out
263 	 *
264 	 * Called when a CPU's local dsq is empty. The operation should dispatch
265 	 * one or more tasks from the BPF scheduler into the DSQs using
266 	 * scx_bpf_dispatch() and/or consume user DSQs into the local DSQ using
267 	 * scx_bpf_consume().
268 	 *
269 	 * The maximum number of times scx_bpf_dispatch() can be called without
270 	 * an intervening scx_bpf_consume() is specified by
271 	 * ops.dispatch_max_batch. See the comments on top of the two functions
272 	 * for more details.
273 	 *
274 	 * When not %NULL, @prev is an SCX task with its slice depleted. If
275 	 * @prev is still runnable as indicated by set %SCX_TASK_QUEUED in
276 	 * @prev->scx.flags, it is not enqueued yet and will be enqueued after
277 	 * ops.dispatch() returns. To keep executing @prev, return without
278 	 * dispatching or consuming any tasks. Also see %SCX_OPS_ENQ_LAST.
279 	 */
280 	void (*dispatch)(s32 cpu, struct task_struct *prev);
281 
282 	/**
283 	 * tick - Periodic tick
284 	 * @p: task running currently
285 	 *
286 	 * This operation is called every 1/HZ seconds on CPUs which are
287 	 * executing an SCX task. Setting @p->scx.slice to 0 will trigger an
288 	 * immediate dispatch cycle on the CPU.
289 	 */
290 	void (*tick)(struct task_struct *p);
291 
292 	/**
293 	 * runnable - A task is becoming runnable on its associated CPU
294 	 * @p: task becoming runnable
295 	 * @enq_flags: %SCX_ENQ_*
296 	 *
297 	 * This and the following three functions can be used to track a task's
298 	 * execution state transitions. A task becomes ->runnable() on a CPU,
299 	 * and then goes through one or more ->running() and ->stopping() pairs
300 	 * as it runs on the CPU, and eventually becomes ->quiescent() when it's
301 	 * done running on the CPU.
302 	 *
303 	 * @p is becoming runnable on the CPU because it's
304 	 *
305 	 * - waking up (%SCX_ENQ_WAKEUP)
306 	 * - being moved from another CPU
307 	 * - being restored after temporarily taken off the queue for an
308 	 *   attribute change.
309 	 *
310 	 * This and ->enqueue() are related but not coupled. This operation
311 	 * notifies @p's state transition and may not be followed by ->enqueue()
312 	 * e.g. when @p is being dispatched to a remote CPU, or when @p is
313 	 * being enqueued on a CPU experiencing a hotplug event. Likewise, a
314 	 * task may be ->enqueue()'d without being preceded by this operation
315 	 * e.g. after exhausting its slice.
316 	 */
317 	void (*runnable)(struct task_struct *p, u64 enq_flags);
318 
319 	/**
320 	 * running - A task is starting to run on its associated CPU
321 	 * @p: task starting to run
322 	 *
323 	 * See ->runnable() for explanation on the task state notifiers.
324 	 */
325 	void (*running)(struct task_struct *p);
326 
327 	/**
328 	 * stopping - A task is stopping execution
329 	 * @p: task stopping to run
330 	 * @runnable: is task @p still runnable?
331 	 *
332 	 * See ->runnable() for explanation on the task state notifiers. If
333 	 * !@runnable, ->quiescent() will be invoked after this operation
334 	 * returns.
335 	 */
336 	void (*stopping)(struct task_struct *p, bool runnable);
337 
338 	/**
339 	 * quiescent - A task is becoming not runnable on its associated CPU
340 	 * @p: task becoming not runnable
341 	 * @deq_flags: %SCX_DEQ_*
342 	 *
343 	 * See ->runnable() for explanation on the task state notifiers.
344 	 *
345 	 * @p is becoming quiescent on the CPU because it's
346 	 *
347 	 * - sleeping (%SCX_DEQ_SLEEP)
348 	 * - being moved to another CPU
349 	 * - being temporarily taken off the queue for an attribute change
350 	 *   (%SCX_DEQ_SAVE)
351 	 *
352 	 * This and ->dequeue() are related but not coupled. This operation
353 	 * notifies @p's state transition and may not be preceded by ->dequeue()
354 	 * e.g. when @p is being dispatched to a remote CPU.
355 	 */
356 	void (*quiescent)(struct task_struct *p, u64 deq_flags);
357 
358 	/**
359 	 * yield - Yield CPU
360 	 * @from: yielding task
361 	 * @to: optional yield target task
362 	 *
363 	 * If @to is NULL, @from is yielding the CPU to other runnable tasks.
364 	 * The BPF scheduler should ensure that other available tasks are
365 	 * dispatched before the yielding task. Return value is ignored in this
366 	 * case.
367 	 *
368 	 * If @to is not-NULL, @from wants to yield the CPU to @to. If the bpf
369 	 * scheduler can implement the request, return %true; otherwise, %false.
370 	 */
371 	bool (*yield)(struct task_struct *from, struct task_struct *to);
372 
373 	/**
374 	 * core_sched_before - Task ordering for core-sched
375 	 * @a: task A
376 	 * @b: task B
377 	 *
378 	 * Used by core-sched to determine the ordering between two tasks. See
379 	 * Documentation/admin-guide/hw-vuln/core-scheduling.rst for details on
380 	 * core-sched.
381 	 *
382 	 * Both @a and @b are runnable and may or may not currently be queued on
383 	 * the BPF scheduler. Should return %true if @a should run before @b.
384 	 * %false if there's no required ordering or @b should run before @a.
385 	 *
386 	 * If not specified, the default is ordering them according to when they
387 	 * became runnable.
388 	 */
389 	bool (*core_sched_before)(struct task_struct *a, struct task_struct *b);
390 
391 	/**
392 	 * set_weight - Set task weight
393 	 * @p: task to set weight for
394 	 * @weight: new weight [1..10000]
395 	 *
396 	 * Update @p's weight to @weight.
397 	 */
398 	void (*set_weight)(struct task_struct *p, u32 weight);
399 
400 	/**
401 	 * set_cpumask - Set CPU affinity
402 	 * @p: task to set CPU affinity for
403 	 * @cpumask: cpumask of cpus that @p can run on
404 	 *
405 	 * Update @p's CPU affinity to @cpumask.
406 	 */
407 	void (*set_cpumask)(struct task_struct *p,
408 			    const struct cpumask *cpumask);
409 
410 	/**
411 	 * update_idle - Update the idle state of a CPU
412 	 * @cpu: CPU to udpate the idle state for
413 	 * @idle: whether entering or exiting the idle state
414 	 *
415 	 * This operation is called when @rq's CPU goes or leaves the idle
416 	 * state. By default, implementing this operation disables the built-in
417 	 * idle CPU tracking and the following helpers become unavailable:
418 	 *
419 	 * - scx_bpf_select_cpu_dfl()
420 	 * - scx_bpf_test_and_clear_cpu_idle()
421 	 * - scx_bpf_pick_idle_cpu()
422 	 *
423 	 * The user also must implement ops.select_cpu() as the default
424 	 * implementation relies on scx_bpf_select_cpu_dfl().
425 	 *
426 	 * Specify the %SCX_OPS_KEEP_BUILTIN_IDLE flag to keep the built-in idle
427 	 * tracking.
428 	 */
429 	void (*update_idle)(s32 cpu, bool idle);
430 
431 	/**
432 	 * cpu_acquire - A CPU is becoming available to the BPF scheduler
433 	 * @cpu: The CPU being acquired by the BPF scheduler.
434 	 * @args: Acquire arguments, see the struct definition.
435 	 *
436 	 * A CPU that was previously released from the BPF scheduler is now once
437 	 * again under its control.
438 	 */
439 	void (*cpu_acquire)(s32 cpu, struct scx_cpu_acquire_args *args);
440 
441 	/**
442 	 * cpu_release - A CPU is taken away from the BPF scheduler
443 	 * @cpu: The CPU being released by the BPF scheduler.
444 	 * @args: Release arguments, see the struct definition.
445 	 *
446 	 * The specified CPU is no longer under the control of the BPF
447 	 * scheduler. This could be because it was preempted by a higher
448 	 * priority sched_class, though there may be other reasons as well. The
449 	 * caller should consult @args->reason to determine the cause.
450 	 */
451 	void (*cpu_release)(s32 cpu, struct scx_cpu_release_args *args);
452 
453 	/**
454 	 * init_task - Initialize a task to run in a BPF scheduler
455 	 * @p: task to initialize for BPF scheduling
456 	 * @args: init arguments, see the struct definition
457 	 *
458 	 * Either we're loading a BPF scheduler or a new task is being forked.
459 	 * Initialize @p for BPF scheduling. This operation may block and can
460 	 * be used for allocations, and is called exactly once for a task.
461 	 *
462 	 * Return 0 for success, -errno for failure. An error return while
463 	 * loading will abort loading of the BPF scheduler. During a fork, it
464 	 * will abort that specific fork.
465 	 */
466 	s32 (*init_task)(struct task_struct *p, struct scx_init_task_args *args);
467 
468 	/**
469 	 * exit_task - Exit a previously-running task from the system
470 	 * @p: task to exit
471 	 *
472 	 * @p is exiting or the BPF scheduler is being unloaded. Perform any
473 	 * necessary cleanup for @p.
474 	 */
475 	void (*exit_task)(struct task_struct *p, struct scx_exit_task_args *args);
476 
477 	/**
478 	 * enable - Enable BPF scheduling for a task
479 	 * @p: task to enable BPF scheduling for
480 	 *
481 	 * Enable @p for BPF scheduling. enable() is called on @p any time it
482 	 * enters SCX, and is always paired with a matching disable().
483 	 */
484 	void (*enable)(struct task_struct *p);
485 
486 	/**
487 	 * disable - Disable BPF scheduling for a task
488 	 * @p: task to disable BPF scheduling for
489 	 *
490 	 * @p is exiting, leaving SCX or the BPF scheduler is being unloaded.
491 	 * Disable BPF scheduling for @p. A disable() call is always matched
492 	 * with a prior enable() call.
493 	 */
494 	void (*disable)(struct task_struct *p);
495 
496 	/**
497 	 * dump - Dump BPF scheduler state on error
498 	 * @ctx: debug dump context
499 	 *
500 	 * Use scx_bpf_dump() to generate BPF scheduler specific debug dump.
501 	 */
502 	void (*dump)(struct scx_dump_ctx *ctx);
503 
504 	/**
505 	 * dump_cpu - Dump BPF scheduler state for a CPU on error
506 	 * @ctx: debug dump context
507 	 * @cpu: CPU to generate debug dump for
508 	 * @idle: @cpu is currently idle without any runnable tasks
509 	 *
510 	 * Use scx_bpf_dump() to generate BPF scheduler specific debug dump for
511 	 * @cpu. If @idle is %true and this operation doesn't produce any
512 	 * output, @cpu is skipped for dump.
513 	 */
514 	void (*dump_cpu)(struct scx_dump_ctx *ctx, s32 cpu, bool idle);
515 
516 	/**
517 	 * dump_task - Dump BPF scheduler state for a runnable task on error
518 	 * @ctx: debug dump context
519 	 * @p: runnable task to generate debug dump for
520 	 *
521 	 * Use scx_bpf_dump() to generate BPF scheduler specific debug dump for
522 	 * @p.
523 	 */
524 	void (*dump_task)(struct scx_dump_ctx *ctx, struct task_struct *p);
525 
526 #ifdef CONFIG_EXT_GROUP_SCHED
527 	/**
528 	 * cgroup_init - Initialize a cgroup
529 	 * @cgrp: cgroup being initialized
530 	 * @args: init arguments, see the struct definition
531 	 *
532 	 * Either the BPF scheduler is being loaded or @cgrp created, initialize
533 	 * @cgrp for sched_ext. This operation may block.
534 	 *
535 	 * Return 0 for success, -errno for failure. An error return while
536 	 * loading will abort loading of the BPF scheduler. During cgroup
537 	 * creation, it will abort the specific cgroup creation.
538 	 */
539 	s32 (*cgroup_init)(struct cgroup *cgrp,
540 			   struct scx_cgroup_init_args *args);
541 
542 	/**
543 	 * cgroup_exit - Exit a cgroup
544 	 * @cgrp: cgroup being exited
545 	 *
546 	 * Either the BPF scheduler is being unloaded or @cgrp destroyed, exit
547 	 * @cgrp for sched_ext. This operation my block.
548 	 */
549 	void (*cgroup_exit)(struct cgroup *cgrp);
550 
551 	/**
552 	 * cgroup_prep_move - Prepare a task to be moved to a different cgroup
553 	 * @p: task being moved
554 	 * @from: cgroup @p is being moved from
555 	 * @to: cgroup @p is being moved to
556 	 *
557 	 * Prepare @p for move from cgroup @from to @to. This operation may
558 	 * block and can be used for allocations.
559 	 *
560 	 * Return 0 for success, -errno for failure. An error return aborts the
561 	 * migration.
562 	 */
563 	s32 (*cgroup_prep_move)(struct task_struct *p,
564 				struct cgroup *from, struct cgroup *to);
565 
566 	/**
567 	 * cgroup_move - Commit cgroup move
568 	 * @p: task being moved
569 	 * @from: cgroup @p is being moved from
570 	 * @to: cgroup @p is being moved to
571 	 *
572 	 * Commit the move. @p is dequeued during this operation.
573 	 */
574 	void (*cgroup_move)(struct task_struct *p,
575 			    struct cgroup *from, struct cgroup *to);
576 
577 	/**
578 	 * cgroup_cancel_move - Cancel cgroup move
579 	 * @p: task whose cgroup move is being canceled
580 	 * @from: cgroup @p was being moved from
581 	 * @to: cgroup @p was being moved to
582 	 *
583 	 * @p was cgroup_prep_move()'d but failed before reaching cgroup_move().
584 	 * Undo the preparation.
585 	 */
586 	void (*cgroup_cancel_move)(struct task_struct *p,
587 				   struct cgroup *from, struct cgroup *to);
588 
589 	/**
590 	 * cgroup_set_weight - A cgroup's weight is being changed
591 	 * @cgrp: cgroup whose weight is being updated
592 	 * @weight: new weight [1..10000]
593 	 *
594 	 * Update @tg's weight to @weight.
595 	 */
596 	void (*cgroup_set_weight)(struct cgroup *cgrp, u32 weight);
597 #endif	/* CONFIG_CGROUPS */
598 
599 	/*
600 	 * All online ops must come before ops.cpu_online().
601 	 */
602 
603 	/**
604 	 * cpu_online - A CPU became online
605 	 * @cpu: CPU which just came up
606 	 *
607 	 * @cpu just came online. @cpu will not call ops.enqueue() or
608 	 * ops.dispatch(), nor run tasks associated with other CPUs beforehand.
609 	 */
610 	void (*cpu_online)(s32 cpu);
611 
612 	/**
613 	 * cpu_offline - A CPU is going offline
614 	 * @cpu: CPU which is going offline
615 	 *
616 	 * @cpu is going offline. @cpu will not call ops.enqueue() or
617 	 * ops.dispatch(), nor run tasks associated with other CPUs afterwards.
618 	 */
619 	void (*cpu_offline)(s32 cpu);
620 
621 	/*
622 	 * All CPU hotplug ops must come before ops.init().
623 	 */
624 
625 	/**
626 	 * init - Initialize the BPF scheduler
627 	 */
628 	s32 (*init)(void);
629 
630 	/**
631 	 * exit - Clean up after the BPF scheduler
632 	 * @info: Exit info
633 	 *
634 	 * ops.exit() is also called on ops.init() failure, which is a bit
635 	 * unusual. This is to allow rich reporting through @info on how
636 	 * ops.init() failed.
637 	 */
638 	void (*exit)(struct scx_exit_info *info);
639 
640 	/**
641 	 * dispatch_max_batch - Max nr of tasks that dispatch() can dispatch
642 	 */
643 	u32 dispatch_max_batch;
644 
645 	/**
646 	 * flags - %SCX_OPS_* flags
647 	 */
648 	u64 flags;
649 
650 	/**
651 	 * timeout_ms - The maximum amount of time, in milliseconds, that a
652 	 * runnable task should be able to wait before being scheduled. The
653 	 * maximum timeout may not exceed the default timeout of 30 seconds.
654 	 *
655 	 * Defaults to the maximum allowed timeout value of 30 seconds.
656 	 */
657 	u32 timeout_ms;
658 
659 	/**
660 	 * exit_dump_len - scx_exit_info.dump buffer length. If 0, the default
661 	 * value of 32768 is used.
662 	 */
663 	u32 exit_dump_len;
664 
665 	/**
666 	 * hotplug_seq - A sequence number that may be set by the scheduler to
667 	 * detect when a hotplug event has occurred during the loading process.
668 	 * If 0, no detection occurs. Otherwise, the scheduler will fail to
669 	 * load if the sequence number does not match @scx_hotplug_seq on the
670 	 * enable path.
671 	 */
672 	u64 hotplug_seq;
673 
674 	/**
675 	 * name - BPF scheduler's name
676 	 *
677 	 * Must be a non-zero valid BPF object name including only isalnum(),
678 	 * '_' and '.' chars. Shows up in kernel.sched_ext_ops sysctl while the
679 	 * BPF scheduler is enabled.
680 	 */
681 	char name[SCX_OPS_NAME_LEN];
682 };
683 
684 enum scx_opi {
685 	SCX_OPI_BEGIN			= 0,
686 	SCX_OPI_NORMAL_BEGIN		= 0,
687 	SCX_OPI_NORMAL_END		= SCX_OP_IDX(cpu_online),
688 	SCX_OPI_CPU_HOTPLUG_BEGIN	= SCX_OP_IDX(cpu_online),
689 	SCX_OPI_CPU_HOTPLUG_END		= SCX_OP_IDX(init),
690 	SCX_OPI_END			= SCX_OP_IDX(init),
691 };
692 
693 enum scx_wake_flags {
694 	/* expose select WF_* flags as enums */
695 	SCX_WAKE_FORK		= WF_FORK,
696 	SCX_WAKE_TTWU		= WF_TTWU,
697 	SCX_WAKE_SYNC		= WF_SYNC,
698 };
699 
700 enum scx_enq_flags {
701 	/* expose select ENQUEUE_* flags as enums */
702 	SCX_ENQ_WAKEUP		= ENQUEUE_WAKEUP,
703 	SCX_ENQ_HEAD		= ENQUEUE_HEAD,
704 	SCX_ENQ_CPU_SELECTED	= ENQUEUE_RQ_SELECTED,
705 
706 	/* high 32bits are SCX specific */
707 
708 	/*
709 	 * Set the following to trigger preemption when calling
710 	 * scx_bpf_dispatch() with a local dsq as the target. The slice of the
711 	 * current task is cleared to zero and the CPU is kicked into the
712 	 * scheduling path. Implies %SCX_ENQ_HEAD.
713 	 */
714 	SCX_ENQ_PREEMPT		= 1LLU << 32,
715 
716 	/*
717 	 * The task being enqueued was previously enqueued on the current CPU's
718 	 * %SCX_DSQ_LOCAL, but was removed from it in a call to the
719 	 * bpf_scx_reenqueue_local() kfunc. If bpf_scx_reenqueue_local() was
720 	 * invoked in a ->cpu_release() callback, and the task is again
721 	 * dispatched back to %SCX_LOCAL_DSQ by this current ->enqueue(), the
722 	 * task will not be scheduled on the CPU until at least the next invocation
723 	 * of the ->cpu_acquire() callback.
724 	 */
725 	SCX_ENQ_REENQ		= 1LLU << 40,
726 
727 	/*
728 	 * The task being enqueued is the only task available for the cpu. By
729 	 * default, ext core keeps executing such tasks but when
730 	 * %SCX_OPS_ENQ_LAST is specified, they're ops.enqueue()'d with the
731 	 * %SCX_ENQ_LAST flag set.
732 	 *
733 	 * The BPF scheduler is responsible for triggering a follow-up
734 	 * scheduling event. Otherwise, Execution may stall.
735 	 */
736 	SCX_ENQ_LAST		= 1LLU << 41,
737 
738 	/* high 8 bits are internal */
739 	__SCX_ENQ_INTERNAL_MASK	= 0xffLLU << 56,
740 
741 	SCX_ENQ_CLEAR_OPSS	= 1LLU << 56,
742 	SCX_ENQ_DSQ_PRIQ	= 1LLU << 57,
743 };
744 
745 enum scx_deq_flags {
746 	/* expose select DEQUEUE_* flags as enums */
747 	SCX_DEQ_SLEEP		= DEQUEUE_SLEEP,
748 
749 	/* high 32bits are SCX specific */
750 
751 	/*
752 	 * The generic core-sched layer decided to execute the task even though
753 	 * it hasn't been dispatched yet. Dequeue from the BPF side.
754 	 */
755 	SCX_DEQ_CORE_SCHED_EXEC	= 1LLU << 32,
756 };
757 
758 enum scx_pick_idle_cpu_flags {
759 	SCX_PICK_IDLE_CORE	= 1LLU << 0,	/* pick a CPU whose SMT siblings are also idle */
760 };
761 
762 enum scx_kick_flags {
763 	/*
764 	 * Kick the target CPU if idle. Guarantees that the target CPU goes
765 	 * through at least one full scheduling cycle before going idle. If the
766 	 * target CPU can be determined to be currently not idle and going to go
767 	 * through a scheduling cycle before going idle, noop.
768 	 */
769 	SCX_KICK_IDLE		= 1LLU << 0,
770 
771 	/*
772 	 * Preempt the current task and execute the dispatch path. If the
773 	 * current task of the target CPU is an SCX task, its ->scx.slice is
774 	 * cleared to zero before the scheduling path is invoked so that the
775 	 * task expires and the dispatch path is invoked.
776 	 */
777 	SCX_KICK_PREEMPT	= 1LLU << 1,
778 
779 	/*
780 	 * Wait for the CPU to be rescheduled. The scx_bpf_kick_cpu() call will
781 	 * return after the target CPU finishes picking the next task.
782 	 */
783 	SCX_KICK_WAIT		= 1LLU << 2,
784 };
785 
786 enum scx_tg_flags {
787 	SCX_TG_ONLINE		= 1U << 0,
788 	SCX_TG_INITED		= 1U << 1,
789 };
790 
791 enum scx_ops_enable_state {
792 	SCX_OPS_ENABLING,
793 	SCX_OPS_ENABLED,
794 	SCX_OPS_DISABLING,
795 	SCX_OPS_DISABLED,
796 };
797 
798 static const char *scx_ops_enable_state_str[] = {
799 	[SCX_OPS_ENABLING]	= "enabling",
800 	[SCX_OPS_ENABLED]	= "enabled",
801 	[SCX_OPS_DISABLING]	= "disabling",
802 	[SCX_OPS_DISABLED]	= "disabled",
803 };
804 
805 /*
806  * sched_ext_entity->ops_state
807  *
808  * Used to track the task ownership between the SCX core and the BPF scheduler.
809  * State transitions look as follows:
810  *
811  * NONE -> QUEUEING -> QUEUED -> DISPATCHING
812  *   ^              |                 |
813  *   |              v                 v
814  *   \-------------------------------/
815  *
816  * QUEUEING and DISPATCHING states can be waited upon. See wait_ops_state() call
817  * sites for explanations on the conditions being waited upon and why they are
818  * safe. Transitions out of them into NONE or QUEUED must store_release and the
819  * waiters should load_acquire.
820  *
821  * Tracking scx_ops_state enables sched_ext core to reliably determine whether
822  * any given task can be dispatched by the BPF scheduler at all times and thus
823  * relaxes the requirements on the BPF scheduler. This allows the BPF scheduler
824  * to try to dispatch any task anytime regardless of its state as the SCX core
825  * can safely reject invalid dispatches.
826  */
827 enum scx_ops_state {
828 	SCX_OPSS_NONE,		/* owned by the SCX core */
829 	SCX_OPSS_QUEUEING,	/* in transit to the BPF scheduler */
830 	SCX_OPSS_QUEUED,	/* owned by the BPF scheduler */
831 	SCX_OPSS_DISPATCHING,	/* in transit back to the SCX core */
832 
833 	/*
834 	 * QSEQ brands each QUEUED instance so that, when dispatch races
835 	 * dequeue/requeue, the dispatcher can tell whether it still has a claim
836 	 * on the task being dispatched.
837 	 *
838 	 * As some 32bit archs can't do 64bit store_release/load_acquire,
839 	 * p->scx.ops_state is atomic_long_t which leaves 30 bits for QSEQ on
840 	 * 32bit machines. The dispatch race window QSEQ protects is very narrow
841 	 * and runs with IRQ disabled. 30 bits should be sufficient.
842 	 */
843 	SCX_OPSS_QSEQ_SHIFT	= 2,
844 };
845 
846 /* Use macros to ensure that the type is unsigned long for the masks */
847 #define SCX_OPSS_STATE_MASK	((1LU << SCX_OPSS_QSEQ_SHIFT) - 1)
848 #define SCX_OPSS_QSEQ_MASK	(~SCX_OPSS_STATE_MASK)
849 
850 /*
851  * During exit, a task may schedule after losing its PIDs. When disabling the
852  * BPF scheduler, we need to be able to iterate tasks in every state to
853  * guarantee system safety. Maintain a dedicated task list which contains every
854  * task between its fork and eventual free.
855  */
856 static DEFINE_SPINLOCK(scx_tasks_lock);
857 static LIST_HEAD(scx_tasks);
858 
859 /* ops enable/disable */
860 static struct kthread_worker *scx_ops_helper;
861 static DEFINE_MUTEX(scx_ops_enable_mutex);
862 DEFINE_STATIC_KEY_FALSE(__scx_ops_enabled);
863 DEFINE_STATIC_PERCPU_RWSEM(scx_fork_rwsem);
864 static atomic_t scx_ops_enable_state_var = ATOMIC_INIT(SCX_OPS_DISABLED);
865 static int scx_ops_bypass_depth;
866 static DEFINE_RAW_SPINLOCK(__scx_ops_bypass_lock);
867 static bool scx_ops_init_task_enabled;
868 static bool scx_switching_all;
869 DEFINE_STATIC_KEY_FALSE(__scx_switched_all);
870 
871 static struct sched_ext_ops scx_ops;
872 static bool scx_warned_zero_slice;
873 
874 static DEFINE_STATIC_KEY_FALSE(scx_ops_enq_last);
875 static DEFINE_STATIC_KEY_FALSE(scx_ops_enq_exiting);
876 static DEFINE_STATIC_KEY_FALSE(scx_ops_cpu_preempt);
877 static DEFINE_STATIC_KEY_FALSE(scx_builtin_idle_enabled);
878 
879 static struct static_key_false scx_has_op[SCX_OPI_END] =
880 	{ [0 ... SCX_OPI_END-1] = STATIC_KEY_FALSE_INIT };
881 
882 static atomic_t scx_exit_kind = ATOMIC_INIT(SCX_EXIT_DONE);
883 static struct scx_exit_info *scx_exit_info;
884 
885 static atomic_long_t scx_nr_rejected = ATOMIC_LONG_INIT(0);
886 static atomic_long_t scx_hotplug_seq = ATOMIC_LONG_INIT(0);
887 
888 /*
889  * A monotically increasing sequence number that is incremented every time a
890  * scheduler is enabled. This can be used by to check if any custom sched_ext
891  * scheduler has ever been used in the system.
892  */
893 static atomic_long_t scx_enable_seq = ATOMIC_LONG_INIT(0);
894 
895 /*
896  * The maximum amount of time in jiffies that a task may be runnable without
897  * being scheduled on a CPU. If this timeout is exceeded, it will trigger
898  * scx_ops_error().
899  */
900 static unsigned long scx_watchdog_timeout;
901 
902 /*
903  * The last time the delayed work was run. This delayed work relies on
904  * ksoftirqd being able to run to service timer interrupts, so it's possible
905  * that this work itself could get wedged. To account for this, we check that
906  * it's not stalled in the timer tick, and trigger an error if it is.
907  */
908 static unsigned long scx_watchdog_timestamp = INITIAL_JIFFIES;
909 
910 static struct delayed_work scx_watchdog_work;
911 
912 /* idle tracking */
913 #ifdef CONFIG_SMP
914 #ifdef CONFIG_CPUMASK_OFFSTACK
915 #define CL_ALIGNED_IF_ONSTACK
916 #else
917 #define CL_ALIGNED_IF_ONSTACK __cacheline_aligned_in_smp
918 #endif
919 
920 static struct {
921 	cpumask_var_t cpu;
922 	cpumask_var_t smt;
923 } idle_masks CL_ALIGNED_IF_ONSTACK;
924 
925 #endif	/* CONFIG_SMP */
926 
927 /* for %SCX_KICK_WAIT */
928 static unsigned long __percpu *scx_kick_cpus_pnt_seqs;
929 
930 /*
931  * Direct dispatch marker.
932  *
933  * Non-NULL values are used for direct dispatch from enqueue path. A valid
934  * pointer points to the task currently being enqueued. An ERR_PTR value is used
935  * to indicate that direct dispatch has already happened.
936  */
937 static DEFINE_PER_CPU(struct task_struct *, direct_dispatch_task);
938 
939 /*
940  * Dispatch queues.
941  *
942  * The global DSQ (%SCX_DSQ_GLOBAL) is split per-node for scalability. This is
943  * to avoid live-locking in bypass mode where all tasks are dispatched to
944  * %SCX_DSQ_GLOBAL and all CPUs consume from it. If per-node split isn't
945  * sufficient, it can be further split.
946  */
947 static struct scx_dispatch_q **global_dsqs;
948 
949 static const struct rhashtable_params dsq_hash_params = {
950 	.key_len		= 8,
951 	.key_offset		= offsetof(struct scx_dispatch_q, id),
952 	.head_offset		= offsetof(struct scx_dispatch_q, hash_node),
953 };
954 
955 static struct rhashtable dsq_hash;
956 static LLIST_HEAD(dsqs_to_free);
957 
958 /* dispatch buf */
959 struct scx_dsp_buf_ent {
960 	struct task_struct	*task;
961 	unsigned long		qseq;
962 	u64			dsq_id;
963 	u64			enq_flags;
964 };
965 
966 static u32 scx_dsp_max_batch;
967 
968 struct scx_dsp_ctx {
969 	struct rq		*rq;
970 	u32			cursor;
971 	u32			nr_tasks;
972 	struct scx_dsp_buf_ent	buf[];
973 };
974 
975 static struct scx_dsp_ctx __percpu *scx_dsp_ctx;
976 
977 /* string formatting from BPF */
978 struct scx_bstr_buf {
979 	u64			data[MAX_BPRINTF_VARARGS];
980 	char			line[SCX_EXIT_MSG_LEN];
981 };
982 
983 static DEFINE_RAW_SPINLOCK(scx_exit_bstr_buf_lock);
984 static struct scx_bstr_buf scx_exit_bstr_buf;
985 
986 /* ops debug dump */
987 struct scx_dump_data {
988 	s32			cpu;
989 	bool			first;
990 	s32			cursor;
991 	struct seq_buf		*s;
992 	const char		*prefix;
993 	struct scx_bstr_buf	buf;
994 };
995 
996 static struct scx_dump_data scx_dump_data = {
997 	.cpu			= -1,
998 };
999 
1000 /* /sys/kernel/sched_ext interface */
1001 static struct kset *scx_kset;
1002 static struct kobject *scx_root_kobj;
1003 
1004 #define CREATE_TRACE_POINTS
1005 #include <trace/events/sched_ext.h>
1006 
1007 static void process_ddsp_deferred_locals(struct rq *rq);
1008 static void scx_bpf_kick_cpu(s32 cpu, u64 flags);
1009 static __printf(3, 4) void scx_ops_exit_kind(enum scx_exit_kind kind,
1010 					     s64 exit_code,
1011 					     const char *fmt, ...);
1012 
1013 #define scx_ops_error_kind(err, fmt, args...)					\
1014 	scx_ops_exit_kind((err), 0, fmt, ##args)
1015 
1016 #define scx_ops_exit(code, fmt, args...)					\
1017 	scx_ops_exit_kind(SCX_EXIT_UNREG_KERN, (code), fmt, ##args)
1018 
1019 #define scx_ops_error(fmt, args...)						\
1020 	scx_ops_error_kind(SCX_EXIT_ERROR, fmt, ##args)
1021 
1022 #define SCX_HAS_OP(op)	static_branch_likely(&scx_has_op[SCX_OP_IDX(op)])
1023 
1024 static long jiffies_delta_msecs(unsigned long at, unsigned long now)
1025 {
1026 	if (time_after(at, now))
1027 		return jiffies_to_msecs(at - now);
1028 	else
1029 		return -(long)jiffies_to_msecs(now - at);
1030 }
1031 
1032 /* if the highest set bit is N, return a mask with bits [N+1, 31] set */
1033 static u32 higher_bits(u32 flags)
1034 {
1035 	return ~((1 << fls(flags)) - 1);
1036 }
1037 
1038 /* return the mask with only the highest bit set */
1039 static u32 highest_bit(u32 flags)
1040 {
1041 	int bit = fls(flags);
1042 	return ((u64)1 << bit) >> 1;
1043 }
1044 
1045 static bool u32_before(u32 a, u32 b)
1046 {
1047 	return (s32)(a - b) < 0;
1048 }
1049 
1050 static struct scx_dispatch_q *find_global_dsq(struct task_struct *p)
1051 {
1052 	return global_dsqs[cpu_to_node(task_cpu(p))];
1053 }
1054 
1055 static struct scx_dispatch_q *find_user_dsq(u64 dsq_id)
1056 {
1057 	return rhashtable_lookup_fast(&dsq_hash, &dsq_id, dsq_hash_params);
1058 }
1059 
1060 /*
1061  * scx_kf_mask enforcement. Some kfuncs can only be called from specific SCX
1062  * ops. When invoking SCX ops, SCX_CALL_OP[_RET]() should be used to indicate
1063  * the allowed kfuncs and those kfuncs should use scx_kf_allowed() to check
1064  * whether it's running from an allowed context.
1065  *
1066  * @mask is constant, always inline to cull the mask calculations.
1067  */
1068 static __always_inline void scx_kf_allow(u32 mask)
1069 {
1070 	/* nesting is allowed only in increasing scx_kf_mask order */
1071 	WARN_ONCE((mask | higher_bits(mask)) & current->scx.kf_mask,
1072 		  "invalid nesting current->scx.kf_mask=0x%x mask=0x%x\n",
1073 		  current->scx.kf_mask, mask);
1074 	current->scx.kf_mask |= mask;
1075 	barrier();
1076 }
1077 
1078 static void scx_kf_disallow(u32 mask)
1079 {
1080 	barrier();
1081 	current->scx.kf_mask &= ~mask;
1082 }
1083 
1084 #define SCX_CALL_OP(mask, op, args...)						\
1085 do {										\
1086 	if (mask) {								\
1087 		scx_kf_allow(mask);						\
1088 		scx_ops.op(args);						\
1089 		scx_kf_disallow(mask);						\
1090 	} else {								\
1091 		scx_ops.op(args);						\
1092 	}									\
1093 } while (0)
1094 
1095 #define SCX_CALL_OP_RET(mask, op, args...)					\
1096 ({										\
1097 	__typeof__(scx_ops.op(args)) __ret;					\
1098 	if (mask) {								\
1099 		scx_kf_allow(mask);						\
1100 		__ret = scx_ops.op(args);					\
1101 		scx_kf_disallow(mask);						\
1102 	} else {								\
1103 		__ret = scx_ops.op(args);					\
1104 	}									\
1105 	__ret;									\
1106 })
1107 
1108 /*
1109  * Some kfuncs are allowed only on the tasks that are subjects of the
1110  * in-progress scx_ops operation for, e.g., locking guarantees. To enforce such
1111  * restrictions, the following SCX_CALL_OP_*() variants should be used when
1112  * invoking scx_ops operations that take task arguments. These can only be used
1113  * for non-nesting operations due to the way the tasks are tracked.
1114  *
1115  * kfuncs which can only operate on such tasks can in turn use
1116  * scx_kf_allowed_on_arg_tasks() to test whether the invocation is allowed on
1117  * the specific task.
1118  */
1119 #define SCX_CALL_OP_TASK(mask, op, task, args...)				\
1120 do {										\
1121 	BUILD_BUG_ON((mask) & ~__SCX_KF_TERMINAL);				\
1122 	current->scx.kf_tasks[0] = task;					\
1123 	SCX_CALL_OP(mask, op, task, ##args);					\
1124 	current->scx.kf_tasks[0] = NULL;					\
1125 } while (0)
1126 
1127 #define SCX_CALL_OP_TASK_RET(mask, op, task, args...)				\
1128 ({										\
1129 	__typeof__(scx_ops.op(task, ##args)) __ret;				\
1130 	BUILD_BUG_ON((mask) & ~__SCX_KF_TERMINAL);				\
1131 	current->scx.kf_tasks[0] = task;					\
1132 	__ret = SCX_CALL_OP_RET(mask, op, task, ##args);			\
1133 	current->scx.kf_tasks[0] = NULL;					\
1134 	__ret;									\
1135 })
1136 
1137 #define SCX_CALL_OP_2TASKS_RET(mask, op, task0, task1, args...)			\
1138 ({										\
1139 	__typeof__(scx_ops.op(task0, task1, ##args)) __ret;			\
1140 	BUILD_BUG_ON((mask) & ~__SCX_KF_TERMINAL);				\
1141 	current->scx.kf_tasks[0] = task0;					\
1142 	current->scx.kf_tasks[1] = task1;					\
1143 	__ret = SCX_CALL_OP_RET(mask, op, task0, task1, ##args);		\
1144 	current->scx.kf_tasks[0] = NULL;					\
1145 	current->scx.kf_tasks[1] = NULL;					\
1146 	__ret;									\
1147 })
1148 
1149 /* @mask is constant, always inline to cull unnecessary branches */
1150 static __always_inline bool scx_kf_allowed(u32 mask)
1151 {
1152 	if (unlikely(!(current->scx.kf_mask & mask))) {
1153 		scx_ops_error("kfunc with mask 0x%x called from an operation only allowing 0x%x",
1154 			      mask, current->scx.kf_mask);
1155 		return false;
1156 	}
1157 
1158 	/*
1159 	 * Enforce nesting boundaries. e.g. A kfunc which can be called from
1160 	 * DISPATCH must not be called if we're running DEQUEUE which is nested
1161 	 * inside ops.dispatch(). We don't need to check boundaries for any
1162 	 * blocking kfuncs as the verifier ensures they're only called from
1163 	 * sleepable progs.
1164 	 */
1165 	if (unlikely(highest_bit(mask) == SCX_KF_CPU_RELEASE &&
1166 		     (current->scx.kf_mask & higher_bits(SCX_KF_CPU_RELEASE)))) {
1167 		scx_ops_error("cpu_release kfunc called from a nested operation");
1168 		return false;
1169 	}
1170 
1171 	if (unlikely(highest_bit(mask) == SCX_KF_DISPATCH &&
1172 		     (current->scx.kf_mask & higher_bits(SCX_KF_DISPATCH)))) {
1173 		scx_ops_error("dispatch kfunc called from a nested operation");
1174 		return false;
1175 	}
1176 
1177 	return true;
1178 }
1179 
1180 /* see SCX_CALL_OP_TASK() */
1181 static __always_inline bool scx_kf_allowed_on_arg_tasks(u32 mask,
1182 							struct task_struct *p)
1183 {
1184 	if (!scx_kf_allowed(mask))
1185 		return false;
1186 
1187 	if (unlikely((p != current->scx.kf_tasks[0] &&
1188 		      p != current->scx.kf_tasks[1]))) {
1189 		scx_ops_error("called on a task not being operated on");
1190 		return false;
1191 	}
1192 
1193 	return true;
1194 }
1195 
1196 static bool scx_kf_allowed_if_unlocked(void)
1197 {
1198 	return !current->scx.kf_mask;
1199 }
1200 
1201 /**
1202  * nldsq_next_task - Iterate to the next task in a non-local DSQ
1203  * @dsq: user dsq being interated
1204  * @cur: current position, %NULL to start iteration
1205  * @rev: walk backwards
1206  *
1207  * Returns %NULL when iteration is finished.
1208  */
1209 static struct task_struct *nldsq_next_task(struct scx_dispatch_q *dsq,
1210 					   struct task_struct *cur, bool rev)
1211 {
1212 	struct list_head *list_node;
1213 	struct scx_dsq_list_node *dsq_lnode;
1214 
1215 	lockdep_assert_held(&dsq->lock);
1216 
1217 	if (cur)
1218 		list_node = &cur->scx.dsq_list.node;
1219 	else
1220 		list_node = &dsq->list;
1221 
1222 	/* find the next task, need to skip BPF iteration cursors */
1223 	do {
1224 		if (rev)
1225 			list_node = list_node->prev;
1226 		else
1227 			list_node = list_node->next;
1228 
1229 		if (list_node == &dsq->list)
1230 			return NULL;
1231 
1232 		dsq_lnode = container_of(list_node, struct scx_dsq_list_node,
1233 					 node);
1234 	} while (dsq_lnode->flags & SCX_DSQ_LNODE_ITER_CURSOR);
1235 
1236 	return container_of(dsq_lnode, struct task_struct, scx.dsq_list);
1237 }
1238 
1239 #define nldsq_for_each_task(p, dsq)						\
1240 	for ((p) = nldsq_next_task((dsq), NULL, false); (p);			\
1241 	     (p) = nldsq_next_task((dsq), (p), false))
1242 
1243 
1244 /*
1245  * BPF DSQ iterator. Tasks in a non-local DSQ can be iterated in [reverse]
1246  * dispatch order. BPF-visible iterator is opaque and larger to allow future
1247  * changes without breaking backward compatibility. Can be used with
1248  * bpf_for_each(). See bpf_iter_scx_dsq_*().
1249  */
1250 enum scx_dsq_iter_flags {
1251 	/* iterate in the reverse dispatch order */
1252 	SCX_DSQ_ITER_REV		= 1U << 16,
1253 
1254 	__SCX_DSQ_ITER_HAS_SLICE	= 1U << 30,
1255 	__SCX_DSQ_ITER_HAS_VTIME	= 1U << 31,
1256 
1257 	__SCX_DSQ_ITER_USER_FLAGS	= SCX_DSQ_ITER_REV,
1258 	__SCX_DSQ_ITER_ALL_FLAGS	= __SCX_DSQ_ITER_USER_FLAGS |
1259 					  __SCX_DSQ_ITER_HAS_SLICE |
1260 					  __SCX_DSQ_ITER_HAS_VTIME,
1261 };
1262 
1263 struct bpf_iter_scx_dsq_kern {
1264 	struct scx_dsq_list_node	cursor;
1265 	struct scx_dispatch_q		*dsq;
1266 	u64				slice;
1267 	u64				vtime;
1268 } __attribute__((aligned(8)));
1269 
1270 struct bpf_iter_scx_dsq {
1271 	u64				__opaque[6];
1272 } __attribute__((aligned(8)));
1273 
1274 
1275 /*
1276  * SCX task iterator.
1277  */
1278 struct scx_task_iter {
1279 	struct sched_ext_entity		cursor;
1280 	struct task_struct		*locked;
1281 	struct rq			*rq;
1282 	struct rq_flags			rf;
1283 	u32				cnt;
1284 };
1285 
1286 /**
1287  * scx_task_iter_start - Lock scx_tasks_lock and start a task iteration
1288  * @iter: iterator to init
1289  *
1290  * Initialize @iter and return with scx_tasks_lock held. Once initialized, @iter
1291  * must eventually be stopped with scx_task_iter_stop().
1292  *
1293  * scx_tasks_lock and the rq lock may be released using scx_task_iter_unlock()
1294  * between this and the first next() call or between any two next() calls. If
1295  * the locks are released between two next() calls, the caller is responsible
1296  * for ensuring that the task being iterated remains accessible either through
1297  * RCU read lock or obtaining a reference count.
1298  *
1299  * All tasks which existed when the iteration started are guaranteed to be
1300  * visited as long as they still exist.
1301  */
1302 static void scx_task_iter_start(struct scx_task_iter *iter)
1303 {
1304 	BUILD_BUG_ON(__SCX_DSQ_ITER_ALL_FLAGS &
1305 		     ((1U << __SCX_DSQ_LNODE_PRIV_SHIFT) - 1));
1306 
1307 	spin_lock_irq(&scx_tasks_lock);
1308 
1309 	iter->cursor = (struct sched_ext_entity){ .flags = SCX_TASK_CURSOR };
1310 	list_add(&iter->cursor.tasks_node, &scx_tasks);
1311 	iter->locked = NULL;
1312 	iter->cnt = 0;
1313 }
1314 
1315 static void __scx_task_iter_rq_unlock(struct scx_task_iter *iter)
1316 {
1317 	if (iter->locked) {
1318 		task_rq_unlock(iter->rq, iter->locked, &iter->rf);
1319 		iter->locked = NULL;
1320 	}
1321 }
1322 
1323 /**
1324  * scx_task_iter_unlock - Unlock rq and scx_tasks_lock held by a task iterator
1325  * @iter: iterator to unlock
1326  *
1327  * If @iter is in the middle of a locked iteration, it may be locking the rq of
1328  * the task currently being visited in addition to scx_tasks_lock. Unlock both.
1329  * This function can be safely called anytime during an iteration.
1330  */
1331 static void scx_task_iter_unlock(struct scx_task_iter *iter)
1332 {
1333 	__scx_task_iter_rq_unlock(iter);
1334 	spin_unlock_irq(&scx_tasks_lock);
1335 }
1336 
1337 /**
1338  * scx_task_iter_relock - Lock scx_tasks_lock released by scx_task_iter_unlock()
1339  * @iter: iterator to re-lock
1340  *
1341  * Re-lock scx_tasks_lock unlocked by scx_task_iter_unlock(). Note that it
1342  * doesn't re-lock the rq lock. Must be called before other iterator operations.
1343  */
1344 static void scx_task_iter_relock(struct scx_task_iter *iter)
1345 {
1346 	spin_lock_irq(&scx_tasks_lock);
1347 }
1348 
1349 /**
1350  * scx_task_iter_stop - Stop a task iteration and unlock scx_tasks_lock
1351  * @iter: iterator to exit
1352  *
1353  * Exit a previously initialized @iter. Must be called with scx_tasks_lock held
1354  * which is released on return. If the iterator holds a task's rq lock, that rq
1355  * lock is also released. See scx_task_iter_start() for details.
1356  */
1357 static void scx_task_iter_stop(struct scx_task_iter *iter)
1358 {
1359 	list_del_init(&iter->cursor.tasks_node);
1360 	scx_task_iter_unlock(iter);
1361 }
1362 
1363 /**
1364  * scx_task_iter_next - Next task
1365  * @iter: iterator to walk
1366  *
1367  * Visit the next task. See scx_task_iter_start() for details. Locks are dropped
1368  * and re-acquired every %SCX_OPS_TASK_ITER_BATCH iterations to avoid causing
1369  * stalls by holding scx_tasks_lock for too long.
1370  */
1371 static struct task_struct *scx_task_iter_next(struct scx_task_iter *iter)
1372 {
1373 	struct list_head *cursor = &iter->cursor.tasks_node;
1374 	struct sched_ext_entity *pos;
1375 
1376 	if (!(++iter->cnt % SCX_OPS_TASK_ITER_BATCH)) {
1377 		scx_task_iter_unlock(iter);
1378 		cond_resched();
1379 		scx_task_iter_relock(iter);
1380 	}
1381 
1382 	list_for_each_entry(pos, cursor, tasks_node) {
1383 		if (&pos->tasks_node == &scx_tasks)
1384 			return NULL;
1385 		if (!(pos->flags & SCX_TASK_CURSOR)) {
1386 			list_move(cursor, &pos->tasks_node);
1387 			return container_of(pos, struct task_struct, scx);
1388 		}
1389 	}
1390 
1391 	/* can't happen, should always terminate at scx_tasks above */
1392 	BUG();
1393 }
1394 
1395 /**
1396  * scx_task_iter_next_locked - Next non-idle task with its rq locked
1397  * @iter: iterator to walk
1398  * @include_dead: Whether we should include dead tasks in the iteration
1399  *
1400  * Visit the non-idle task with its rq lock held. Allows callers to specify
1401  * whether they would like to filter out dead tasks. See scx_task_iter_start()
1402  * for details.
1403  */
1404 static struct task_struct *scx_task_iter_next_locked(struct scx_task_iter *iter)
1405 {
1406 	struct task_struct *p;
1407 
1408 	__scx_task_iter_rq_unlock(iter);
1409 
1410 	while ((p = scx_task_iter_next(iter))) {
1411 		/*
1412 		 * scx_task_iter is used to prepare and move tasks into SCX
1413 		 * while loading the BPF scheduler and vice-versa while
1414 		 * unloading. The init_tasks ("swappers") should be excluded
1415 		 * from the iteration because:
1416 		 *
1417 		 * - It's unsafe to use __setschduler_prio() on an init_task to
1418 		 *   determine the sched_class to use as it won't preserve its
1419 		 *   idle_sched_class.
1420 		 *
1421 		 * - ops.init/exit_task() can easily be confused if called with
1422 		 *   init_tasks as they, e.g., share PID 0.
1423 		 *
1424 		 * As init_tasks are never scheduled through SCX, they can be
1425 		 * skipped safely. Note that is_idle_task() which tests %PF_IDLE
1426 		 * doesn't work here:
1427 		 *
1428 		 * - %PF_IDLE may not be set for an init_task whose CPU hasn't
1429 		 *   yet been onlined.
1430 		 *
1431 		 * - %PF_IDLE can be set on tasks that are not init_tasks. See
1432 		 *   play_idle_precise() used by CONFIG_IDLE_INJECT.
1433 		 *
1434 		 * Test for idle_sched_class as only init_tasks are on it.
1435 		 */
1436 		if (p->sched_class != &idle_sched_class)
1437 			break;
1438 	}
1439 	if (!p)
1440 		return NULL;
1441 
1442 	iter->rq = task_rq_lock(p, &iter->rf);
1443 	iter->locked = p;
1444 
1445 	return p;
1446 }
1447 
1448 static enum scx_ops_enable_state scx_ops_enable_state(void)
1449 {
1450 	return atomic_read(&scx_ops_enable_state_var);
1451 }
1452 
1453 static enum scx_ops_enable_state
1454 scx_ops_set_enable_state(enum scx_ops_enable_state to)
1455 {
1456 	return atomic_xchg(&scx_ops_enable_state_var, to);
1457 }
1458 
1459 static bool scx_ops_tryset_enable_state(enum scx_ops_enable_state to,
1460 					enum scx_ops_enable_state from)
1461 {
1462 	int from_v = from;
1463 
1464 	return atomic_try_cmpxchg(&scx_ops_enable_state_var, &from_v, to);
1465 }
1466 
1467 static bool scx_rq_bypassing(struct rq *rq)
1468 {
1469 	return unlikely(rq->scx.flags & SCX_RQ_BYPASSING);
1470 }
1471 
1472 /**
1473  * wait_ops_state - Busy-wait the specified ops state to end
1474  * @p: target task
1475  * @opss: state to wait the end of
1476  *
1477  * Busy-wait for @p to transition out of @opss. This can only be used when the
1478  * state part of @opss is %SCX_QUEUEING or %SCX_DISPATCHING. This function also
1479  * has load_acquire semantics to ensure that the caller can see the updates made
1480  * in the enqueueing and dispatching paths.
1481  */
1482 static void wait_ops_state(struct task_struct *p, unsigned long opss)
1483 {
1484 	do {
1485 		cpu_relax();
1486 	} while (atomic_long_read_acquire(&p->scx.ops_state) == opss);
1487 }
1488 
1489 /**
1490  * ops_cpu_valid - Verify a cpu number
1491  * @cpu: cpu number which came from a BPF ops
1492  * @where: extra information reported on error
1493  *
1494  * @cpu is a cpu number which came from the BPF scheduler and can be any value.
1495  * Verify that it is in range and one of the possible cpus. If invalid, trigger
1496  * an ops error.
1497  */
1498 static bool ops_cpu_valid(s32 cpu, const char *where)
1499 {
1500 	if (likely(cpu >= 0 && cpu < nr_cpu_ids && cpu_possible(cpu))) {
1501 		return true;
1502 	} else {
1503 		scx_ops_error("invalid CPU %d%s%s", cpu,
1504 			      where ? " " : "", where ?: "");
1505 		return false;
1506 	}
1507 }
1508 
1509 /**
1510  * ops_sanitize_err - Sanitize a -errno value
1511  * @ops_name: operation to blame on failure
1512  * @err: -errno value to sanitize
1513  *
1514  * Verify @err is a valid -errno. If not, trigger scx_ops_error() and return
1515  * -%EPROTO. This is necessary because returning a rogue -errno up the chain can
1516  * cause misbehaviors. For an example, a large negative return from
1517  * ops.init_task() triggers an oops when passed up the call chain because the
1518  * value fails IS_ERR() test after being encoded with ERR_PTR() and then is
1519  * handled as a pointer.
1520  */
1521 static int ops_sanitize_err(const char *ops_name, s32 err)
1522 {
1523 	if (err < 0 && err >= -MAX_ERRNO)
1524 		return err;
1525 
1526 	scx_ops_error("ops.%s() returned an invalid errno %d", ops_name, err);
1527 	return -EPROTO;
1528 }
1529 
1530 static void run_deferred(struct rq *rq)
1531 {
1532 	process_ddsp_deferred_locals(rq);
1533 }
1534 
1535 #ifdef CONFIG_SMP
1536 static void deferred_bal_cb_workfn(struct rq *rq)
1537 {
1538 	run_deferred(rq);
1539 }
1540 #endif
1541 
1542 static void deferred_irq_workfn(struct irq_work *irq_work)
1543 {
1544 	struct rq *rq = container_of(irq_work, struct rq, scx.deferred_irq_work);
1545 
1546 	raw_spin_rq_lock(rq);
1547 	run_deferred(rq);
1548 	raw_spin_rq_unlock(rq);
1549 }
1550 
1551 /**
1552  * schedule_deferred - Schedule execution of deferred actions on an rq
1553  * @rq: target rq
1554  *
1555  * Schedule execution of deferred actions on @rq. Must be called with @rq
1556  * locked. Deferred actions are executed with @rq locked but unpinned, and thus
1557  * can unlock @rq to e.g. migrate tasks to other rqs.
1558  */
1559 static void schedule_deferred(struct rq *rq)
1560 {
1561 	lockdep_assert_rq_held(rq);
1562 
1563 #ifdef CONFIG_SMP
1564 	/*
1565 	 * If in the middle of waking up a task, task_woken_scx() will be called
1566 	 * afterwards which will then run the deferred actions, no need to
1567 	 * schedule anything.
1568 	 */
1569 	if (rq->scx.flags & SCX_RQ_IN_WAKEUP)
1570 		return;
1571 
1572 	/*
1573 	 * If in balance, the balance callbacks will be called before rq lock is
1574 	 * released. Schedule one.
1575 	 */
1576 	if (rq->scx.flags & SCX_RQ_IN_BALANCE) {
1577 		queue_balance_callback(rq, &rq->scx.deferred_bal_cb,
1578 				       deferred_bal_cb_workfn);
1579 		return;
1580 	}
1581 #endif
1582 	/*
1583 	 * No scheduler hooks available. Queue an irq work. They are executed on
1584 	 * IRQ re-enable which may take a bit longer than the scheduler hooks.
1585 	 * The above WAKEUP and BALANCE paths should cover most of the cases and
1586 	 * the time to IRQ re-enable shouldn't be long.
1587 	 */
1588 	irq_work_queue(&rq->scx.deferred_irq_work);
1589 }
1590 
1591 /**
1592  * touch_core_sched - Update timestamp used for core-sched task ordering
1593  * @rq: rq to read clock from, must be locked
1594  * @p: task to update the timestamp for
1595  *
1596  * Update @p->scx.core_sched_at timestamp. This is used by scx_prio_less() to
1597  * implement global or local-DSQ FIFO ordering for core-sched. Should be called
1598  * when a task becomes runnable and its turn on the CPU ends (e.g. slice
1599  * exhaustion).
1600  */
1601 static void touch_core_sched(struct rq *rq, struct task_struct *p)
1602 {
1603 	lockdep_assert_rq_held(rq);
1604 
1605 #ifdef CONFIG_SCHED_CORE
1606 	/*
1607 	 * It's okay to update the timestamp spuriously. Use
1608 	 * sched_core_disabled() which is cheaper than enabled().
1609 	 *
1610 	 * As this is used to determine ordering between tasks of sibling CPUs,
1611 	 * it may be better to use per-core dispatch sequence instead.
1612 	 */
1613 	if (!sched_core_disabled())
1614 		p->scx.core_sched_at = sched_clock_cpu(cpu_of(rq));
1615 #endif
1616 }
1617 
1618 /**
1619  * touch_core_sched_dispatch - Update core-sched timestamp on dispatch
1620  * @rq: rq to read clock from, must be locked
1621  * @p: task being dispatched
1622  *
1623  * If the BPF scheduler implements custom core-sched ordering via
1624  * ops.core_sched_before(), @p->scx.core_sched_at is used to implement FIFO
1625  * ordering within each local DSQ. This function is called from dispatch paths
1626  * and updates @p->scx.core_sched_at if custom core-sched ordering is in effect.
1627  */
1628 static void touch_core_sched_dispatch(struct rq *rq, struct task_struct *p)
1629 {
1630 	lockdep_assert_rq_held(rq);
1631 
1632 #ifdef CONFIG_SCHED_CORE
1633 	if (SCX_HAS_OP(core_sched_before))
1634 		touch_core_sched(rq, p);
1635 #endif
1636 }
1637 
1638 static void update_curr_scx(struct rq *rq)
1639 {
1640 	struct task_struct *curr = rq->curr;
1641 	s64 delta_exec;
1642 
1643 	delta_exec = update_curr_common(rq);
1644 	if (unlikely(delta_exec <= 0))
1645 		return;
1646 
1647 	if (curr->scx.slice != SCX_SLICE_INF) {
1648 		curr->scx.slice -= min_t(u64, curr->scx.slice, delta_exec);
1649 		if (!curr->scx.slice)
1650 			touch_core_sched(rq, curr);
1651 	}
1652 }
1653 
1654 static bool scx_dsq_priq_less(struct rb_node *node_a,
1655 			      const struct rb_node *node_b)
1656 {
1657 	const struct task_struct *a =
1658 		container_of(node_a, struct task_struct, scx.dsq_priq);
1659 	const struct task_struct *b =
1660 		container_of(node_b, struct task_struct, scx.dsq_priq);
1661 
1662 	return time_before64(a->scx.dsq_vtime, b->scx.dsq_vtime);
1663 }
1664 
1665 static void dsq_mod_nr(struct scx_dispatch_q *dsq, s32 delta)
1666 {
1667 	/* scx_bpf_dsq_nr_queued() reads ->nr without locking, use WRITE_ONCE() */
1668 	WRITE_ONCE(dsq->nr, dsq->nr + delta);
1669 }
1670 
1671 static void dispatch_enqueue(struct scx_dispatch_q *dsq, struct task_struct *p,
1672 			     u64 enq_flags)
1673 {
1674 	bool is_local = dsq->id == SCX_DSQ_LOCAL;
1675 
1676 	WARN_ON_ONCE(p->scx.dsq || !list_empty(&p->scx.dsq_list.node));
1677 	WARN_ON_ONCE((p->scx.dsq_flags & SCX_TASK_DSQ_ON_PRIQ) ||
1678 		     !RB_EMPTY_NODE(&p->scx.dsq_priq));
1679 
1680 	if (!is_local) {
1681 		raw_spin_lock(&dsq->lock);
1682 		if (unlikely(dsq->id == SCX_DSQ_INVALID)) {
1683 			scx_ops_error("attempting to dispatch to a destroyed dsq");
1684 			/* fall back to the global dsq */
1685 			raw_spin_unlock(&dsq->lock);
1686 			dsq = find_global_dsq(p);
1687 			raw_spin_lock(&dsq->lock);
1688 		}
1689 	}
1690 
1691 	if (unlikely((dsq->id & SCX_DSQ_FLAG_BUILTIN) &&
1692 		     (enq_flags & SCX_ENQ_DSQ_PRIQ))) {
1693 		/*
1694 		 * SCX_DSQ_LOCAL and SCX_DSQ_GLOBAL DSQs always consume from
1695 		 * their FIFO queues. To avoid confusion and accidentally
1696 		 * starving vtime-dispatched tasks by FIFO-dispatched tasks, we
1697 		 * disallow any internal DSQ from doing vtime ordering of
1698 		 * tasks.
1699 		 */
1700 		scx_ops_error("cannot use vtime ordering for built-in DSQs");
1701 		enq_flags &= ~SCX_ENQ_DSQ_PRIQ;
1702 	}
1703 
1704 	if (enq_flags & SCX_ENQ_DSQ_PRIQ) {
1705 		struct rb_node *rbp;
1706 
1707 		/*
1708 		 * A PRIQ DSQ shouldn't be using FIFO enqueueing. As tasks are
1709 		 * linked to both the rbtree and list on PRIQs, this can only be
1710 		 * tested easily when adding the first task.
1711 		 */
1712 		if (unlikely(RB_EMPTY_ROOT(&dsq->priq) &&
1713 			     nldsq_next_task(dsq, NULL, false)))
1714 			scx_ops_error("DSQ ID 0x%016llx already had FIFO-enqueued tasks",
1715 				      dsq->id);
1716 
1717 		p->scx.dsq_flags |= SCX_TASK_DSQ_ON_PRIQ;
1718 		rb_add(&p->scx.dsq_priq, &dsq->priq, scx_dsq_priq_less);
1719 
1720 		/*
1721 		 * Find the previous task and insert after it on the list so
1722 		 * that @dsq->list is vtime ordered.
1723 		 */
1724 		rbp = rb_prev(&p->scx.dsq_priq);
1725 		if (rbp) {
1726 			struct task_struct *prev =
1727 				container_of(rbp, struct task_struct,
1728 					     scx.dsq_priq);
1729 			list_add(&p->scx.dsq_list.node, &prev->scx.dsq_list.node);
1730 		} else {
1731 			list_add(&p->scx.dsq_list.node, &dsq->list);
1732 		}
1733 	} else {
1734 		/* a FIFO DSQ shouldn't be using PRIQ enqueuing */
1735 		if (unlikely(!RB_EMPTY_ROOT(&dsq->priq)))
1736 			scx_ops_error("DSQ ID 0x%016llx already had PRIQ-enqueued tasks",
1737 				      dsq->id);
1738 
1739 		if (enq_flags & (SCX_ENQ_HEAD | SCX_ENQ_PREEMPT))
1740 			list_add(&p->scx.dsq_list.node, &dsq->list);
1741 		else
1742 			list_add_tail(&p->scx.dsq_list.node, &dsq->list);
1743 	}
1744 
1745 	/* seq records the order tasks are queued, used by BPF DSQ iterator */
1746 	dsq->seq++;
1747 	p->scx.dsq_seq = dsq->seq;
1748 
1749 	dsq_mod_nr(dsq, 1);
1750 	p->scx.dsq = dsq;
1751 
1752 	/*
1753 	 * scx.ddsp_dsq_id and scx.ddsp_enq_flags are only relevant on the
1754 	 * direct dispatch path, but we clear them here because the direct
1755 	 * dispatch verdict may be overridden on the enqueue path during e.g.
1756 	 * bypass.
1757 	 */
1758 	p->scx.ddsp_dsq_id = SCX_DSQ_INVALID;
1759 	p->scx.ddsp_enq_flags = 0;
1760 
1761 	/*
1762 	 * We're transitioning out of QUEUEING or DISPATCHING. store_release to
1763 	 * match waiters' load_acquire.
1764 	 */
1765 	if (enq_flags & SCX_ENQ_CLEAR_OPSS)
1766 		atomic_long_set_release(&p->scx.ops_state, SCX_OPSS_NONE);
1767 
1768 	if (is_local) {
1769 		struct rq *rq = container_of(dsq, struct rq, scx.local_dsq);
1770 		bool preempt = false;
1771 
1772 		if ((enq_flags & SCX_ENQ_PREEMPT) && p != rq->curr &&
1773 		    rq->curr->sched_class == &ext_sched_class) {
1774 			rq->curr->scx.slice = 0;
1775 			preempt = true;
1776 		}
1777 
1778 		if (preempt || sched_class_above(&ext_sched_class,
1779 						 rq->curr->sched_class))
1780 			resched_curr(rq);
1781 	} else {
1782 		raw_spin_unlock(&dsq->lock);
1783 	}
1784 }
1785 
1786 static void task_unlink_from_dsq(struct task_struct *p,
1787 				 struct scx_dispatch_q *dsq)
1788 {
1789 	WARN_ON_ONCE(list_empty(&p->scx.dsq_list.node));
1790 
1791 	if (p->scx.dsq_flags & SCX_TASK_DSQ_ON_PRIQ) {
1792 		rb_erase(&p->scx.dsq_priq, &dsq->priq);
1793 		RB_CLEAR_NODE(&p->scx.dsq_priq);
1794 		p->scx.dsq_flags &= ~SCX_TASK_DSQ_ON_PRIQ;
1795 	}
1796 
1797 	list_del_init(&p->scx.dsq_list.node);
1798 	dsq_mod_nr(dsq, -1);
1799 }
1800 
1801 static void dispatch_dequeue(struct rq *rq, struct task_struct *p)
1802 {
1803 	struct scx_dispatch_q *dsq = p->scx.dsq;
1804 	bool is_local = dsq == &rq->scx.local_dsq;
1805 
1806 	if (!dsq) {
1807 		/*
1808 		 * If !dsq && on-list, @p is on @rq's ddsp_deferred_locals.
1809 		 * Unlinking is all that's needed to cancel.
1810 		 */
1811 		if (unlikely(!list_empty(&p->scx.dsq_list.node)))
1812 			list_del_init(&p->scx.dsq_list.node);
1813 
1814 		/*
1815 		 * When dispatching directly from the BPF scheduler to a local
1816 		 * DSQ, the task isn't associated with any DSQ but
1817 		 * @p->scx.holding_cpu may be set under the protection of
1818 		 * %SCX_OPSS_DISPATCHING.
1819 		 */
1820 		if (p->scx.holding_cpu >= 0)
1821 			p->scx.holding_cpu = -1;
1822 
1823 		return;
1824 	}
1825 
1826 	if (!is_local)
1827 		raw_spin_lock(&dsq->lock);
1828 
1829 	/*
1830 	 * Now that we hold @dsq->lock, @p->holding_cpu and @p->scx.dsq_* can't
1831 	 * change underneath us.
1832 	*/
1833 	if (p->scx.holding_cpu < 0) {
1834 		/* @p must still be on @dsq, dequeue */
1835 		task_unlink_from_dsq(p, dsq);
1836 	} else {
1837 		/*
1838 		 * We're racing against dispatch_to_local_dsq() which already
1839 		 * removed @p from @dsq and set @p->scx.holding_cpu. Clear the
1840 		 * holding_cpu which tells dispatch_to_local_dsq() that it lost
1841 		 * the race.
1842 		 */
1843 		WARN_ON_ONCE(!list_empty(&p->scx.dsq_list.node));
1844 		p->scx.holding_cpu = -1;
1845 	}
1846 	p->scx.dsq = NULL;
1847 
1848 	if (!is_local)
1849 		raw_spin_unlock(&dsq->lock);
1850 }
1851 
1852 static struct scx_dispatch_q *find_dsq_for_dispatch(struct rq *rq, u64 dsq_id,
1853 						    struct task_struct *p)
1854 {
1855 	struct scx_dispatch_q *dsq;
1856 
1857 	if (dsq_id == SCX_DSQ_LOCAL)
1858 		return &rq->scx.local_dsq;
1859 
1860 	if ((dsq_id & SCX_DSQ_LOCAL_ON) == SCX_DSQ_LOCAL_ON) {
1861 		s32 cpu = dsq_id & SCX_DSQ_LOCAL_CPU_MASK;
1862 
1863 		if (!ops_cpu_valid(cpu, "in SCX_DSQ_LOCAL_ON dispatch verdict"))
1864 			return find_global_dsq(p);
1865 
1866 		return &cpu_rq(cpu)->scx.local_dsq;
1867 	}
1868 
1869 	if (dsq_id == SCX_DSQ_GLOBAL)
1870 		dsq = find_global_dsq(p);
1871 	else
1872 		dsq = find_user_dsq(dsq_id);
1873 
1874 	if (unlikely(!dsq)) {
1875 		scx_ops_error("non-existent DSQ 0x%llx for %s[%d]",
1876 			      dsq_id, p->comm, p->pid);
1877 		return find_global_dsq(p);
1878 	}
1879 
1880 	return dsq;
1881 }
1882 
1883 static void mark_direct_dispatch(struct task_struct *ddsp_task,
1884 				 struct task_struct *p, u64 dsq_id,
1885 				 u64 enq_flags)
1886 {
1887 	/*
1888 	 * Mark that dispatch already happened from ops.select_cpu() or
1889 	 * ops.enqueue() by spoiling direct_dispatch_task with a non-NULL value
1890 	 * which can never match a valid task pointer.
1891 	 */
1892 	__this_cpu_write(direct_dispatch_task, ERR_PTR(-ESRCH));
1893 
1894 	/* @p must match the task on the enqueue path */
1895 	if (unlikely(p != ddsp_task)) {
1896 		if (IS_ERR(ddsp_task))
1897 			scx_ops_error("%s[%d] already direct-dispatched",
1898 				      p->comm, p->pid);
1899 		else
1900 			scx_ops_error("scheduling for %s[%d] but trying to direct-dispatch %s[%d]",
1901 				      ddsp_task->comm, ddsp_task->pid,
1902 				      p->comm, p->pid);
1903 		return;
1904 	}
1905 
1906 	WARN_ON_ONCE(p->scx.ddsp_dsq_id != SCX_DSQ_INVALID);
1907 	WARN_ON_ONCE(p->scx.ddsp_enq_flags);
1908 
1909 	p->scx.ddsp_dsq_id = dsq_id;
1910 	p->scx.ddsp_enq_flags = enq_flags;
1911 }
1912 
1913 static void direct_dispatch(struct task_struct *p, u64 enq_flags)
1914 {
1915 	struct rq *rq = task_rq(p);
1916 	struct scx_dispatch_q *dsq =
1917 		find_dsq_for_dispatch(rq, p->scx.ddsp_dsq_id, p);
1918 
1919 	touch_core_sched_dispatch(rq, p);
1920 
1921 	p->scx.ddsp_enq_flags |= enq_flags;
1922 
1923 	/*
1924 	 * We are in the enqueue path with @rq locked and pinned, and thus can't
1925 	 * double lock a remote rq and enqueue to its local DSQ. For
1926 	 * DSQ_LOCAL_ON verdicts targeting the local DSQ of a remote CPU, defer
1927 	 * the enqueue so that it's executed when @rq can be unlocked.
1928 	 */
1929 	if (dsq->id == SCX_DSQ_LOCAL && dsq != &rq->scx.local_dsq) {
1930 		unsigned long opss;
1931 
1932 		opss = atomic_long_read(&p->scx.ops_state) & SCX_OPSS_STATE_MASK;
1933 
1934 		switch (opss & SCX_OPSS_STATE_MASK) {
1935 		case SCX_OPSS_NONE:
1936 			break;
1937 		case SCX_OPSS_QUEUEING:
1938 			/*
1939 			 * As @p was never passed to the BPF side, _release is
1940 			 * not strictly necessary. Still do it for consistency.
1941 			 */
1942 			atomic_long_set_release(&p->scx.ops_state, SCX_OPSS_NONE);
1943 			break;
1944 		default:
1945 			WARN_ONCE(true, "sched_ext: %s[%d] has invalid ops state 0x%lx in direct_dispatch()",
1946 				  p->comm, p->pid, opss);
1947 			atomic_long_set_release(&p->scx.ops_state, SCX_OPSS_NONE);
1948 			break;
1949 		}
1950 
1951 		WARN_ON_ONCE(p->scx.dsq || !list_empty(&p->scx.dsq_list.node));
1952 		list_add_tail(&p->scx.dsq_list.node,
1953 			      &rq->scx.ddsp_deferred_locals);
1954 		schedule_deferred(rq);
1955 		return;
1956 	}
1957 
1958 	dispatch_enqueue(dsq, p, p->scx.ddsp_enq_flags | SCX_ENQ_CLEAR_OPSS);
1959 }
1960 
1961 static bool scx_rq_online(struct rq *rq)
1962 {
1963 	/*
1964 	 * Test both cpu_active() and %SCX_RQ_ONLINE. %SCX_RQ_ONLINE indicates
1965 	 * the online state as seen from the BPF scheduler. cpu_active() test
1966 	 * guarantees that, if this function returns %true, %SCX_RQ_ONLINE will
1967 	 * stay set until the current scheduling operation is complete even if
1968 	 * we aren't locking @rq.
1969 	 */
1970 	return likely((rq->scx.flags & SCX_RQ_ONLINE) && cpu_active(cpu_of(rq)));
1971 }
1972 
1973 static void do_enqueue_task(struct rq *rq, struct task_struct *p, u64 enq_flags,
1974 			    int sticky_cpu)
1975 {
1976 	struct task_struct **ddsp_taskp;
1977 	unsigned long qseq;
1978 
1979 	WARN_ON_ONCE(!(p->scx.flags & SCX_TASK_QUEUED));
1980 
1981 	/* rq migration */
1982 	if (sticky_cpu == cpu_of(rq))
1983 		goto local_norefill;
1984 
1985 	/*
1986 	 * If !scx_rq_online(), we already told the BPF scheduler that the CPU
1987 	 * is offline and are just running the hotplug path. Don't bother the
1988 	 * BPF scheduler.
1989 	 */
1990 	if (!scx_rq_online(rq))
1991 		goto local;
1992 
1993 	if (scx_rq_bypassing(rq))
1994 		goto global;
1995 
1996 	if (p->scx.ddsp_dsq_id != SCX_DSQ_INVALID)
1997 		goto direct;
1998 
1999 	/* see %SCX_OPS_ENQ_EXITING */
2000 	if (!static_branch_unlikely(&scx_ops_enq_exiting) &&
2001 	    unlikely(p->flags & PF_EXITING))
2002 		goto local;
2003 
2004 	if (!SCX_HAS_OP(enqueue))
2005 		goto global;
2006 
2007 	/* DSQ bypass didn't trigger, enqueue on the BPF scheduler */
2008 	qseq = rq->scx.ops_qseq++ << SCX_OPSS_QSEQ_SHIFT;
2009 
2010 	WARN_ON_ONCE(atomic_long_read(&p->scx.ops_state) != SCX_OPSS_NONE);
2011 	atomic_long_set(&p->scx.ops_state, SCX_OPSS_QUEUEING | qseq);
2012 
2013 	ddsp_taskp = this_cpu_ptr(&direct_dispatch_task);
2014 	WARN_ON_ONCE(*ddsp_taskp);
2015 	*ddsp_taskp = p;
2016 
2017 	SCX_CALL_OP_TASK(SCX_KF_ENQUEUE, enqueue, p, enq_flags);
2018 
2019 	*ddsp_taskp = NULL;
2020 	if (p->scx.ddsp_dsq_id != SCX_DSQ_INVALID)
2021 		goto direct;
2022 
2023 	/*
2024 	 * If not directly dispatched, QUEUEING isn't clear yet and dispatch or
2025 	 * dequeue may be waiting. The store_release matches their load_acquire.
2026 	 */
2027 	atomic_long_set_release(&p->scx.ops_state, SCX_OPSS_QUEUED | qseq);
2028 	return;
2029 
2030 direct:
2031 	direct_dispatch(p, enq_flags);
2032 	return;
2033 
2034 local:
2035 	/*
2036 	 * For task-ordering, slice refill must be treated as implying the end
2037 	 * of the current slice. Otherwise, the longer @p stays on the CPU, the
2038 	 * higher priority it becomes from scx_prio_less()'s POV.
2039 	 */
2040 	touch_core_sched(rq, p);
2041 	p->scx.slice = SCX_SLICE_DFL;
2042 local_norefill:
2043 	dispatch_enqueue(&rq->scx.local_dsq, p, enq_flags);
2044 	return;
2045 
2046 global:
2047 	touch_core_sched(rq, p);	/* see the comment in local: */
2048 	p->scx.slice = SCX_SLICE_DFL;
2049 	dispatch_enqueue(find_global_dsq(p), p, enq_flags);
2050 }
2051 
2052 static bool task_runnable(const struct task_struct *p)
2053 {
2054 	return !list_empty(&p->scx.runnable_node);
2055 }
2056 
2057 static void set_task_runnable(struct rq *rq, struct task_struct *p)
2058 {
2059 	lockdep_assert_rq_held(rq);
2060 
2061 	if (p->scx.flags & SCX_TASK_RESET_RUNNABLE_AT) {
2062 		p->scx.runnable_at = jiffies;
2063 		p->scx.flags &= ~SCX_TASK_RESET_RUNNABLE_AT;
2064 	}
2065 
2066 	/*
2067 	 * list_add_tail() must be used. scx_ops_bypass() depends on tasks being
2068 	 * appened to the runnable_list.
2069 	 */
2070 	list_add_tail(&p->scx.runnable_node, &rq->scx.runnable_list);
2071 }
2072 
2073 static void clr_task_runnable(struct task_struct *p, bool reset_runnable_at)
2074 {
2075 	list_del_init(&p->scx.runnable_node);
2076 	if (reset_runnable_at)
2077 		p->scx.flags |= SCX_TASK_RESET_RUNNABLE_AT;
2078 }
2079 
2080 static void enqueue_task_scx(struct rq *rq, struct task_struct *p, int enq_flags)
2081 {
2082 	int sticky_cpu = p->scx.sticky_cpu;
2083 
2084 	if (enq_flags & ENQUEUE_WAKEUP)
2085 		rq->scx.flags |= SCX_RQ_IN_WAKEUP;
2086 
2087 	enq_flags |= rq->scx.extra_enq_flags;
2088 
2089 	if (sticky_cpu >= 0)
2090 		p->scx.sticky_cpu = -1;
2091 
2092 	/*
2093 	 * Restoring a running task will be immediately followed by
2094 	 * set_next_task_scx() which expects the task to not be on the BPF
2095 	 * scheduler as tasks can only start running through local DSQs. Force
2096 	 * direct-dispatch into the local DSQ by setting the sticky_cpu.
2097 	 */
2098 	if (unlikely(enq_flags & ENQUEUE_RESTORE) && task_current(rq, p))
2099 		sticky_cpu = cpu_of(rq);
2100 
2101 	if (p->scx.flags & SCX_TASK_QUEUED) {
2102 		WARN_ON_ONCE(!task_runnable(p));
2103 		goto out;
2104 	}
2105 
2106 	set_task_runnable(rq, p);
2107 	p->scx.flags |= SCX_TASK_QUEUED;
2108 	rq->scx.nr_running++;
2109 	add_nr_running(rq, 1);
2110 
2111 	if (SCX_HAS_OP(runnable) && !task_on_rq_migrating(p))
2112 		SCX_CALL_OP_TASK(SCX_KF_REST, runnable, p, enq_flags);
2113 
2114 	if (enq_flags & SCX_ENQ_WAKEUP)
2115 		touch_core_sched(rq, p);
2116 
2117 	do_enqueue_task(rq, p, enq_flags, sticky_cpu);
2118 out:
2119 	rq->scx.flags &= ~SCX_RQ_IN_WAKEUP;
2120 }
2121 
2122 static void ops_dequeue(struct task_struct *p, u64 deq_flags)
2123 {
2124 	unsigned long opss;
2125 
2126 	/* dequeue is always temporary, don't reset runnable_at */
2127 	clr_task_runnable(p, false);
2128 
2129 	/* acquire ensures that we see the preceding updates on QUEUED */
2130 	opss = atomic_long_read_acquire(&p->scx.ops_state);
2131 
2132 	switch (opss & SCX_OPSS_STATE_MASK) {
2133 	case SCX_OPSS_NONE:
2134 		break;
2135 	case SCX_OPSS_QUEUEING:
2136 		/*
2137 		 * QUEUEING is started and finished while holding @p's rq lock.
2138 		 * As we're holding the rq lock now, we shouldn't see QUEUEING.
2139 		 */
2140 		BUG();
2141 	case SCX_OPSS_QUEUED:
2142 		if (SCX_HAS_OP(dequeue))
2143 			SCX_CALL_OP_TASK(SCX_KF_REST, dequeue, p, deq_flags);
2144 
2145 		if (atomic_long_try_cmpxchg(&p->scx.ops_state, &opss,
2146 					    SCX_OPSS_NONE))
2147 			break;
2148 		fallthrough;
2149 	case SCX_OPSS_DISPATCHING:
2150 		/*
2151 		 * If @p is being dispatched from the BPF scheduler to a DSQ,
2152 		 * wait for the transfer to complete so that @p doesn't get
2153 		 * added to its DSQ after dequeueing is complete.
2154 		 *
2155 		 * As we're waiting on DISPATCHING with the rq locked, the
2156 		 * dispatching side shouldn't try to lock the rq while
2157 		 * DISPATCHING is set. See dispatch_to_local_dsq().
2158 		 *
2159 		 * DISPATCHING shouldn't have qseq set and control can reach
2160 		 * here with NONE @opss from the above QUEUED case block.
2161 		 * Explicitly wait on %SCX_OPSS_DISPATCHING instead of @opss.
2162 		 */
2163 		wait_ops_state(p, SCX_OPSS_DISPATCHING);
2164 		BUG_ON(atomic_long_read(&p->scx.ops_state) != SCX_OPSS_NONE);
2165 		break;
2166 	}
2167 }
2168 
2169 static bool dequeue_task_scx(struct rq *rq, struct task_struct *p, int deq_flags)
2170 {
2171 	if (!(p->scx.flags & SCX_TASK_QUEUED)) {
2172 		WARN_ON_ONCE(task_runnable(p));
2173 		return true;
2174 	}
2175 
2176 	ops_dequeue(p, deq_flags);
2177 
2178 	/*
2179 	 * A currently running task which is going off @rq first gets dequeued
2180 	 * and then stops running. As we want running <-> stopping transitions
2181 	 * to be contained within runnable <-> quiescent transitions, trigger
2182 	 * ->stopping() early here instead of in put_prev_task_scx().
2183 	 *
2184 	 * @p may go through multiple stopping <-> running transitions between
2185 	 * here and put_prev_task_scx() if task attribute changes occur while
2186 	 * balance_scx() leaves @rq unlocked. However, they don't contain any
2187 	 * information meaningful to the BPF scheduler and can be suppressed by
2188 	 * skipping the callbacks if the task is !QUEUED.
2189 	 */
2190 	if (SCX_HAS_OP(stopping) && task_current(rq, p)) {
2191 		update_curr_scx(rq);
2192 		SCX_CALL_OP_TASK(SCX_KF_REST, stopping, p, false);
2193 	}
2194 
2195 	if (SCX_HAS_OP(quiescent) && !task_on_rq_migrating(p))
2196 		SCX_CALL_OP_TASK(SCX_KF_REST, quiescent, p, deq_flags);
2197 
2198 	if (deq_flags & SCX_DEQ_SLEEP)
2199 		p->scx.flags |= SCX_TASK_DEQD_FOR_SLEEP;
2200 	else
2201 		p->scx.flags &= ~SCX_TASK_DEQD_FOR_SLEEP;
2202 
2203 	p->scx.flags &= ~SCX_TASK_QUEUED;
2204 	rq->scx.nr_running--;
2205 	sub_nr_running(rq, 1);
2206 
2207 	dispatch_dequeue(rq, p);
2208 	return true;
2209 }
2210 
2211 static void yield_task_scx(struct rq *rq)
2212 {
2213 	struct task_struct *p = rq->curr;
2214 
2215 	if (SCX_HAS_OP(yield))
2216 		SCX_CALL_OP_2TASKS_RET(SCX_KF_REST, yield, p, NULL);
2217 	else
2218 		p->scx.slice = 0;
2219 }
2220 
2221 static bool yield_to_task_scx(struct rq *rq, struct task_struct *to)
2222 {
2223 	struct task_struct *from = rq->curr;
2224 
2225 	if (SCX_HAS_OP(yield))
2226 		return SCX_CALL_OP_2TASKS_RET(SCX_KF_REST, yield, from, to);
2227 	else
2228 		return false;
2229 }
2230 
2231 static void move_local_task_to_local_dsq(struct task_struct *p, u64 enq_flags,
2232 					 struct scx_dispatch_q *src_dsq,
2233 					 struct rq *dst_rq)
2234 {
2235 	struct scx_dispatch_q *dst_dsq = &dst_rq->scx.local_dsq;
2236 
2237 	/* @dsq is locked and @p is on @dst_rq */
2238 	lockdep_assert_held(&src_dsq->lock);
2239 	lockdep_assert_rq_held(dst_rq);
2240 
2241 	WARN_ON_ONCE(p->scx.holding_cpu >= 0);
2242 
2243 	if (enq_flags & (SCX_ENQ_HEAD | SCX_ENQ_PREEMPT))
2244 		list_add(&p->scx.dsq_list.node, &dst_dsq->list);
2245 	else
2246 		list_add_tail(&p->scx.dsq_list.node, &dst_dsq->list);
2247 
2248 	dsq_mod_nr(dst_dsq, 1);
2249 	p->scx.dsq = dst_dsq;
2250 }
2251 
2252 #ifdef CONFIG_SMP
2253 /**
2254  * move_remote_task_to_local_dsq - Move a task from a foreign rq to a local DSQ
2255  * @p: task to move
2256  * @enq_flags: %SCX_ENQ_*
2257  * @src_rq: rq to move the task from, locked on entry, released on return
2258  * @dst_rq: rq to move the task into, locked on return
2259  *
2260  * Move @p which is currently on @src_rq to @dst_rq's local DSQ.
2261  */
2262 static void move_remote_task_to_local_dsq(struct task_struct *p, u64 enq_flags,
2263 					  struct rq *src_rq, struct rq *dst_rq)
2264 {
2265 	lockdep_assert_rq_held(src_rq);
2266 
2267 	/* the following marks @p MIGRATING which excludes dequeue */
2268 	deactivate_task(src_rq, p, 0);
2269 	set_task_cpu(p, cpu_of(dst_rq));
2270 	p->scx.sticky_cpu = cpu_of(dst_rq);
2271 
2272 	raw_spin_rq_unlock(src_rq);
2273 	raw_spin_rq_lock(dst_rq);
2274 
2275 	/*
2276 	 * We want to pass scx-specific enq_flags but activate_task() will
2277 	 * truncate the upper 32 bit. As we own @rq, we can pass them through
2278 	 * @rq->scx.extra_enq_flags instead.
2279 	 */
2280 	WARN_ON_ONCE(!cpumask_test_cpu(cpu_of(dst_rq), p->cpus_ptr));
2281 	WARN_ON_ONCE(dst_rq->scx.extra_enq_flags);
2282 	dst_rq->scx.extra_enq_flags = enq_flags;
2283 	activate_task(dst_rq, p, 0);
2284 	dst_rq->scx.extra_enq_flags = 0;
2285 }
2286 
2287 /*
2288  * Similar to kernel/sched/core.c::is_cpu_allowed(). However, there are two
2289  * differences:
2290  *
2291  * - is_cpu_allowed() asks "Can this task run on this CPU?" while
2292  *   task_can_run_on_remote_rq() asks "Can the BPF scheduler migrate the task to
2293  *   this CPU?".
2294  *
2295  *   While migration is disabled, is_cpu_allowed() has to say "yes" as the task
2296  *   must be allowed to finish on the CPU that it's currently on regardless of
2297  *   the CPU state. However, task_can_run_on_remote_rq() must say "no" as the
2298  *   BPF scheduler shouldn't attempt to migrate a task which has migration
2299  *   disabled.
2300  *
2301  * - The BPF scheduler is bypassed while the rq is offline and we can always say
2302  *   no to the BPF scheduler initiated migrations while offline.
2303  */
2304 static bool task_can_run_on_remote_rq(struct task_struct *p, struct rq *rq,
2305 				      bool trigger_error)
2306 {
2307 	int cpu = cpu_of(rq);
2308 
2309 	/*
2310 	 * We don't require the BPF scheduler to avoid dispatching to offline
2311 	 * CPUs mostly for convenience but also because CPUs can go offline
2312 	 * between scx_bpf_dispatch() calls and here. Trigger error iff the
2313 	 * picked CPU is outside the allowed mask.
2314 	 */
2315 	if (!task_allowed_on_cpu(p, cpu)) {
2316 		if (trigger_error)
2317 			scx_ops_error("SCX_DSQ_LOCAL[_ON] verdict target cpu %d not allowed for %s[%d]",
2318 				      cpu_of(rq), p->comm, p->pid);
2319 		return false;
2320 	}
2321 
2322 	if (unlikely(is_migration_disabled(p)))
2323 		return false;
2324 
2325 	if (!scx_rq_online(rq))
2326 		return false;
2327 
2328 	return true;
2329 }
2330 
2331 /**
2332  * unlink_dsq_and_lock_src_rq() - Unlink task from its DSQ and lock its task_rq
2333  * @p: target task
2334  * @dsq: locked DSQ @p is currently on
2335  * @src_rq: rq @p is currently on, stable with @dsq locked
2336  *
2337  * Called with @dsq locked but no rq's locked. We want to move @p to a different
2338  * DSQ, including any local DSQ, but are not locking @src_rq. Locking @src_rq is
2339  * required when transferring into a local DSQ. Even when transferring into a
2340  * non-local DSQ, it's better to use the same mechanism to protect against
2341  * dequeues and maintain the invariant that @p->scx.dsq can only change while
2342  * @src_rq is locked, which e.g. scx_dump_task() depends on.
2343  *
2344  * We want to grab @src_rq but that can deadlock if we try while locking @dsq,
2345  * so we want to unlink @p from @dsq, drop its lock and then lock @src_rq. As
2346  * this may race with dequeue, which can't drop the rq lock or fail, do a little
2347  * dancing from our side.
2348  *
2349  * @p->scx.holding_cpu is set to this CPU before @dsq is unlocked. If @p gets
2350  * dequeued after we unlock @dsq but before locking @src_rq, the holding_cpu
2351  * would be cleared to -1. While other cpus may have updated it to different
2352  * values afterwards, as this operation can't be preempted or recurse, the
2353  * holding_cpu can never become this CPU again before we're done. Thus, we can
2354  * tell whether we lost to dequeue by testing whether the holding_cpu still
2355  * points to this CPU. See dispatch_dequeue() for the counterpart.
2356  *
2357  * On return, @dsq is unlocked and @src_rq is locked. Returns %true if @p is
2358  * still valid. %false if lost to dequeue.
2359  */
2360 static bool unlink_dsq_and_lock_src_rq(struct task_struct *p,
2361 				       struct scx_dispatch_q *dsq,
2362 				       struct rq *src_rq)
2363 {
2364 	s32 cpu = raw_smp_processor_id();
2365 
2366 	lockdep_assert_held(&dsq->lock);
2367 
2368 	WARN_ON_ONCE(p->scx.holding_cpu >= 0);
2369 	task_unlink_from_dsq(p, dsq);
2370 	p->scx.holding_cpu = cpu;
2371 
2372 	raw_spin_unlock(&dsq->lock);
2373 	raw_spin_rq_lock(src_rq);
2374 
2375 	/* task_rq couldn't have changed if we're still the holding cpu */
2376 	return likely(p->scx.holding_cpu == cpu) &&
2377 		!WARN_ON_ONCE(src_rq != task_rq(p));
2378 }
2379 
2380 static bool consume_remote_task(struct rq *this_rq, struct task_struct *p,
2381 				struct scx_dispatch_q *dsq, struct rq *src_rq)
2382 {
2383 	raw_spin_rq_unlock(this_rq);
2384 
2385 	if (unlink_dsq_and_lock_src_rq(p, dsq, src_rq)) {
2386 		move_remote_task_to_local_dsq(p, 0, src_rq, this_rq);
2387 		return true;
2388 	} else {
2389 		raw_spin_rq_unlock(src_rq);
2390 		raw_spin_rq_lock(this_rq);
2391 		return false;
2392 	}
2393 }
2394 #else	/* CONFIG_SMP */
2395 static inline void move_remote_task_to_local_dsq(struct task_struct *p, u64 enq_flags, struct rq *src_rq, struct rq *dst_rq) { WARN_ON_ONCE(1); }
2396 static inline bool task_can_run_on_remote_rq(struct task_struct *p, struct rq *rq, bool trigger_error) { return false; }
2397 static inline bool consume_remote_task(struct rq *this_rq, struct task_struct *p, struct scx_dispatch_q *dsq, struct rq *task_rq) { return false; }
2398 #endif	/* CONFIG_SMP */
2399 
2400 static bool consume_dispatch_q(struct rq *rq, struct scx_dispatch_q *dsq)
2401 {
2402 	struct task_struct *p;
2403 retry:
2404 	/*
2405 	 * The caller can't expect to successfully consume a task if the task's
2406 	 * addition to @dsq isn't guaranteed to be visible somehow. Test
2407 	 * @dsq->list without locking and skip if it seems empty.
2408 	 */
2409 	if (list_empty(&dsq->list))
2410 		return false;
2411 
2412 	raw_spin_lock(&dsq->lock);
2413 
2414 	nldsq_for_each_task(p, dsq) {
2415 		struct rq *task_rq = task_rq(p);
2416 
2417 		if (rq == task_rq) {
2418 			task_unlink_from_dsq(p, dsq);
2419 			move_local_task_to_local_dsq(p, 0, dsq, rq);
2420 			raw_spin_unlock(&dsq->lock);
2421 			return true;
2422 		}
2423 
2424 		if (task_can_run_on_remote_rq(p, rq, false)) {
2425 			if (likely(consume_remote_task(rq, p, dsq, task_rq)))
2426 				return true;
2427 			goto retry;
2428 		}
2429 	}
2430 
2431 	raw_spin_unlock(&dsq->lock);
2432 	return false;
2433 }
2434 
2435 static bool consume_global_dsq(struct rq *rq)
2436 {
2437 	int node = cpu_to_node(cpu_of(rq));
2438 
2439 	return consume_dispatch_q(rq, global_dsqs[node]);
2440 }
2441 
2442 /**
2443  * dispatch_to_local_dsq - Dispatch a task to a local dsq
2444  * @rq: current rq which is locked
2445  * @dst_dsq: destination DSQ
2446  * @p: task to dispatch
2447  * @enq_flags: %SCX_ENQ_*
2448  *
2449  * We're holding @rq lock and want to dispatch @p to @dst_dsq which is a local
2450  * DSQ. This function performs all the synchronization dancing needed because
2451  * local DSQs are protected with rq locks.
2452  *
2453  * The caller must have exclusive ownership of @p (e.g. through
2454  * %SCX_OPSS_DISPATCHING).
2455  */
2456 static void dispatch_to_local_dsq(struct rq *rq, struct scx_dispatch_q *dst_dsq,
2457 				  struct task_struct *p, u64 enq_flags)
2458 {
2459 	struct rq *src_rq = task_rq(p);
2460 	struct rq *dst_rq = container_of(dst_dsq, struct rq, scx.local_dsq);
2461 
2462 	/*
2463 	 * We're synchronized against dequeue through DISPATCHING. As @p can't
2464 	 * be dequeued, its task_rq and cpus_allowed are stable too.
2465 	 *
2466 	 * If dispatching to @rq that @p is already on, no lock dancing needed.
2467 	 */
2468 	if (rq == src_rq && rq == dst_rq) {
2469 		dispatch_enqueue(dst_dsq, p, enq_flags | SCX_ENQ_CLEAR_OPSS);
2470 		return;
2471 	}
2472 
2473 #ifdef CONFIG_SMP
2474 	if (unlikely(!task_can_run_on_remote_rq(p, dst_rq, true))) {
2475 		dispatch_enqueue(find_global_dsq(p), p,
2476 				 enq_flags | SCX_ENQ_CLEAR_OPSS);
2477 		return;
2478 	}
2479 
2480 	/*
2481 	 * @p is on a possibly remote @src_rq which we need to lock to move the
2482 	 * task. If dequeue is in progress, it'd be locking @src_rq and waiting
2483 	 * on DISPATCHING, so we can't grab @src_rq lock while holding
2484 	 * DISPATCHING.
2485 	 *
2486 	 * As DISPATCHING guarantees that @p is wholly ours, we can pretend that
2487 	 * we're moving from a DSQ and use the same mechanism - mark the task
2488 	 * under transfer with holding_cpu, release DISPATCHING and then follow
2489 	 * the same protocol. See unlink_dsq_and_lock_src_rq().
2490 	 */
2491 	p->scx.holding_cpu = raw_smp_processor_id();
2492 
2493 	/* store_release ensures that dequeue sees the above */
2494 	atomic_long_set_release(&p->scx.ops_state, SCX_OPSS_NONE);
2495 
2496 	/* switch to @src_rq lock */
2497 	if (rq != src_rq) {
2498 		raw_spin_rq_unlock(rq);
2499 		raw_spin_rq_lock(src_rq);
2500 	}
2501 
2502 	/* task_rq couldn't have changed if we're still the holding cpu */
2503 	if (likely(p->scx.holding_cpu == raw_smp_processor_id()) &&
2504 	    !WARN_ON_ONCE(src_rq != task_rq(p))) {
2505 		/*
2506 		 * If @p is staying on the same rq, there's no need to go
2507 		 * through the full deactivate/activate cycle. Optimize by
2508 		 * abbreviating move_remote_task_to_local_dsq().
2509 		 */
2510 		if (src_rq == dst_rq) {
2511 			p->scx.holding_cpu = -1;
2512 			dispatch_enqueue(&dst_rq->scx.local_dsq, p, enq_flags);
2513 		} else {
2514 			move_remote_task_to_local_dsq(p, enq_flags,
2515 						      src_rq, dst_rq);
2516 		}
2517 
2518 		/* if the destination CPU is idle, wake it up */
2519 		if (sched_class_above(p->sched_class, dst_rq->curr->sched_class))
2520 			resched_curr(dst_rq);
2521 	}
2522 
2523 	/* switch back to @rq lock */
2524 	if (rq != dst_rq) {
2525 		raw_spin_rq_unlock(dst_rq);
2526 		raw_spin_rq_lock(rq);
2527 	}
2528 #else	/* CONFIG_SMP */
2529 	BUG();	/* control can not reach here on UP */
2530 #endif	/* CONFIG_SMP */
2531 }
2532 
2533 /**
2534  * finish_dispatch - Asynchronously finish dispatching a task
2535  * @rq: current rq which is locked
2536  * @p: task to finish dispatching
2537  * @qseq_at_dispatch: qseq when @p started getting dispatched
2538  * @dsq_id: destination DSQ ID
2539  * @enq_flags: %SCX_ENQ_*
2540  *
2541  * Dispatching to local DSQs may need to wait for queueing to complete or
2542  * require rq lock dancing. As we don't wanna do either while inside
2543  * ops.dispatch() to avoid locking order inversion, we split dispatching into
2544  * two parts. scx_bpf_dispatch() which is called by ops.dispatch() records the
2545  * task and its qseq. Once ops.dispatch() returns, this function is called to
2546  * finish up.
2547  *
2548  * There is no guarantee that @p is still valid for dispatching or even that it
2549  * was valid in the first place. Make sure that the task is still owned by the
2550  * BPF scheduler and claim the ownership before dispatching.
2551  */
2552 static void finish_dispatch(struct rq *rq, struct task_struct *p,
2553 			    unsigned long qseq_at_dispatch,
2554 			    u64 dsq_id, u64 enq_flags)
2555 {
2556 	struct scx_dispatch_q *dsq;
2557 	unsigned long opss;
2558 
2559 	touch_core_sched_dispatch(rq, p);
2560 retry:
2561 	/*
2562 	 * No need for _acquire here. @p is accessed only after a successful
2563 	 * try_cmpxchg to DISPATCHING.
2564 	 */
2565 	opss = atomic_long_read(&p->scx.ops_state);
2566 
2567 	switch (opss & SCX_OPSS_STATE_MASK) {
2568 	case SCX_OPSS_DISPATCHING:
2569 	case SCX_OPSS_NONE:
2570 		/* someone else already got to it */
2571 		return;
2572 	case SCX_OPSS_QUEUED:
2573 		/*
2574 		 * If qseq doesn't match, @p has gone through at least one
2575 		 * dispatch/dequeue and re-enqueue cycle between
2576 		 * scx_bpf_dispatch() and here and we have no claim on it.
2577 		 */
2578 		if ((opss & SCX_OPSS_QSEQ_MASK) != qseq_at_dispatch)
2579 			return;
2580 
2581 		/*
2582 		 * While we know @p is accessible, we don't yet have a claim on
2583 		 * it - the BPF scheduler is allowed to dispatch tasks
2584 		 * spuriously and there can be a racing dequeue attempt. Let's
2585 		 * claim @p by atomically transitioning it from QUEUED to
2586 		 * DISPATCHING.
2587 		 */
2588 		if (likely(atomic_long_try_cmpxchg(&p->scx.ops_state, &opss,
2589 						   SCX_OPSS_DISPATCHING)))
2590 			break;
2591 		goto retry;
2592 	case SCX_OPSS_QUEUEING:
2593 		/*
2594 		 * do_enqueue_task() is in the process of transferring the task
2595 		 * to the BPF scheduler while holding @p's rq lock. As we aren't
2596 		 * holding any kernel or BPF resource that the enqueue path may
2597 		 * depend upon, it's safe to wait.
2598 		 */
2599 		wait_ops_state(p, opss);
2600 		goto retry;
2601 	}
2602 
2603 	BUG_ON(!(p->scx.flags & SCX_TASK_QUEUED));
2604 
2605 	dsq = find_dsq_for_dispatch(this_rq(), dsq_id, p);
2606 
2607 	if (dsq->id == SCX_DSQ_LOCAL)
2608 		dispatch_to_local_dsq(rq, dsq, p, enq_flags);
2609 	else
2610 		dispatch_enqueue(dsq, p, enq_flags | SCX_ENQ_CLEAR_OPSS);
2611 }
2612 
2613 static void flush_dispatch_buf(struct rq *rq)
2614 {
2615 	struct scx_dsp_ctx *dspc = this_cpu_ptr(scx_dsp_ctx);
2616 	u32 u;
2617 
2618 	for (u = 0; u < dspc->cursor; u++) {
2619 		struct scx_dsp_buf_ent *ent = &dspc->buf[u];
2620 
2621 		finish_dispatch(rq, ent->task, ent->qseq, ent->dsq_id,
2622 				ent->enq_flags);
2623 	}
2624 
2625 	dspc->nr_tasks += dspc->cursor;
2626 	dspc->cursor = 0;
2627 }
2628 
2629 static int balance_one(struct rq *rq, struct task_struct *prev)
2630 {
2631 	struct scx_dsp_ctx *dspc = this_cpu_ptr(scx_dsp_ctx);
2632 	bool prev_on_scx = prev->sched_class == &ext_sched_class;
2633 	int nr_loops = SCX_DSP_MAX_LOOPS;
2634 
2635 	lockdep_assert_rq_held(rq);
2636 	rq->scx.flags |= SCX_RQ_IN_BALANCE;
2637 	rq->scx.flags &= ~(SCX_RQ_BAL_PENDING | SCX_RQ_BAL_KEEP);
2638 
2639 	if (static_branch_unlikely(&scx_ops_cpu_preempt) &&
2640 	    unlikely(rq->scx.cpu_released)) {
2641 		/*
2642 		 * If the previous sched_class for the current CPU was not SCX,
2643 		 * notify the BPF scheduler that it again has control of the
2644 		 * core. This callback complements ->cpu_release(), which is
2645 		 * emitted in scx_next_task_picked().
2646 		 */
2647 		if (SCX_HAS_OP(cpu_acquire))
2648 			SCX_CALL_OP(SCX_KF_REST, cpu_acquire, cpu_of(rq), NULL);
2649 		rq->scx.cpu_released = false;
2650 	}
2651 
2652 	if (prev_on_scx) {
2653 		update_curr_scx(rq);
2654 
2655 		/*
2656 		 * If @prev is runnable & has slice left, it has priority and
2657 		 * fetching more just increases latency for the fetched tasks.
2658 		 * Tell pick_task_scx() to keep running @prev. If the BPF
2659 		 * scheduler wants to handle this explicitly, it should
2660 		 * implement ->cpu_release().
2661 		 *
2662 		 * See scx_ops_disable_workfn() for the explanation on the
2663 		 * bypassing test.
2664 		 */
2665 		if ((prev->scx.flags & SCX_TASK_QUEUED) &&
2666 		    prev->scx.slice && !scx_rq_bypassing(rq)) {
2667 			rq->scx.flags |= SCX_RQ_BAL_KEEP;
2668 			goto has_tasks;
2669 		}
2670 	}
2671 
2672 	/* if there already are tasks to run, nothing to do */
2673 	if (rq->scx.local_dsq.nr)
2674 		goto has_tasks;
2675 
2676 	if (consume_global_dsq(rq))
2677 		goto has_tasks;
2678 
2679 	if (!SCX_HAS_OP(dispatch) || scx_rq_bypassing(rq) || !scx_rq_online(rq))
2680 		goto no_tasks;
2681 
2682 	dspc->rq = rq;
2683 
2684 	/*
2685 	 * The dispatch loop. Because flush_dispatch_buf() may drop the rq lock,
2686 	 * the local DSQ might still end up empty after a successful
2687 	 * ops.dispatch(). If the local DSQ is empty even after ops.dispatch()
2688 	 * produced some tasks, retry. The BPF scheduler may depend on this
2689 	 * looping behavior to simplify its implementation.
2690 	 */
2691 	do {
2692 		dspc->nr_tasks = 0;
2693 
2694 		SCX_CALL_OP(SCX_KF_DISPATCH, dispatch, cpu_of(rq),
2695 			    prev_on_scx ? prev : NULL);
2696 
2697 		flush_dispatch_buf(rq);
2698 
2699 		if (rq->scx.local_dsq.nr)
2700 			goto has_tasks;
2701 		if (consume_global_dsq(rq))
2702 			goto has_tasks;
2703 
2704 		/*
2705 		 * ops.dispatch() can trap us in this loop by repeatedly
2706 		 * dispatching ineligible tasks. Break out once in a while to
2707 		 * allow the watchdog to run. As IRQ can't be enabled in
2708 		 * balance(), we want to complete this scheduling cycle and then
2709 		 * start a new one. IOW, we want to call resched_curr() on the
2710 		 * next, most likely idle, task, not the current one. Use
2711 		 * scx_bpf_kick_cpu() for deferred kicking.
2712 		 */
2713 		if (unlikely(!--nr_loops)) {
2714 			scx_bpf_kick_cpu(cpu_of(rq), 0);
2715 			break;
2716 		}
2717 	} while (dspc->nr_tasks);
2718 
2719 no_tasks:
2720 	/*
2721 	 * Didn't find another task to run. Keep running @prev unless
2722 	 * %SCX_OPS_ENQ_LAST is in effect.
2723 	 */
2724 	if ((prev->scx.flags & SCX_TASK_QUEUED) &&
2725 	    (!static_branch_unlikely(&scx_ops_enq_last) ||
2726 	     scx_rq_bypassing(rq))) {
2727 		rq->scx.flags |= SCX_RQ_BAL_KEEP;
2728 		goto has_tasks;
2729 	}
2730 	rq->scx.flags &= ~SCX_RQ_IN_BALANCE;
2731 	return false;
2732 
2733 has_tasks:
2734 	rq->scx.flags &= ~SCX_RQ_IN_BALANCE;
2735 	return true;
2736 }
2737 
2738 static int balance_scx(struct rq *rq, struct task_struct *prev,
2739 		       struct rq_flags *rf)
2740 {
2741 	int ret;
2742 
2743 	rq_unpin_lock(rq, rf);
2744 
2745 	ret = balance_one(rq, prev);
2746 
2747 #ifdef CONFIG_SCHED_SMT
2748 	/*
2749 	 * When core-sched is enabled, this ops.balance() call will be followed
2750 	 * by pick_task_scx() on this CPU and the SMT siblings. Balance the
2751 	 * siblings too.
2752 	 */
2753 	if (sched_core_enabled(rq)) {
2754 		const struct cpumask *smt_mask = cpu_smt_mask(cpu_of(rq));
2755 		int scpu;
2756 
2757 		for_each_cpu_andnot(scpu, smt_mask, cpumask_of(cpu_of(rq))) {
2758 			struct rq *srq = cpu_rq(scpu);
2759 			struct task_struct *sprev = srq->curr;
2760 
2761 			WARN_ON_ONCE(__rq_lockp(rq) != __rq_lockp(srq));
2762 			update_rq_clock(srq);
2763 			balance_one(srq, sprev);
2764 		}
2765 	}
2766 #endif
2767 	rq_repin_lock(rq, rf);
2768 
2769 	return ret;
2770 }
2771 
2772 static void process_ddsp_deferred_locals(struct rq *rq)
2773 {
2774 	struct task_struct *p;
2775 
2776 	lockdep_assert_rq_held(rq);
2777 
2778 	/*
2779 	 * Now that @rq can be unlocked, execute the deferred enqueueing of
2780 	 * tasks directly dispatched to the local DSQs of other CPUs. See
2781 	 * direct_dispatch(). Keep popping from the head instead of using
2782 	 * list_for_each_entry_safe() as dispatch_local_dsq() may unlock @rq
2783 	 * temporarily.
2784 	 */
2785 	while ((p = list_first_entry_or_null(&rq->scx.ddsp_deferred_locals,
2786 				struct task_struct, scx.dsq_list.node))) {
2787 		struct scx_dispatch_q *dsq;
2788 
2789 		list_del_init(&p->scx.dsq_list.node);
2790 
2791 		dsq = find_dsq_for_dispatch(rq, p->scx.ddsp_dsq_id, p);
2792 		if (!WARN_ON_ONCE(dsq->id != SCX_DSQ_LOCAL))
2793 			dispatch_to_local_dsq(rq, dsq, p, p->scx.ddsp_enq_flags);
2794 	}
2795 }
2796 
2797 static void set_next_task_scx(struct rq *rq, struct task_struct *p, bool first)
2798 {
2799 	if (p->scx.flags & SCX_TASK_QUEUED) {
2800 		/*
2801 		 * Core-sched might decide to execute @p before it is
2802 		 * dispatched. Call ops_dequeue() to notify the BPF scheduler.
2803 		 */
2804 		ops_dequeue(p, SCX_DEQ_CORE_SCHED_EXEC);
2805 		dispatch_dequeue(rq, p);
2806 	}
2807 
2808 	p->se.exec_start = rq_clock_task(rq);
2809 
2810 	/* see dequeue_task_scx() on why we skip when !QUEUED */
2811 	if (SCX_HAS_OP(running) && (p->scx.flags & SCX_TASK_QUEUED))
2812 		SCX_CALL_OP_TASK(SCX_KF_REST, running, p);
2813 
2814 	clr_task_runnable(p, true);
2815 
2816 	/*
2817 	 * @p is getting newly scheduled or got kicked after someone updated its
2818 	 * slice. Refresh whether tick can be stopped. See scx_can_stop_tick().
2819 	 */
2820 	if ((p->scx.slice == SCX_SLICE_INF) !=
2821 	    (bool)(rq->scx.flags & SCX_RQ_CAN_STOP_TICK)) {
2822 		if (p->scx.slice == SCX_SLICE_INF)
2823 			rq->scx.flags |= SCX_RQ_CAN_STOP_TICK;
2824 		else
2825 			rq->scx.flags &= ~SCX_RQ_CAN_STOP_TICK;
2826 
2827 		sched_update_tick_dependency(rq);
2828 
2829 		/*
2830 		 * For now, let's refresh the load_avgs just when transitioning
2831 		 * in and out of nohz. In the future, we might want to add a
2832 		 * mechanism which calls the following periodically on
2833 		 * tick-stopped CPUs.
2834 		 */
2835 		update_other_load_avgs(rq);
2836 	}
2837 }
2838 
2839 static enum scx_cpu_preempt_reason
2840 preempt_reason_from_class(const struct sched_class *class)
2841 {
2842 #ifdef CONFIG_SMP
2843 	if (class == &stop_sched_class)
2844 		return SCX_CPU_PREEMPT_STOP;
2845 #endif
2846 	if (class == &dl_sched_class)
2847 		return SCX_CPU_PREEMPT_DL;
2848 	if (class == &rt_sched_class)
2849 		return SCX_CPU_PREEMPT_RT;
2850 	return SCX_CPU_PREEMPT_UNKNOWN;
2851 }
2852 
2853 static void switch_class(struct rq *rq, struct task_struct *next)
2854 {
2855 	const struct sched_class *next_class = next->sched_class;
2856 
2857 #ifdef CONFIG_SMP
2858 	/*
2859 	 * Pairs with the smp_load_acquire() issued by a CPU in
2860 	 * kick_cpus_irq_workfn() who is waiting for this CPU to perform a
2861 	 * resched.
2862 	 */
2863 	smp_store_release(&rq->scx.pnt_seq, rq->scx.pnt_seq + 1);
2864 #endif
2865 	if (!static_branch_unlikely(&scx_ops_cpu_preempt))
2866 		return;
2867 
2868 	/*
2869 	 * The callback is conceptually meant to convey that the CPU is no
2870 	 * longer under the control of SCX. Therefore, don't invoke the callback
2871 	 * if the next class is below SCX (in which case the BPF scheduler has
2872 	 * actively decided not to schedule any tasks on the CPU).
2873 	 */
2874 	if (sched_class_above(&ext_sched_class, next_class))
2875 		return;
2876 
2877 	/*
2878 	 * At this point we know that SCX was preempted by a higher priority
2879 	 * sched_class, so invoke the ->cpu_release() callback if we have not
2880 	 * done so already. We only send the callback once between SCX being
2881 	 * preempted, and it regaining control of the CPU.
2882 	 *
2883 	 * ->cpu_release() complements ->cpu_acquire(), which is emitted the
2884 	 *  next time that balance_scx() is invoked.
2885 	 */
2886 	if (!rq->scx.cpu_released) {
2887 		if (SCX_HAS_OP(cpu_release)) {
2888 			struct scx_cpu_release_args args = {
2889 				.reason = preempt_reason_from_class(next_class),
2890 				.task = next,
2891 			};
2892 
2893 			SCX_CALL_OP(SCX_KF_CPU_RELEASE,
2894 				    cpu_release, cpu_of(rq), &args);
2895 		}
2896 		rq->scx.cpu_released = true;
2897 	}
2898 }
2899 
2900 static void put_prev_task_scx(struct rq *rq, struct task_struct *p,
2901 			      struct task_struct *next)
2902 {
2903 	update_curr_scx(rq);
2904 
2905 	/* see dequeue_task_scx() on why we skip when !QUEUED */
2906 	if (SCX_HAS_OP(stopping) && (p->scx.flags & SCX_TASK_QUEUED))
2907 		SCX_CALL_OP_TASK(SCX_KF_REST, stopping, p, true);
2908 
2909 	if (p->scx.flags & SCX_TASK_QUEUED) {
2910 		set_task_runnable(rq, p);
2911 
2912 		/*
2913 		 * If @p has slice left and is being put, @p is getting
2914 		 * preempted by a higher priority scheduler class or core-sched
2915 		 * forcing a different task. Leave it at the head of the local
2916 		 * DSQ.
2917 		 */
2918 		if (p->scx.slice && !scx_rq_bypassing(rq)) {
2919 			dispatch_enqueue(&rq->scx.local_dsq, p, SCX_ENQ_HEAD);
2920 			return;
2921 		}
2922 
2923 		/*
2924 		 * If @p is runnable but we're about to enter a lower
2925 		 * sched_class, %SCX_OPS_ENQ_LAST must be set. Tell
2926 		 * ops.enqueue() that @p is the only one available for this cpu,
2927 		 * which should trigger an explicit follow-up scheduling event.
2928 		 */
2929 		if (sched_class_above(&ext_sched_class, next->sched_class)) {
2930 			WARN_ON_ONCE(!static_branch_unlikely(&scx_ops_enq_last));
2931 			do_enqueue_task(rq, p, SCX_ENQ_LAST, -1);
2932 		} else {
2933 			do_enqueue_task(rq, p, 0, -1);
2934 		}
2935 	}
2936 
2937 	if (next && next->sched_class != &ext_sched_class)
2938 		switch_class(rq, next);
2939 }
2940 
2941 static struct task_struct *first_local_task(struct rq *rq)
2942 {
2943 	return list_first_entry_or_null(&rq->scx.local_dsq.list,
2944 					struct task_struct, scx.dsq_list.node);
2945 }
2946 
2947 static struct task_struct *pick_task_scx(struct rq *rq)
2948 {
2949 	struct task_struct *prev = rq->curr;
2950 	struct task_struct *p;
2951 	bool prev_on_scx = prev->sched_class == &ext_sched_class;
2952 	bool keep_prev = rq->scx.flags & SCX_RQ_BAL_KEEP;
2953 	bool kick_idle = false;
2954 
2955 	/*
2956 	 * WORKAROUND:
2957 	 *
2958 	 * %SCX_RQ_BAL_KEEP should be set iff $prev is on SCX as it must just
2959 	 * have gone through balance_scx(). Unfortunately, there currently is a
2960 	 * bug where fair could say yes on balance() but no on pick_task(),
2961 	 * which then ends up calling pick_task_scx() without preceding
2962 	 * balance_scx().
2963 	 *
2964 	 * Keep running @prev if possible and avoid stalling from entering idle
2965 	 * without balancing.
2966 	 *
2967 	 * Once fair is fixed, remove the workaround and trigger WARN_ON_ONCE()
2968 	 * if pick_task_scx() is called without preceding balance_scx().
2969 	 */
2970 	if (unlikely(rq->scx.flags & SCX_RQ_BAL_PENDING)) {
2971 		if (prev_on_scx) {
2972 			keep_prev = true;
2973 		} else {
2974 			keep_prev = false;
2975 			kick_idle = true;
2976 		}
2977 	} else if (unlikely(keep_prev && !prev_on_scx)) {
2978 		/* only allowed during transitions */
2979 		WARN_ON_ONCE(scx_ops_enable_state() == SCX_OPS_ENABLED);
2980 		keep_prev = false;
2981 	}
2982 
2983 	/*
2984 	 * If balance_scx() is telling us to keep running @prev, replenish slice
2985 	 * if necessary and keep running @prev. Otherwise, pop the first one
2986 	 * from the local DSQ.
2987 	 */
2988 	if (keep_prev) {
2989 		p = prev;
2990 		if (!p->scx.slice)
2991 			p->scx.slice = SCX_SLICE_DFL;
2992 	} else {
2993 		p = first_local_task(rq);
2994 		if (!p) {
2995 			if (kick_idle)
2996 				scx_bpf_kick_cpu(cpu_of(rq), SCX_KICK_IDLE);
2997 			return NULL;
2998 		}
2999 
3000 		if (unlikely(!p->scx.slice)) {
3001 			if (!scx_rq_bypassing(rq) && !scx_warned_zero_slice) {
3002 				printk_deferred(KERN_WARNING "sched_ext: %s[%d] has zero slice in %s()\n",
3003 						p->comm, p->pid, __func__);
3004 				scx_warned_zero_slice = true;
3005 			}
3006 			p->scx.slice = SCX_SLICE_DFL;
3007 		}
3008 	}
3009 
3010 	return p;
3011 }
3012 
3013 #ifdef CONFIG_SCHED_CORE
3014 /**
3015  * scx_prio_less - Task ordering for core-sched
3016  * @a: task A
3017  * @b: task B
3018  *
3019  * Core-sched is implemented as an additional scheduling layer on top of the
3020  * usual sched_class'es and needs to find out the expected task ordering. For
3021  * SCX, core-sched calls this function to interrogate the task ordering.
3022  *
3023  * Unless overridden by ops.core_sched_before(), @p->scx.core_sched_at is used
3024  * to implement the default task ordering. The older the timestamp, the higher
3025  * prority the task - the global FIFO ordering matching the default scheduling
3026  * behavior.
3027  *
3028  * When ops.core_sched_before() is enabled, @p->scx.core_sched_at is used to
3029  * implement FIFO ordering within each local DSQ. See pick_task_scx().
3030  */
3031 bool scx_prio_less(const struct task_struct *a, const struct task_struct *b,
3032 		   bool in_fi)
3033 {
3034 	/*
3035 	 * The const qualifiers are dropped from task_struct pointers when
3036 	 * calling ops.core_sched_before(). Accesses are controlled by the
3037 	 * verifier.
3038 	 */
3039 	if (SCX_HAS_OP(core_sched_before) && !scx_rq_bypassing(task_rq(a)))
3040 		return SCX_CALL_OP_2TASKS_RET(SCX_KF_REST, core_sched_before,
3041 					      (struct task_struct *)a,
3042 					      (struct task_struct *)b);
3043 	else
3044 		return time_after64(a->scx.core_sched_at, b->scx.core_sched_at);
3045 }
3046 #endif	/* CONFIG_SCHED_CORE */
3047 
3048 #ifdef CONFIG_SMP
3049 
3050 static bool test_and_clear_cpu_idle(int cpu)
3051 {
3052 #ifdef CONFIG_SCHED_SMT
3053 	/*
3054 	 * SMT mask should be cleared whether we can claim @cpu or not. The SMT
3055 	 * cluster is not wholly idle either way. This also prevents
3056 	 * scx_pick_idle_cpu() from getting caught in an infinite loop.
3057 	 */
3058 	if (sched_smt_active()) {
3059 		const struct cpumask *smt = cpu_smt_mask(cpu);
3060 
3061 		/*
3062 		 * If offline, @cpu is not its own sibling and
3063 		 * scx_pick_idle_cpu() can get caught in an infinite loop as
3064 		 * @cpu is never cleared from idle_masks.smt. Ensure that @cpu
3065 		 * is eventually cleared.
3066 		 */
3067 		if (cpumask_intersects(smt, idle_masks.smt))
3068 			cpumask_andnot(idle_masks.smt, idle_masks.smt, smt);
3069 		else if (cpumask_test_cpu(cpu, idle_masks.smt))
3070 			__cpumask_clear_cpu(cpu, idle_masks.smt);
3071 	}
3072 #endif
3073 	return cpumask_test_and_clear_cpu(cpu, idle_masks.cpu);
3074 }
3075 
3076 static s32 scx_pick_idle_cpu(const struct cpumask *cpus_allowed, u64 flags)
3077 {
3078 	int cpu;
3079 
3080 retry:
3081 	if (sched_smt_active()) {
3082 		cpu = cpumask_any_and_distribute(idle_masks.smt, cpus_allowed);
3083 		if (cpu < nr_cpu_ids)
3084 			goto found;
3085 
3086 		if (flags & SCX_PICK_IDLE_CORE)
3087 			return -EBUSY;
3088 	}
3089 
3090 	cpu = cpumask_any_and_distribute(idle_masks.cpu, cpus_allowed);
3091 	if (cpu >= nr_cpu_ids)
3092 		return -EBUSY;
3093 
3094 found:
3095 	if (test_and_clear_cpu_idle(cpu))
3096 		return cpu;
3097 	else
3098 		goto retry;
3099 }
3100 
3101 static s32 scx_select_cpu_dfl(struct task_struct *p, s32 prev_cpu,
3102 			      u64 wake_flags, bool *found)
3103 {
3104 	s32 cpu;
3105 
3106 	*found = false;
3107 
3108 	/*
3109 	 * If WAKE_SYNC, the waker's local DSQ is empty, and the system is
3110 	 * under utilized, wake up @p to the local DSQ of the waker. Checking
3111 	 * only for an empty local DSQ is insufficient as it could give the
3112 	 * wakee an unfair advantage when the system is oversaturated.
3113 	 * Checking only for the presence of idle CPUs is also insufficient as
3114 	 * the local DSQ of the waker could have tasks piled up on it even if
3115 	 * there is an idle core elsewhere on the system.
3116 	 */
3117 	cpu = smp_processor_id();
3118 	if ((wake_flags & SCX_WAKE_SYNC) &&
3119 	    !cpumask_empty(idle_masks.cpu) && !(current->flags & PF_EXITING) &&
3120 	    cpu_rq(cpu)->scx.local_dsq.nr == 0) {
3121 		if (cpumask_test_cpu(cpu, p->cpus_ptr))
3122 			goto cpu_found;
3123 	}
3124 
3125 	/*
3126 	 * If CPU has SMT, any wholly idle CPU is likely a better pick than
3127 	 * partially idle @prev_cpu.
3128 	 */
3129 	if (sched_smt_active()) {
3130 		if (cpumask_test_cpu(prev_cpu, idle_masks.smt) &&
3131 		    test_and_clear_cpu_idle(prev_cpu)) {
3132 			cpu = prev_cpu;
3133 			goto cpu_found;
3134 		}
3135 
3136 		cpu = scx_pick_idle_cpu(p->cpus_ptr, SCX_PICK_IDLE_CORE);
3137 		if (cpu >= 0)
3138 			goto cpu_found;
3139 	}
3140 
3141 	if (test_and_clear_cpu_idle(prev_cpu)) {
3142 		cpu = prev_cpu;
3143 		goto cpu_found;
3144 	}
3145 
3146 	cpu = scx_pick_idle_cpu(p->cpus_ptr, 0);
3147 	if (cpu >= 0)
3148 		goto cpu_found;
3149 
3150 	return prev_cpu;
3151 
3152 cpu_found:
3153 	*found = true;
3154 	return cpu;
3155 }
3156 
3157 static int select_task_rq_scx(struct task_struct *p, int prev_cpu, int wake_flags)
3158 {
3159 	/*
3160 	 * sched_exec() calls with %WF_EXEC when @p is about to exec(2) as it
3161 	 * can be a good migration opportunity with low cache and memory
3162 	 * footprint. Returning a CPU different than @prev_cpu triggers
3163 	 * immediate rq migration. However, for SCX, as the current rq
3164 	 * association doesn't dictate where the task is going to run, this
3165 	 * doesn't fit well. If necessary, we can later add a dedicated method
3166 	 * which can decide to preempt self to force it through the regular
3167 	 * scheduling path.
3168 	 */
3169 	if (unlikely(wake_flags & WF_EXEC))
3170 		return prev_cpu;
3171 
3172 	if (SCX_HAS_OP(select_cpu) && !scx_rq_bypassing(task_rq(p))) {
3173 		s32 cpu;
3174 		struct task_struct **ddsp_taskp;
3175 
3176 		ddsp_taskp = this_cpu_ptr(&direct_dispatch_task);
3177 		WARN_ON_ONCE(*ddsp_taskp);
3178 		*ddsp_taskp = p;
3179 
3180 		cpu = SCX_CALL_OP_TASK_RET(SCX_KF_ENQUEUE | SCX_KF_SELECT_CPU,
3181 					   select_cpu, p, prev_cpu, wake_flags);
3182 		*ddsp_taskp = NULL;
3183 		if (ops_cpu_valid(cpu, "from ops.select_cpu()"))
3184 			return cpu;
3185 		else
3186 			return prev_cpu;
3187 	} else {
3188 		bool found;
3189 		s32 cpu;
3190 
3191 		cpu = scx_select_cpu_dfl(p, prev_cpu, wake_flags, &found);
3192 		if (found) {
3193 			p->scx.slice = SCX_SLICE_DFL;
3194 			p->scx.ddsp_dsq_id = SCX_DSQ_LOCAL;
3195 		}
3196 		return cpu;
3197 	}
3198 }
3199 
3200 static void task_woken_scx(struct rq *rq, struct task_struct *p)
3201 {
3202 	run_deferred(rq);
3203 }
3204 
3205 static void set_cpus_allowed_scx(struct task_struct *p,
3206 				 struct affinity_context *ac)
3207 {
3208 	set_cpus_allowed_common(p, ac);
3209 
3210 	/*
3211 	 * The effective cpumask is stored in @p->cpus_ptr which may temporarily
3212 	 * differ from the configured one in @p->cpus_mask. Always tell the bpf
3213 	 * scheduler the effective one.
3214 	 *
3215 	 * Fine-grained memory write control is enforced by BPF making the const
3216 	 * designation pointless. Cast it away when calling the operation.
3217 	 */
3218 	if (SCX_HAS_OP(set_cpumask))
3219 		SCX_CALL_OP_TASK(SCX_KF_REST, set_cpumask, p,
3220 				 (struct cpumask *)p->cpus_ptr);
3221 }
3222 
3223 static void reset_idle_masks(void)
3224 {
3225 	/*
3226 	 * Consider all online cpus idle. Should converge to the actual state
3227 	 * quickly.
3228 	 */
3229 	cpumask_copy(idle_masks.cpu, cpu_online_mask);
3230 	cpumask_copy(idle_masks.smt, cpu_online_mask);
3231 }
3232 
3233 void __scx_update_idle(struct rq *rq, bool idle)
3234 {
3235 	int cpu = cpu_of(rq);
3236 
3237 	if (SCX_HAS_OP(update_idle) && !scx_rq_bypassing(rq)) {
3238 		SCX_CALL_OP(SCX_KF_REST, update_idle, cpu_of(rq), idle);
3239 		if (!static_branch_unlikely(&scx_builtin_idle_enabled))
3240 			return;
3241 	}
3242 
3243 	if (idle)
3244 		cpumask_set_cpu(cpu, idle_masks.cpu);
3245 	else
3246 		cpumask_clear_cpu(cpu, idle_masks.cpu);
3247 
3248 #ifdef CONFIG_SCHED_SMT
3249 	if (sched_smt_active()) {
3250 		const struct cpumask *smt = cpu_smt_mask(cpu);
3251 
3252 		if (idle) {
3253 			/*
3254 			 * idle_masks.smt handling is racy but that's fine as
3255 			 * it's only for optimization and self-correcting.
3256 			 */
3257 			for_each_cpu(cpu, smt) {
3258 				if (!cpumask_test_cpu(cpu, idle_masks.cpu))
3259 					return;
3260 			}
3261 			cpumask_or(idle_masks.smt, idle_masks.smt, smt);
3262 		} else {
3263 			cpumask_andnot(idle_masks.smt, idle_masks.smt, smt);
3264 		}
3265 	}
3266 #endif
3267 }
3268 
3269 static void handle_hotplug(struct rq *rq, bool online)
3270 {
3271 	int cpu = cpu_of(rq);
3272 
3273 	atomic_long_inc(&scx_hotplug_seq);
3274 
3275 	if (online && SCX_HAS_OP(cpu_online))
3276 		SCX_CALL_OP(SCX_KF_UNLOCKED, cpu_online, cpu);
3277 	else if (!online && SCX_HAS_OP(cpu_offline))
3278 		SCX_CALL_OP(SCX_KF_UNLOCKED, cpu_offline, cpu);
3279 	else
3280 		scx_ops_exit(SCX_ECODE_ACT_RESTART | SCX_ECODE_RSN_HOTPLUG,
3281 			     "cpu %d going %s, exiting scheduler", cpu,
3282 			     online ? "online" : "offline");
3283 }
3284 
3285 void scx_rq_activate(struct rq *rq)
3286 {
3287 	handle_hotplug(rq, true);
3288 }
3289 
3290 void scx_rq_deactivate(struct rq *rq)
3291 {
3292 	handle_hotplug(rq, false);
3293 }
3294 
3295 static void rq_online_scx(struct rq *rq)
3296 {
3297 	rq->scx.flags |= SCX_RQ_ONLINE;
3298 }
3299 
3300 static void rq_offline_scx(struct rq *rq)
3301 {
3302 	rq->scx.flags &= ~SCX_RQ_ONLINE;
3303 }
3304 
3305 #else	/* CONFIG_SMP */
3306 
3307 static bool test_and_clear_cpu_idle(int cpu) { return false; }
3308 static s32 scx_pick_idle_cpu(const struct cpumask *cpus_allowed, u64 flags) { return -EBUSY; }
3309 static void reset_idle_masks(void) {}
3310 
3311 #endif	/* CONFIG_SMP */
3312 
3313 static bool check_rq_for_timeouts(struct rq *rq)
3314 {
3315 	struct task_struct *p;
3316 	struct rq_flags rf;
3317 	bool timed_out = false;
3318 
3319 	rq_lock_irqsave(rq, &rf);
3320 	list_for_each_entry(p, &rq->scx.runnable_list, scx.runnable_node) {
3321 		unsigned long last_runnable = p->scx.runnable_at;
3322 
3323 		if (unlikely(time_after(jiffies,
3324 					last_runnable + scx_watchdog_timeout))) {
3325 			u32 dur_ms = jiffies_to_msecs(jiffies - last_runnable);
3326 
3327 			scx_ops_error_kind(SCX_EXIT_ERROR_STALL,
3328 					   "%s[%d] failed to run for %u.%03us",
3329 					   p->comm, p->pid,
3330 					   dur_ms / 1000, dur_ms % 1000);
3331 			timed_out = true;
3332 			break;
3333 		}
3334 	}
3335 	rq_unlock_irqrestore(rq, &rf);
3336 
3337 	return timed_out;
3338 }
3339 
3340 static void scx_watchdog_workfn(struct work_struct *work)
3341 {
3342 	int cpu;
3343 
3344 	WRITE_ONCE(scx_watchdog_timestamp, jiffies);
3345 
3346 	for_each_online_cpu(cpu) {
3347 		if (unlikely(check_rq_for_timeouts(cpu_rq(cpu))))
3348 			break;
3349 
3350 		cond_resched();
3351 	}
3352 	queue_delayed_work(system_unbound_wq, to_delayed_work(work),
3353 			   scx_watchdog_timeout / 2);
3354 }
3355 
3356 void scx_tick(struct rq *rq)
3357 {
3358 	unsigned long last_check;
3359 
3360 	if (!scx_enabled())
3361 		return;
3362 
3363 	last_check = READ_ONCE(scx_watchdog_timestamp);
3364 	if (unlikely(time_after(jiffies,
3365 				last_check + READ_ONCE(scx_watchdog_timeout)))) {
3366 		u32 dur_ms = jiffies_to_msecs(jiffies - last_check);
3367 
3368 		scx_ops_error_kind(SCX_EXIT_ERROR_STALL,
3369 				   "watchdog failed to check in for %u.%03us",
3370 				   dur_ms / 1000, dur_ms % 1000);
3371 	}
3372 
3373 	update_other_load_avgs(rq);
3374 }
3375 
3376 static void task_tick_scx(struct rq *rq, struct task_struct *curr, int queued)
3377 {
3378 	update_curr_scx(rq);
3379 
3380 	/*
3381 	 * While disabling, always resched and refresh core-sched timestamp as
3382 	 * we can't trust the slice management or ops.core_sched_before().
3383 	 */
3384 	if (scx_rq_bypassing(rq)) {
3385 		curr->scx.slice = 0;
3386 		touch_core_sched(rq, curr);
3387 	} else if (SCX_HAS_OP(tick)) {
3388 		SCX_CALL_OP(SCX_KF_REST, tick, curr);
3389 	}
3390 
3391 	if (!curr->scx.slice)
3392 		resched_curr(rq);
3393 }
3394 
3395 #ifdef CONFIG_EXT_GROUP_SCHED
3396 static struct cgroup *tg_cgrp(struct task_group *tg)
3397 {
3398 	/*
3399 	 * If CGROUP_SCHED is disabled, @tg is NULL. If @tg is an autogroup,
3400 	 * @tg->css.cgroup is NULL. In both cases, @tg can be treated as the
3401 	 * root cgroup.
3402 	 */
3403 	if (tg && tg->css.cgroup)
3404 		return tg->css.cgroup;
3405 	else
3406 		return &cgrp_dfl_root.cgrp;
3407 }
3408 
3409 #define SCX_INIT_TASK_ARGS_CGROUP(tg)		.cgroup = tg_cgrp(tg),
3410 
3411 #else	/* CONFIG_EXT_GROUP_SCHED */
3412 
3413 #define SCX_INIT_TASK_ARGS_CGROUP(tg)
3414 
3415 #endif	/* CONFIG_EXT_GROUP_SCHED */
3416 
3417 static enum scx_task_state scx_get_task_state(const struct task_struct *p)
3418 {
3419 	return (p->scx.flags & SCX_TASK_STATE_MASK) >> SCX_TASK_STATE_SHIFT;
3420 }
3421 
3422 static void scx_set_task_state(struct task_struct *p, enum scx_task_state state)
3423 {
3424 	enum scx_task_state prev_state = scx_get_task_state(p);
3425 	bool warn = false;
3426 
3427 	BUILD_BUG_ON(SCX_TASK_NR_STATES > (1 << SCX_TASK_STATE_BITS));
3428 
3429 	switch (state) {
3430 	case SCX_TASK_NONE:
3431 		break;
3432 	case SCX_TASK_INIT:
3433 		warn = prev_state != SCX_TASK_NONE;
3434 		break;
3435 	case SCX_TASK_READY:
3436 		warn = prev_state == SCX_TASK_NONE;
3437 		break;
3438 	case SCX_TASK_ENABLED:
3439 		warn = prev_state != SCX_TASK_READY;
3440 		break;
3441 	default:
3442 		warn = true;
3443 		return;
3444 	}
3445 
3446 	WARN_ONCE(warn, "sched_ext: Invalid task state transition %d -> %d for %s[%d]",
3447 		  prev_state, state, p->comm, p->pid);
3448 
3449 	p->scx.flags &= ~SCX_TASK_STATE_MASK;
3450 	p->scx.flags |= state << SCX_TASK_STATE_SHIFT;
3451 }
3452 
3453 static int scx_ops_init_task(struct task_struct *p, struct task_group *tg, bool fork)
3454 {
3455 	int ret;
3456 
3457 	p->scx.disallow = false;
3458 
3459 	if (SCX_HAS_OP(init_task)) {
3460 		struct scx_init_task_args args = {
3461 			SCX_INIT_TASK_ARGS_CGROUP(tg)
3462 			.fork = fork,
3463 		};
3464 
3465 		ret = SCX_CALL_OP_RET(SCX_KF_UNLOCKED, init_task, p, &args);
3466 		if (unlikely(ret)) {
3467 			ret = ops_sanitize_err("init_task", ret);
3468 			return ret;
3469 		}
3470 	}
3471 
3472 	scx_set_task_state(p, SCX_TASK_INIT);
3473 
3474 	if (p->scx.disallow) {
3475 		if (!fork) {
3476 			struct rq *rq;
3477 			struct rq_flags rf;
3478 
3479 			rq = task_rq_lock(p, &rf);
3480 
3481 			/*
3482 			 * We're in the load path and @p->policy will be applied
3483 			 * right after. Reverting @p->policy here and rejecting
3484 			 * %SCHED_EXT transitions from scx_check_setscheduler()
3485 			 * guarantees that if ops.init_task() sets @p->disallow,
3486 			 * @p can never be in SCX.
3487 			 */
3488 			if (p->policy == SCHED_EXT) {
3489 				p->policy = SCHED_NORMAL;
3490 				atomic_long_inc(&scx_nr_rejected);
3491 			}
3492 
3493 			task_rq_unlock(rq, p, &rf);
3494 		} else if (p->policy == SCHED_EXT) {
3495 			scx_ops_error("ops.init_task() set task->scx.disallow for %s[%d] during fork",
3496 				      p->comm, p->pid);
3497 		}
3498 	}
3499 
3500 	p->scx.flags |= SCX_TASK_RESET_RUNNABLE_AT;
3501 	return 0;
3502 }
3503 
3504 static void scx_ops_enable_task(struct task_struct *p)
3505 {
3506 	u32 weight;
3507 
3508 	lockdep_assert_rq_held(task_rq(p));
3509 
3510 	/*
3511 	 * Set the weight before calling ops.enable() so that the scheduler
3512 	 * doesn't see a stale value if they inspect the task struct.
3513 	 */
3514 	if (task_has_idle_policy(p))
3515 		weight = WEIGHT_IDLEPRIO;
3516 	else
3517 		weight = sched_prio_to_weight[p->static_prio - MAX_RT_PRIO];
3518 
3519 	p->scx.weight = sched_weight_to_cgroup(weight);
3520 
3521 	if (SCX_HAS_OP(enable))
3522 		SCX_CALL_OP_TASK(SCX_KF_REST, enable, p);
3523 	scx_set_task_state(p, SCX_TASK_ENABLED);
3524 
3525 	if (SCX_HAS_OP(set_weight))
3526 		SCX_CALL_OP_TASK(SCX_KF_REST, set_weight, p, p->scx.weight);
3527 }
3528 
3529 static void scx_ops_disable_task(struct task_struct *p)
3530 {
3531 	lockdep_assert_rq_held(task_rq(p));
3532 	WARN_ON_ONCE(scx_get_task_state(p) != SCX_TASK_ENABLED);
3533 
3534 	if (SCX_HAS_OP(disable))
3535 		SCX_CALL_OP(SCX_KF_REST, disable, p);
3536 	scx_set_task_state(p, SCX_TASK_READY);
3537 }
3538 
3539 static void scx_ops_exit_task(struct task_struct *p)
3540 {
3541 	struct scx_exit_task_args args = {
3542 		.cancelled = false,
3543 	};
3544 
3545 	lockdep_assert_rq_held(task_rq(p));
3546 
3547 	switch (scx_get_task_state(p)) {
3548 	case SCX_TASK_NONE:
3549 		return;
3550 	case SCX_TASK_INIT:
3551 		args.cancelled = true;
3552 		break;
3553 	case SCX_TASK_READY:
3554 		break;
3555 	case SCX_TASK_ENABLED:
3556 		scx_ops_disable_task(p);
3557 		break;
3558 	default:
3559 		WARN_ON_ONCE(true);
3560 		return;
3561 	}
3562 
3563 	if (SCX_HAS_OP(exit_task))
3564 		SCX_CALL_OP(SCX_KF_REST, exit_task, p, &args);
3565 	scx_set_task_state(p, SCX_TASK_NONE);
3566 }
3567 
3568 void init_scx_entity(struct sched_ext_entity *scx)
3569 {
3570 	memset(scx, 0, sizeof(*scx));
3571 	INIT_LIST_HEAD(&scx->dsq_list.node);
3572 	RB_CLEAR_NODE(&scx->dsq_priq);
3573 	scx->sticky_cpu = -1;
3574 	scx->holding_cpu = -1;
3575 	INIT_LIST_HEAD(&scx->runnable_node);
3576 	scx->runnable_at = jiffies;
3577 	scx->ddsp_dsq_id = SCX_DSQ_INVALID;
3578 	scx->slice = SCX_SLICE_DFL;
3579 }
3580 
3581 void scx_pre_fork(struct task_struct *p)
3582 {
3583 	/*
3584 	 * BPF scheduler enable/disable paths want to be able to iterate and
3585 	 * update all tasks which can become complex when racing forks. As
3586 	 * enable/disable are very cold paths, let's use a percpu_rwsem to
3587 	 * exclude forks.
3588 	 */
3589 	percpu_down_read(&scx_fork_rwsem);
3590 }
3591 
3592 int scx_fork(struct task_struct *p)
3593 {
3594 	percpu_rwsem_assert_held(&scx_fork_rwsem);
3595 
3596 	if (scx_ops_init_task_enabled)
3597 		return scx_ops_init_task(p, task_group(p), true);
3598 	else
3599 		return 0;
3600 }
3601 
3602 void scx_post_fork(struct task_struct *p)
3603 {
3604 	if (scx_ops_init_task_enabled) {
3605 		scx_set_task_state(p, SCX_TASK_READY);
3606 
3607 		/*
3608 		 * Enable the task immediately if it's running on sched_ext.
3609 		 * Otherwise, it'll be enabled in switching_to_scx() if and
3610 		 * when it's ever configured to run with a SCHED_EXT policy.
3611 		 */
3612 		if (p->sched_class == &ext_sched_class) {
3613 			struct rq_flags rf;
3614 			struct rq *rq;
3615 
3616 			rq = task_rq_lock(p, &rf);
3617 			scx_ops_enable_task(p);
3618 			task_rq_unlock(rq, p, &rf);
3619 		}
3620 	}
3621 
3622 	spin_lock_irq(&scx_tasks_lock);
3623 	list_add_tail(&p->scx.tasks_node, &scx_tasks);
3624 	spin_unlock_irq(&scx_tasks_lock);
3625 
3626 	percpu_up_read(&scx_fork_rwsem);
3627 }
3628 
3629 void scx_cancel_fork(struct task_struct *p)
3630 {
3631 	if (scx_enabled()) {
3632 		struct rq *rq;
3633 		struct rq_flags rf;
3634 
3635 		rq = task_rq_lock(p, &rf);
3636 		WARN_ON_ONCE(scx_get_task_state(p) >= SCX_TASK_READY);
3637 		scx_ops_exit_task(p);
3638 		task_rq_unlock(rq, p, &rf);
3639 	}
3640 
3641 	percpu_up_read(&scx_fork_rwsem);
3642 }
3643 
3644 void sched_ext_free(struct task_struct *p)
3645 {
3646 	unsigned long flags;
3647 
3648 	spin_lock_irqsave(&scx_tasks_lock, flags);
3649 	list_del_init(&p->scx.tasks_node);
3650 	spin_unlock_irqrestore(&scx_tasks_lock, flags);
3651 
3652 	/*
3653 	 * @p is off scx_tasks and wholly ours. scx_ops_enable()'s READY ->
3654 	 * ENABLED transitions can't race us. Disable ops for @p.
3655 	 */
3656 	if (scx_get_task_state(p) != SCX_TASK_NONE) {
3657 		struct rq_flags rf;
3658 		struct rq *rq;
3659 
3660 		rq = task_rq_lock(p, &rf);
3661 		scx_ops_exit_task(p);
3662 		task_rq_unlock(rq, p, &rf);
3663 	}
3664 }
3665 
3666 static void reweight_task_scx(struct rq *rq, struct task_struct *p,
3667 			      const struct load_weight *lw)
3668 {
3669 	lockdep_assert_rq_held(task_rq(p));
3670 
3671 	p->scx.weight = sched_weight_to_cgroup(scale_load_down(lw->weight));
3672 	if (SCX_HAS_OP(set_weight))
3673 		SCX_CALL_OP_TASK(SCX_KF_REST, set_weight, p, p->scx.weight);
3674 }
3675 
3676 static void prio_changed_scx(struct rq *rq, struct task_struct *p, int oldprio)
3677 {
3678 }
3679 
3680 static void switching_to_scx(struct rq *rq, struct task_struct *p)
3681 {
3682 	scx_ops_enable_task(p);
3683 
3684 	/*
3685 	 * set_cpus_allowed_scx() is not called while @p is associated with a
3686 	 * different scheduler class. Keep the BPF scheduler up-to-date.
3687 	 */
3688 	if (SCX_HAS_OP(set_cpumask))
3689 		SCX_CALL_OP_TASK(SCX_KF_REST, set_cpumask, p,
3690 				 (struct cpumask *)p->cpus_ptr);
3691 }
3692 
3693 static void switched_from_scx(struct rq *rq, struct task_struct *p)
3694 {
3695 	scx_ops_disable_task(p);
3696 }
3697 
3698 static void wakeup_preempt_scx(struct rq *rq, struct task_struct *p,int wake_flags) {}
3699 static void switched_to_scx(struct rq *rq, struct task_struct *p) {}
3700 
3701 int scx_check_setscheduler(struct task_struct *p, int policy)
3702 {
3703 	lockdep_assert_rq_held(task_rq(p));
3704 
3705 	/* if disallow, reject transitioning into SCX */
3706 	if (scx_enabled() && READ_ONCE(p->scx.disallow) &&
3707 	    p->policy != policy && policy == SCHED_EXT)
3708 		return -EACCES;
3709 
3710 	return 0;
3711 }
3712 
3713 #ifdef CONFIG_NO_HZ_FULL
3714 bool scx_can_stop_tick(struct rq *rq)
3715 {
3716 	struct task_struct *p = rq->curr;
3717 
3718 	if (scx_rq_bypassing(rq))
3719 		return false;
3720 
3721 	if (p->sched_class != &ext_sched_class)
3722 		return true;
3723 
3724 	/*
3725 	 * @rq can dispatch from different DSQs, so we can't tell whether it
3726 	 * needs the tick or not by looking at nr_running. Allow stopping ticks
3727 	 * iff the BPF scheduler indicated so. See set_next_task_scx().
3728 	 */
3729 	return rq->scx.flags & SCX_RQ_CAN_STOP_TICK;
3730 }
3731 #endif
3732 
3733 #ifdef CONFIG_EXT_GROUP_SCHED
3734 
3735 DEFINE_STATIC_PERCPU_RWSEM(scx_cgroup_rwsem);
3736 static bool scx_cgroup_enabled;
3737 static bool cgroup_warned_missing_weight;
3738 static bool cgroup_warned_missing_idle;
3739 
3740 static void scx_cgroup_warn_missing_weight(struct task_group *tg)
3741 {
3742 	if (scx_ops_enable_state() == SCX_OPS_DISABLED ||
3743 	    cgroup_warned_missing_weight)
3744 		return;
3745 
3746 	if ((scx_ops.flags & SCX_OPS_HAS_CGROUP_WEIGHT) || !tg->css.parent)
3747 		return;
3748 
3749 	pr_warn("sched_ext: \"%s\" does not implement cgroup cpu.weight\n",
3750 		scx_ops.name);
3751 	cgroup_warned_missing_weight = true;
3752 }
3753 
3754 static void scx_cgroup_warn_missing_idle(struct task_group *tg)
3755 {
3756 	if (!scx_cgroup_enabled || cgroup_warned_missing_idle)
3757 		return;
3758 
3759 	if (!tg->idle)
3760 		return;
3761 
3762 	pr_warn("sched_ext: \"%s\" does not implement cgroup cpu.idle\n",
3763 		scx_ops.name);
3764 	cgroup_warned_missing_idle = true;
3765 }
3766 
3767 int scx_tg_online(struct task_group *tg)
3768 {
3769 	int ret = 0;
3770 
3771 	WARN_ON_ONCE(tg->scx_flags & (SCX_TG_ONLINE | SCX_TG_INITED));
3772 
3773 	percpu_down_read(&scx_cgroup_rwsem);
3774 
3775 	scx_cgroup_warn_missing_weight(tg);
3776 
3777 	if (scx_cgroup_enabled) {
3778 		if (SCX_HAS_OP(cgroup_init)) {
3779 			struct scx_cgroup_init_args args =
3780 				{ .weight = tg->scx_weight };
3781 
3782 			ret = SCX_CALL_OP_RET(SCX_KF_UNLOCKED, cgroup_init,
3783 					      tg->css.cgroup, &args);
3784 			if (ret)
3785 				ret = ops_sanitize_err("cgroup_init", ret);
3786 		}
3787 		if (ret == 0)
3788 			tg->scx_flags |= SCX_TG_ONLINE | SCX_TG_INITED;
3789 	} else {
3790 		tg->scx_flags |= SCX_TG_ONLINE;
3791 	}
3792 
3793 	percpu_up_read(&scx_cgroup_rwsem);
3794 	return ret;
3795 }
3796 
3797 void scx_tg_offline(struct task_group *tg)
3798 {
3799 	WARN_ON_ONCE(!(tg->scx_flags & SCX_TG_ONLINE));
3800 
3801 	percpu_down_read(&scx_cgroup_rwsem);
3802 
3803 	if (SCX_HAS_OP(cgroup_exit) && (tg->scx_flags & SCX_TG_INITED))
3804 		SCX_CALL_OP(SCX_KF_UNLOCKED, cgroup_exit, tg->css.cgroup);
3805 	tg->scx_flags &= ~(SCX_TG_ONLINE | SCX_TG_INITED);
3806 
3807 	percpu_up_read(&scx_cgroup_rwsem);
3808 }
3809 
3810 int scx_cgroup_can_attach(struct cgroup_taskset *tset)
3811 {
3812 	struct cgroup_subsys_state *css;
3813 	struct task_struct *p;
3814 	int ret;
3815 
3816 	/* released in scx_finish/cancel_attach() */
3817 	percpu_down_read(&scx_cgroup_rwsem);
3818 
3819 	if (!scx_cgroup_enabled)
3820 		return 0;
3821 
3822 	cgroup_taskset_for_each(p, css, tset) {
3823 		struct cgroup *from = tg_cgrp(task_group(p));
3824 		struct cgroup *to = tg_cgrp(css_tg(css));
3825 
3826 		WARN_ON_ONCE(p->scx.cgrp_moving_from);
3827 
3828 		/*
3829 		 * sched_move_task() omits identity migrations. Let's match the
3830 		 * behavior so that ops.cgroup_prep_move() and ops.cgroup_move()
3831 		 * always match one-to-one.
3832 		 */
3833 		if (from == to)
3834 			continue;
3835 
3836 		if (SCX_HAS_OP(cgroup_prep_move)) {
3837 			ret = SCX_CALL_OP_RET(SCX_KF_UNLOCKED, cgroup_prep_move,
3838 					      p, from, css->cgroup);
3839 			if (ret)
3840 				goto err;
3841 		}
3842 
3843 		p->scx.cgrp_moving_from = from;
3844 	}
3845 
3846 	return 0;
3847 
3848 err:
3849 	cgroup_taskset_for_each(p, css, tset) {
3850 		if (SCX_HAS_OP(cgroup_cancel_move) && p->scx.cgrp_moving_from)
3851 			SCX_CALL_OP(SCX_KF_UNLOCKED, cgroup_cancel_move, p,
3852 				    p->scx.cgrp_moving_from, css->cgroup);
3853 		p->scx.cgrp_moving_from = NULL;
3854 	}
3855 
3856 	percpu_up_read(&scx_cgroup_rwsem);
3857 	return ops_sanitize_err("cgroup_prep_move", ret);
3858 }
3859 
3860 void scx_move_task(struct task_struct *p)
3861 {
3862 	if (!scx_cgroup_enabled)
3863 		return;
3864 
3865 	/*
3866 	 * We're called from sched_move_task() which handles both cgroup and
3867 	 * autogroup moves. Ignore the latter.
3868 	 *
3869 	 * Also ignore exiting tasks, because in the exit path tasks transition
3870 	 * from the autogroup to the root group, so task_group_is_autogroup()
3871 	 * alone isn't able to catch exiting autogroup tasks. This is safe for
3872 	 * cgroup_move(), because cgroup migrations never happen for PF_EXITING
3873 	 * tasks.
3874 	 */
3875 	if (task_group_is_autogroup(task_group(p)) || (p->flags & PF_EXITING))
3876 		return;
3877 
3878 	/*
3879 	 * @p must have ops.cgroup_prep_move() called on it and thus
3880 	 * cgrp_moving_from set.
3881 	 */
3882 	if (SCX_HAS_OP(cgroup_move) && !WARN_ON_ONCE(!p->scx.cgrp_moving_from))
3883 		SCX_CALL_OP_TASK(SCX_KF_UNLOCKED, cgroup_move, p,
3884 			p->scx.cgrp_moving_from, tg_cgrp(task_group(p)));
3885 	p->scx.cgrp_moving_from = NULL;
3886 }
3887 
3888 void scx_cgroup_finish_attach(void)
3889 {
3890 	percpu_up_read(&scx_cgroup_rwsem);
3891 }
3892 
3893 void scx_cgroup_cancel_attach(struct cgroup_taskset *tset)
3894 {
3895 	struct cgroup_subsys_state *css;
3896 	struct task_struct *p;
3897 
3898 	if (!scx_cgroup_enabled)
3899 		goto out_unlock;
3900 
3901 	cgroup_taskset_for_each(p, css, tset) {
3902 		if (SCX_HAS_OP(cgroup_cancel_move) && p->scx.cgrp_moving_from)
3903 			SCX_CALL_OP(SCX_KF_UNLOCKED, cgroup_cancel_move, p,
3904 				    p->scx.cgrp_moving_from, css->cgroup);
3905 		p->scx.cgrp_moving_from = NULL;
3906 	}
3907 out_unlock:
3908 	percpu_up_read(&scx_cgroup_rwsem);
3909 }
3910 
3911 void scx_group_set_weight(struct task_group *tg, unsigned long weight)
3912 {
3913 	percpu_down_read(&scx_cgroup_rwsem);
3914 
3915 	if (scx_cgroup_enabled && tg->scx_weight != weight) {
3916 		if (SCX_HAS_OP(cgroup_set_weight))
3917 			SCX_CALL_OP(SCX_KF_UNLOCKED, cgroup_set_weight,
3918 				    tg_cgrp(tg), weight);
3919 		tg->scx_weight = weight;
3920 	}
3921 
3922 	percpu_up_read(&scx_cgroup_rwsem);
3923 }
3924 
3925 void scx_group_set_idle(struct task_group *tg, bool idle)
3926 {
3927 	percpu_down_read(&scx_cgroup_rwsem);
3928 	scx_cgroup_warn_missing_idle(tg);
3929 	percpu_up_read(&scx_cgroup_rwsem);
3930 }
3931 
3932 static void scx_cgroup_lock(void)
3933 {
3934 	percpu_down_write(&scx_cgroup_rwsem);
3935 }
3936 
3937 static void scx_cgroup_unlock(void)
3938 {
3939 	percpu_up_write(&scx_cgroup_rwsem);
3940 }
3941 
3942 #else	/* CONFIG_EXT_GROUP_SCHED */
3943 
3944 static inline void scx_cgroup_lock(void) {}
3945 static inline void scx_cgroup_unlock(void) {}
3946 
3947 #endif	/* CONFIG_EXT_GROUP_SCHED */
3948 
3949 /*
3950  * Omitted operations:
3951  *
3952  * - wakeup_preempt: NOOP as it isn't useful in the wakeup path because the task
3953  *   isn't tied to the CPU at that point. Preemption is implemented by resetting
3954  *   the victim task's slice to 0 and triggering reschedule on the target CPU.
3955  *
3956  * - migrate_task_rq: Unnecessary as task to cpu mapping is transient.
3957  *
3958  * - task_fork/dead: We need fork/dead notifications for all tasks regardless of
3959  *   their current sched_class. Call them directly from sched core instead.
3960  */
3961 DEFINE_SCHED_CLASS(ext) = {
3962 	.enqueue_task		= enqueue_task_scx,
3963 	.dequeue_task		= dequeue_task_scx,
3964 	.yield_task		= yield_task_scx,
3965 	.yield_to_task		= yield_to_task_scx,
3966 
3967 	.wakeup_preempt		= wakeup_preempt_scx,
3968 
3969 	.balance		= balance_scx,
3970 	.pick_task		= pick_task_scx,
3971 
3972 	.put_prev_task		= put_prev_task_scx,
3973 	.set_next_task		= set_next_task_scx,
3974 
3975 #ifdef CONFIG_SMP
3976 	.select_task_rq		= select_task_rq_scx,
3977 	.task_woken		= task_woken_scx,
3978 	.set_cpus_allowed	= set_cpus_allowed_scx,
3979 
3980 	.rq_online		= rq_online_scx,
3981 	.rq_offline		= rq_offline_scx,
3982 #endif
3983 
3984 	.task_tick		= task_tick_scx,
3985 
3986 	.switching_to		= switching_to_scx,
3987 	.switched_from		= switched_from_scx,
3988 	.switched_to		= switched_to_scx,
3989 	.reweight_task		= reweight_task_scx,
3990 	.prio_changed		= prio_changed_scx,
3991 
3992 	.update_curr		= update_curr_scx,
3993 
3994 #ifdef CONFIG_UCLAMP_TASK
3995 	.uclamp_enabled		= 1,
3996 #endif
3997 };
3998 
3999 static void init_dsq(struct scx_dispatch_q *dsq, u64 dsq_id)
4000 {
4001 	memset(dsq, 0, sizeof(*dsq));
4002 
4003 	raw_spin_lock_init(&dsq->lock);
4004 	INIT_LIST_HEAD(&dsq->list);
4005 	dsq->id = dsq_id;
4006 }
4007 
4008 static struct scx_dispatch_q *create_dsq(u64 dsq_id, int node)
4009 {
4010 	struct scx_dispatch_q *dsq;
4011 	int ret;
4012 
4013 	if (dsq_id & SCX_DSQ_FLAG_BUILTIN)
4014 		return ERR_PTR(-EINVAL);
4015 
4016 	dsq = kmalloc_node(sizeof(*dsq), GFP_KERNEL, node);
4017 	if (!dsq)
4018 		return ERR_PTR(-ENOMEM);
4019 
4020 	init_dsq(dsq, dsq_id);
4021 
4022 	ret = rhashtable_insert_fast(&dsq_hash, &dsq->hash_node,
4023 				     dsq_hash_params);
4024 	if (ret) {
4025 		kfree(dsq);
4026 		return ERR_PTR(ret);
4027 	}
4028 	return dsq;
4029 }
4030 
4031 static void free_dsq_irq_workfn(struct irq_work *irq_work)
4032 {
4033 	struct llist_node *to_free = llist_del_all(&dsqs_to_free);
4034 	struct scx_dispatch_q *dsq, *tmp_dsq;
4035 
4036 	llist_for_each_entry_safe(dsq, tmp_dsq, to_free, free_node)
4037 		kfree_rcu(dsq, rcu);
4038 }
4039 
4040 static DEFINE_IRQ_WORK(free_dsq_irq_work, free_dsq_irq_workfn);
4041 
4042 static void destroy_dsq(u64 dsq_id)
4043 {
4044 	struct scx_dispatch_q *dsq;
4045 	unsigned long flags;
4046 
4047 	rcu_read_lock();
4048 
4049 	dsq = find_user_dsq(dsq_id);
4050 	if (!dsq)
4051 		goto out_unlock_rcu;
4052 
4053 	raw_spin_lock_irqsave(&dsq->lock, flags);
4054 
4055 	if (dsq->nr) {
4056 		scx_ops_error("attempting to destroy in-use dsq 0x%016llx (nr=%u)",
4057 			      dsq->id, dsq->nr);
4058 		goto out_unlock_dsq;
4059 	}
4060 
4061 	if (rhashtable_remove_fast(&dsq_hash, &dsq->hash_node, dsq_hash_params))
4062 		goto out_unlock_dsq;
4063 
4064 	/*
4065 	 * Mark dead by invalidating ->id to prevent dispatch_enqueue() from
4066 	 * queueing more tasks. As this function can be called from anywhere,
4067 	 * freeing is bounced through an irq work to avoid nesting RCU
4068 	 * operations inside scheduler locks.
4069 	 */
4070 	dsq->id = SCX_DSQ_INVALID;
4071 	llist_add(&dsq->free_node, &dsqs_to_free);
4072 	irq_work_queue(&free_dsq_irq_work);
4073 
4074 out_unlock_dsq:
4075 	raw_spin_unlock_irqrestore(&dsq->lock, flags);
4076 out_unlock_rcu:
4077 	rcu_read_unlock();
4078 }
4079 
4080 #ifdef CONFIG_EXT_GROUP_SCHED
4081 static void scx_cgroup_exit(void)
4082 {
4083 	struct cgroup_subsys_state *css;
4084 
4085 	percpu_rwsem_assert_held(&scx_cgroup_rwsem);
4086 
4087 	scx_cgroup_enabled = false;
4088 
4089 	/*
4090 	 * scx_tg_on/offline() are excluded through scx_cgroup_rwsem. If we walk
4091 	 * cgroups and exit all the inited ones, all online cgroups are exited.
4092 	 */
4093 	rcu_read_lock();
4094 	css_for_each_descendant_post(css, &root_task_group.css) {
4095 		struct task_group *tg = css_tg(css);
4096 
4097 		if (!(tg->scx_flags & SCX_TG_INITED))
4098 			continue;
4099 		tg->scx_flags &= ~SCX_TG_INITED;
4100 
4101 		if (!scx_ops.cgroup_exit)
4102 			continue;
4103 
4104 		if (WARN_ON_ONCE(!css_tryget(css)))
4105 			continue;
4106 		rcu_read_unlock();
4107 
4108 		SCX_CALL_OP(SCX_KF_UNLOCKED, cgroup_exit, css->cgroup);
4109 
4110 		rcu_read_lock();
4111 		css_put(css);
4112 	}
4113 	rcu_read_unlock();
4114 }
4115 
4116 static int scx_cgroup_init(void)
4117 {
4118 	struct cgroup_subsys_state *css;
4119 	int ret;
4120 
4121 	percpu_rwsem_assert_held(&scx_cgroup_rwsem);
4122 
4123 	cgroup_warned_missing_weight = false;
4124 	cgroup_warned_missing_idle = false;
4125 
4126 	/*
4127 	 * scx_tg_on/offline() are excluded thorugh scx_cgroup_rwsem. If we walk
4128 	 * cgroups and init, all online cgroups are initialized.
4129 	 */
4130 	rcu_read_lock();
4131 	css_for_each_descendant_pre(css, &root_task_group.css) {
4132 		struct task_group *tg = css_tg(css);
4133 		struct scx_cgroup_init_args args = { .weight = tg->scx_weight };
4134 
4135 		scx_cgroup_warn_missing_weight(tg);
4136 		scx_cgroup_warn_missing_idle(tg);
4137 
4138 		if ((tg->scx_flags &
4139 		     (SCX_TG_ONLINE | SCX_TG_INITED)) != SCX_TG_ONLINE)
4140 			continue;
4141 
4142 		if (!scx_ops.cgroup_init) {
4143 			tg->scx_flags |= SCX_TG_INITED;
4144 			continue;
4145 		}
4146 
4147 		if (WARN_ON_ONCE(!css_tryget(css)))
4148 			continue;
4149 		rcu_read_unlock();
4150 
4151 		ret = SCX_CALL_OP_RET(SCX_KF_UNLOCKED, cgroup_init,
4152 				      css->cgroup, &args);
4153 		if (ret) {
4154 			css_put(css);
4155 			scx_ops_error("ops.cgroup_init() failed (%d)", ret);
4156 			return ret;
4157 		}
4158 		tg->scx_flags |= SCX_TG_INITED;
4159 
4160 		rcu_read_lock();
4161 		css_put(css);
4162 	}
4163 	rcu_read_unlock();
4164 
4165 	WARN_ON_ONCE(scx_cgroup_enabled);
4166 	scx_cgroup_enabled = true;
4167 
4168 	return 0;
4169 }
4170 
4171 #else
4172 static void scx_cgroup_exit(void) {}
4173 static int scx_cgroup_init(void) { return 0; }
4174 #endif
4175 
4176 
4177 /********************************************************************************
4178  * Sysfs interface and ops enable/disable.
4179  */
4180 
4181 #define SCX_ATTR(_name)								\
4182 	static struct kobj_attribute scx_attr_##_name = {			\
4183 		.attr = { .name = __stringify(_name), .mode = 0444 },		\
4184 		.show = scx_attr_##_name##_show,				\
4185 	}
4186 
4187 static ssize_t scx_attr_state_show(struct kobject *kobj,
4188 				   struct kobj_attribute *ka, char *buf)
4189 {
4190 	return sysfs_emit(buf, "%s\n",
4191 			  scx_ops_enable_state_str[scx_ops_enable_state()]);
4192 }
4193 SCX_ATTR(state);
4194 
4195 static ssize_t scx_attr_switch_all_show(struct kobject *kobj,
4196 					struct kobj_attribute *ka, char *buf)
4197 {
4198 	return sysfs_emit(buf, "%d\n", READ_ONCE(scx_switching_all));
4199 }
4200 SCX_ATTR(switch_all);
4201 
4202 static ssize_t scx_attr_nr_rejected_show(struct kobject *kobj,
4203 					 struct kobj_attribute *ka, char *buf)
4204 {
4205 	return sysfs_emit(buf, "%ld\n", atomic_long_read(&scx_nr_rejected));
4206 }
4207 SCX_ATTR(nr_rejected);
4208 
4209 static ssize_t scx_attr_hotplug_seq_show(struct kobject *kobj,
4210 					 struct kobj_attribute *ka, char *buf)
4211 {
4212 	return sysfs_emit(buf, "%ld\n", atomic_long_read(&scx_hotplug_seq));
4213 }
4214 SCX_ATTR(hotplug_seq);
4215 
4216 static ssize_t scx_attr_enable_seq_show(struct kobject *kobj,
4217 					struct kobj_attribute *ka, char *buf)
4218 {
4219 	return sysfs_emit(buf, "%ld\n", atomic_long_read(&scx_enable_seq));
4220 }
4221 SCX_ATTR(enable_seq);
4222 
4223 static struct attribute *scx_global_attrs[] = {
4224 	&scx_attr_state.attr,
4225 	&scx_attr_switch_all.attr,
4226 	&scx_attr_nr_rejected.attr,
4227 	&scx_attr_hotplug_seq.attr,
4228 	&scx_attr_enable_seq.attr,
4229 	NULL,
4230 };
4231 
4232 static const struct attribute_group scx_global_attr_group = {
4233 	.attrs = scx_global_attrs,
4234 };
4235 
4236 static void scx_kobj_release(struct kobject *kobj)
4237 {
4238 	kfree(kobj);
4239 }
4240 
4241 static ssize_t scx_attr_ops_show(struct kobject *kobj,
4242 				 struct kobj_attribute *ka, char *buf)
4243 {
4244 	return sysfs_emit(buf, "%s\n", scx_ops.name);
4245 }
4246 SCX_ATTR(ops);
4247 
4248 static struct attribute *scx_sched_attrs[] = {
4249 	&scx_attr_ops.attr,
4250 	NULL,
4251 };
4252 ATTRIBUTE_GROUPS(scx_sched);
4253 
4254 static const struct kobj_type scx_ktype = {
4255 	.release = scx_kobj_release,
4256 	.sysfs_ops = &kobj_sysfs_ops,
4257 	.default_groups = scx_sched_groups,
4258 };
4259 
4260 static int scx_uevent(const struct kobject *kobj, struct kobj_uevent_env *env)
4261 {
4262 	return add_uevent_var(env, "SCXOPS=%s", scx_ops.name);
4263 }
4264 
4265 static const struct kset_uevent_ops scx_uevent_ops = {
4266 	.uevent = scx_uevent,
4267 };
4268 
4269 /*
4270  * Used by sched_fork() and __setscheduler_prio() to pick the matching
4271  * sched_class. dl/rt are already handled.
4272  */
4273 bool task_should_scx(int policy)
4274 {
4275 	if (!scx_enabled() ||
4276 	    unlikely(scx_ops_enable_state() == SCX_OPS_DISABLING))
4277 		return false;
4278 	if (READ_ONCE(scx_switching_all))
4279 		return true;
4280 	return policy == SCHED_EXT;
4281 }
4282 
4283 /**
4284  * scx_ops_bypass - [Un]bypass scx_ops and guarantee forward progress
4285  *
4286  * Bypassing guarantees that all runnable tasks make forward progress without
4287  * trusting the BPF scheduler. We can't grab any mutexes or rwsems as they might
4288  * be held by tasks that the BPF scheduler is forgetting to run, which
4289  * unfortunately also excludes toggling the static branches.
4290  *
4291  * Let's work around by overriding a couple ops and modifying behaviors based on
4292  * the DISABLING state and then cycling the queued tasks through dequeue/enqueue
4293  * to force global FIFO scheduling.
4294  *
4295  * - ops.select_cpu() is ignored and the default select_cpu() is used.
4296  *
4297  * - ops.enqueue() is ignored and tasks are queued in simple global FIFO order.
4298  *   %SCX_OPS_ENQ_LAST is also ignored.
4299  *
4300  * - ops.dispatch() is ignored.
4301  *
4302  * - balance_scx() does not set %SCX_RQ_BAL_KEEP on non-zero slice as slice
4303  *   can't be trusted. Whenever a tick triggers, the running task is rotated to
4304  *   the tail of the queue with core_sched_at touched.
4305  *
4306  * - pick_next_task() suppresses zero slice warning.
4307  *
4308  * - scx_bpf_kick_cpu() is disabled to avoid irq_work malfunction during PM
4309  *   operations.
4310  *
4311  * - scx_prio_less() reverts to the default core_sched_at order.
4312  */
4313 static void scx_ops_bypass(bool bypass)
4314 {
4315 	int cpu;
4316 	unsigned long flags;
4317 
4318 	raw_spin_lock_irqsave(&__scx_ops_bypass_lock, flags);
4319 	if (bypass) {
4320 		scx_ops_bypass_depth++;
4321 		WARN_ON_ONCE(scx_ops_bypass_depth <= 0);
4322 		if (scx_ops_bypass_depth != 1)
4323 			goto unlock;
4324 	} else {
4325 		scx_ops_bypass_depth--;
4326 		WARN_ON_ONCE(scx_ops_bypass_depth < 0);
4327 		if (scx_ops_bypass_depth != 0)
4328 			goto unlock;
4329 	}
4330 
4331 	/*
4332 	 * No task property is changing. We just need to make sure all currently
4333 	 * queued tasks are re-queued according to the new scx_rq_bypassing()
4334 	 * state. As an optimization, walk each rq's runnable_list instead of
4335 	 * the scx_tasks list.
4336 	 *
4337 	 * This function can't trust the scheduler and thus can't use
4338 	 * cpus_read_lock(). Walk all possible CPUs instead of online.
4339 	 */
4340 	for_each_possible_cpu(cpu) {
4341 		struct rq *rq = cpu_rq(cpu);
4342 		struct rq_flags rf;
4343 		struct task_struct *p, *n;
4344 
4345 		rq_lock(rq, &rf);
4346 
4347 		if (bypass) {
4348 			WARN_ON_ONCE(rq->scx.flags & SCX_RQ_BYPASSING);
4349 			rq->scx.flags |= SCX_RQ_BYPASSING;
4350 		} else {
4351 			WARN_ON_ONCE(!(rq->scx.flags & SCX_RQ_BYPASSING));
4352 			rq->scx.flags &= ~SCX_RQ_BYPASSING;
4353 		}
4354 
4355 		/*
4356 		 * We need to guarantee that no tasks are on the BPF scheduler
4357 		 * while bypassing. Either we see enabled or the enable path
4358 		 * sees scx_rq_bypassing() before moving tasks to SCX.
4359 		 */
4360 		if (!scx_enabled()) {
4361 			rq_unlock_irqrestore(rq, &rf);
4362 			continue;
4363 		}
4364 
4365 		/*
4366 		 * The use of list_for_each_entry_safe_reverse() is required
4367 		 * because each task is going to be removed from and added back
4368 		 * to the runnable_list during iteration. Because they're added
4369 		 * to the tail of the list, safe reverse iteration can still
4370 		 * visit all nodes.
4371 		 */
4372 		list_for_each_entry_safe_reverse(p, n, &rq->scx.runnable_list,
4373 						 scx.runnable_node) {
4374 			struct sched_enq_and_set_ctx ctx;
4375 
4376 			/* cycling deq/enq is enough, see the function comment */
4377 			sched_deq_and_put_task(p, DEQUEUE_SAVE | DEQUEUE_MOVE, &ctx);
4378 			sched_enq_and_set_task(&ctx);
4379 		}
4380 
4381 		rq_unlock(rq, &rf);
4382 
4383 		/* resched to restore ticks and idle state */
4384 		resched_cpu(cpu);
4385 	}
4386 unlock:
4387 	raw_spin_unlock_irqrestore(&__scx_ops_bypass_lock, flags);
4388 }
4389 
4390 static void free_exit_info(struct scx_exit_info *ei)
4391 {
4392 	kfree(ei->dump);
4393 	kfree(ei->msg);
4394 	kfree(ei->bt);
4395 	kfree(ei);
4396 }
4397 
4398 static struct scx_exit_info *alloc_exit_info(size_t exit_dump_len)
4399 {
4400 	struct scx_exit_info *ei;
4401 
4402 	ei = kzalloc(sizeof(*ei), GFP_KERNEL);
4403 	if (!ei)
4404 		return NULL;
4405 
4406 	ei->bt = kcalloc(SCX_EXIT_BT_LEN, sizeof(ei->bt[0]), GFP_KERNEL);
4407 	ei->msg = kzalloc(SCX_EXIT_MSG_LEN, GFP_KERNEL);
4408 	ei->dump = kzalloc(exit_dump_len, GFP_KERNEL);
4409 
4410 	if (!ei->bt || !ei->msg || !ei->dump) {
4411 		free_exit_info(ei);
4412 		return NULL;
4413 	}
4414 
4415 	return ei;
4416 }
4417 
4418 static const char *scx_exit_reason(enum scx_exit_kind kind)
4419 {
4420 	switch (kind) {
4421 	case SCX_EXIT_UNREG:
4422 		return "unregistered from user space";
4423 	case SCX_EXIT_UNREG_BPF:
4424 		return "unregistered from BPF";
4425 	case SCX_EXIT_UNREG_KERN:
4426 		return "unregistered from the main kernel";
4427 	case SCX_EXIT_SYSRQ:
4428 		return "disabled by sysrq-S";
4429 	case SCX_EXIT_ERROR:
4430 		return "runtime error";
4431 	case SCX_EXIT_ERROR_BPF:
4432 		return "scx_bpf_error";
4433 	case SCX_EXIT_ERROR_STALL:
4434 		return "runnable task stall";
4435 	default:
4436 		return "<UNKNOWN>";
4437 	}
4438 }
4439 
4440 static void scx_ops_disable_workfn(struct kthread_work *work)
4441 {
4442 	struct scx_exit_info *ei = scx_exit_info;
4443 	struct scx_task_iter sti;
4444 	struct task_struct *p;
4445 	struct rhashtable_iter rht_iter;
4446 	struct scx_dispatch_q *dsq;
4447 	int i, kind;
4448 
4449 	kind = atomic_read(&scx_exit_kind);
4450 	while (true) {
4451 		/*
4452 		 * NONE indicates that a new scx_ops has been registered since
4453 		 * disable was scheduled - don't kill the new ops. DONE
4454 		 * indicates that the ops has already been disabled.
4455 		 */
4456 		if (kind == SCX_EXIT_NONE || kind == SCX_EXIT_DONE)
4457 			return;
4458 		if (atomic_try_cmpxchg(&scx_exit_kind, &kind, SCX_EXIT_DONE))
4459 			break;
4460 	}
4461 	ei->kind = kind;
4462 	ei->reason = scx_exit_reason(ei->kind);
4463 
4464 	/* guarantee forward progress by bypassing scx_ops */
4465 	scx_ops_bypass(true);
4466 
4467 	switch (scx_ops_set_enable_state(SCX_OPS_DISABLING)) {
4468 	case SCX_OPS_DISABLING:
4469 		WARN_ONCE(true, "sched_ext: duplicate disabling instance?");
4470 		break;
4471 	case SCX_OPS_DISABLED:
4472 		pr_warn("sched_ext: ops error detected without ops (%s)\n",
4473 			scx_exit_info->msg);
4474 		WARN_ON_ONCE(scx_ops_set_enable_state(SCX_OPS_DISABLED) !=
4475 			     SCX_OPS_DISABLING);
4476 		goto done;
4477 	default:
4478 		break;
4479 	}
4480 
4481 	/*
4482 	 * Here, every runnable task is guaranteed to make forward progress and
4483 	 * we can safely use blocking synchronization constructs. Actually
4484 	 * disable ops.
4485 	 */
4486 	mutex_lock(&scx_ops_enable_mutex);
4487 
4488 	static_branch_disable(&__scx_switched_all);
4489 	WRITE_ONCE(scx_switching_all, false);
4490 
4491 	/*
4492 	 * Shut down cgroup support before tasks so that the cgroup attach path
4493 	 * doesn't race against scx_ops_exit_task().
4494 	 */
4495 	scx_cgroup_lock();
4496 	scx_cgroup_exit();
4497 	scx_cgroup_unlock();
4498 
4499 	/*
4500 	 * The BPF scheduler is going away. All tasks including %TASK_DEAD ones
4501 	 * must be switched out and exited synchronously.
4502 	 */
4503 	percpu_down_write(&scx_fork_rwsem);
4504 
4505 	scx_ops_init_task_enabled = false;
4506 
4507 	scx_task_iter_start(&sti);
4508 	while ((p = scx_task_iter_next_locked(&sti))) {
4509 		const struct sched_class *old_class = p->sched_class;
4510 		const struct sched_class *new_class =
4511 			__setscheduler_class(p->policy, p->prio);
4512 		struct sched_enq_and_set_ctx ctx;
4513 
4514 		if (old_class != new_class && p->se.sched_delayed)
4515 			dequeue_task(task_rq(p), p, DEQUEUE_SLEEP | DEQUEUE_DELAYED);
4516 
4517 		sched_deq_and_put_task(p, DEQUEUE_SAVE | DEQUEUE_MOVE, &ctx);
4518 
4519 		p->sched_class = new_class;
4520 		check_class_changing(task_rq(p), p, old_class);
4521 
4522 		sched_enq_and_set_task(&ctx);
4523 
4524 		check_class_changed(task_rq(p), p, old_class, p->prio);
4525 		scx_ops_exit_task(p);
4526 	}
4527 	scx_task_iter_stop(&sti);
4528 	percpu_up_write(&scx_fork_rwsem);
4529 
4530 	/* no task is on scx, turn off all the switches and flush in-progress calls */
4531 	static_branch_disable(&__scx_ops_enabled);
4532 	for (i = SCX_OPI_BEGIN; i < SCX_OPI_END; i++)
4533 		static_branch_disable(&scx_has_op[i]);
4534 	static_branch_disable(&scx_ops_enq_last);
4535 	static_branch_disable(&scx_ops_enq_exiting);
4536 	static_branch_disable(&scx_ops_cpu_preempt);
4537 	static_branch_disable(&scx_builtin_idle_enabled);
4538 	synchronize_rcu();
4539 
4540 	if (ei->kind >= SCX_EXIT_ERROR) {
4541 		pr_err("sched_ext: BPF scheduler \"%s\" disabled (%s)\n",
4542 		       scx_ops.name, ei->reason);
4543 
4544 		if (ei->msg[0] != '\0')
4545 			pr_err("sched_ext: %s: %s\n", scx_ops.name, ei->msg);
4546 #ifdef CONFIG_STACKTRACE
4547 		stack_trace_print(ei->bt, ei->bt_len, 2);
4548 #endif
4549 	} else {
4550 		pr_info("sched_ext: BPF scheduler \"%s\" disabled (%s)\n",
4551 			scx_ops.name, ei->reason);
4552 	}
4553 
4554 	if (scx_ops.exit)
4555 		SCX_CALL_OP(SCX_KF_UNLOCKED, exit, ei);
4556 
4557 	cancel_delayed_work_sync(&scx_watchdog_work);
4558 
4559 	/*
4560 	 * Delete the kobject from the hierarchy eagerly in addition to just
4561 	 * dropping a reference. Otherwise, if the object is deleted
4562 	 * asynchronously, sysfs could observe an object of the same name still
4563 	 * in the hierarchy when another scheduler is loaded.
4564 	 */
4565 	kobject_del(scx_root_kobj);
4566 	kobject_put(scx_root_kobj);
4567 	scx_root_kobj = NULL;
4568 
4569 	memset(&scx_ops, 0, sizeof(scx_ops));
4570 
4571 	rhashtable_walk_enter(&dsq_hash, &rht_iter);
4572 	do {
4573 		rhashtable_walk_start(&rht_iter);
4574 
4575 		while ((dsq = rhashtable_walk_next(&rht_iter)) && !IS_ERR(dsq))
4576 			destroy_dsq(dsq->id);
4577 
4578 		rhashtable_walk_stop(&rht_iter);
4579 	} while (dsq == ERR_PTR(-EAGAIN));
4580 	rhashtable_walk_exit(&rht_iter);
4581 
4582 	free_percpu(scx_dsp_ctx);
4583 	scx_dsp_ctx = NULL;
4584 	scx_dsp_max_batch = 0;
4585 
4586 	free_exit_info(scx_exit_info);
4587 	scx_exit_info = NULL;
4588 
4589 	mutex_unlock(&scx_ops_enable_mutex);
4590 
4591 	WARN_ON_ONCE(scx_ops_set_enable_state(SCX_OPS_DISABLED) !=
4592 		     SCX_OPS_DISABLING);
4593 done:
4594 	scx_ops_bypass(false);
4595 }
4596 
4597 static DEFINE_KTHREAD_WORK(scx_ops_disable_work, scx_ops_disable_workfn);
4598 
4599 static void schedule_scx_ops_disable_work(void)
4600 {
4601 	struct kthread_worker *helper = READ_ONCE(scx_ops_helper);
4602 
4603 	/*
4604 	 * We may be called spuriously before the first bpf_sched_ext_reg(). If
4605 	 * scx_ops_helper isn't set up yet, there's nothing to do.
4606 	 */
4607 	if (helper)
4608 		kthread_queue_work(helper, &scx_ops_disable_work);
4609 }
4610 
4611 static void scx_ops_disable(enum scx_exit_kind kind)
4612 {
4613 	int none = SCX_EXIT_NONE;
4614 
4615 	if (WARN_ON_ONCE(kind == SCX_EXIT_NONE || kind == SCX_EXIT_DONE))
4616 		kind = SCX_EXIT_ERROR;
4617 
4618 	atomic_try_cmpxchg(&scx_exit_kind, &none, kind);
4619 
4620 	schedule_scx_ops_disable_work();
4621 }
4622 
4623 static void dump_newline(struct seq_buf *s)
4624 {
4625 	trace_sched_ext_dump("");
4626 
4627 	/* @s may be zero sized and seq_buf triggers WARN if so */
4628 	if (s->size)
4629 		seq_buf_putc(s, '\n');
4630 }
4631 
4632 static __printf(2, 3) void dump_line(struct seq_buf *s, const char *fmt, ...)
4633 {
4634 	va_list args;
4635 
4636 #ifdef CONFIG_TRACEPOINTS
4637 	if (trace_sched_ext_dump_enabled()) {
4638 		/* protected by scx_dump_state()::dump_lock */
4639 		static char line_buf[SCX_EXIT_MSG_LEN];
4640 
4641 		va_start(args, fmt);
4642 		vscnprintf(line_buf, sizeof(line_buf), fmt, args);
4643 		va_end(args);
4644 
4645 		trace_sched_ext_dump(line_buf);
4646 	}
4647 #endif
4648 	/* @s may be zero sized and seq_buf triggers WARN if so */
4649 	if (s->size) {
4650 		va_start(args, fmt);
4651 		seq_buf_vprintf(s, fmt, args);
4652 		va_end(args);
4653 
4654 		seq_buf_putc(s, '\n');
4655 	}
4656 }
4657 
4658 static void dump_stack_trace(struct seq_buf *s, const char *prefix,
4659 			     const unsigned long *bt, unsigned int len)
4660 {
4661 	unsigned int i;
4662 
4663 	for (i = 0; i < len; i++)
4664 		dump_line(s, "%s%pS", prefix, (void *)bt[i]);
4665 }
4666 
4667 static void ops_dump_init(struct seq_buf *s, const char *prefix)
4668 {
4669 	struct scx_dump_data *dd = &scx_dump_data;
4670 
4671 	lockdep_assert_irqs_disabled();
4672 
4673 	dd->cpu = smp_processor_id();		/* allow scx_bpf_dump() */
4674 	dd->first = true;
4675 	dd->cursor = 0;
4676 	dd->s = s;
4677 	dd->prefix = prefix;
4678 }
4679 
4680 static void ops_dump_flush(void)
4681 {
4682 	struct scx_dump_data *dd = &scx_dump_data;
4683 	char *line = dd->buf.line;
4684 
4685 	if (!dd->cursor)
4686 		return;
4687 
4688 	/*
4689 	 * There's something to flush and this is the first line. Insert a blank
4690 	 * line to distinguish ops dump.
4691 	 */
4692 	if (dd->first) {
4693 		dump_newline(dd->s);
4694 		dd->first = false;
4695 	}
4696 
4697 	/*
4698 	 * There may be multiple lines in $line. Scan and emit each line
4699 	 * separately.
4700 	 */
4701 	while (true) {
4702 		char *end = line;
4703 		char c;
4704 
4705 		while (*end != '\n' && *end != '\0')
4706 			end++;
4707 
4708 		/*
4709 		 * If $line overflowed, it may not have newline at the end.
4710 		 * Always emit with a newline.
4711 		 */
4712 		c = *end;
4713 		*end = '\0';
4714 		dump_line(dd->s, "%s%s", dd->prefix, line);
4715 		if (c == '\0')
4716 			break;
4717 
4718 		/* move to the next line */
4719 		end++;
4720 		if (*end == '\0')
4721 			break;
4722 		line = end;
4723 	}
4724 
4725 	dd->cursor = 0;
4726 }
4727 
4728 static void ops_dump_exit(void)
4729 {
4730 	ops_dump_flush();
4731 	scx_dump_data.cpu = -1;
4732 }
4733 
4734 static void scx_dump_task(struct seq_buf *s, struct scx_dump_ctx *dctx,
4735 			  struct task_struct *p, char marker)
4736 {
4737 	static unsigned long bt[SCX_EXIT_BT_LEN];
4738 	char dsq_id_buf[19] = "(n/a)";
4739 	unsigned long ops_state = atomic_long_read(&p->scx.ops_state);
4740 	unsigned int bt_len = 0;
4741 
4742 	if (p->scx.dsq)
4743 		scnprintf(dsq_id_buf, sizeof(dsq_id_buf), "0x%llx",
4744 			  (unsigned long long)p->scx.dsq->id);
4745 
4746 	dump_newline(s);
4747 	dump_line(s, " %c%c %s[%d] %+ldms",
4748 		  marker, task_state_to_char(p), p->comm, p->pid,
4749 		  jiffies_delta_msecs(p->scx.runnable_at, dctx->at_jiffies));
4750 	dump_line(s, "      scx_state/flags=%u/0x%x dsq_flags=0x%x ops_state/qseq=%lu/%lu",
4751 		  scx_get_task_state(p), p->scx.flags & ~SCX_TASK_STATE_MASK,
4752 		  p->scx.dsq_flags, ops_state & SCX_OPSS_STATE_MASK,
4753 		  ops_state >> SCX_OPSS_QSEQ_SHIFT);
4754 	dump_line(s, "      sticky/holding_cpu=%d/%d dsq_id=%s dsq_vtime=%llu",
4755 		  p->scx.sticky_cpu, p->scx.holding_cpu, dsq_id_buf,
4756 		  p->scx.dsq_vtime);
4757 	dump_line(s, "      cpus=%*pb", cpumask_pr_args(p->cpus_ptr));
4758 
4759 	if (SCX_HAS_OP(dump_task)) {
4760 		ops_dump_init(s, "    ");
4761 		SCX_CALL_OP(SCX_KF_REST, dump_task, dctx, p);
4762 		ops_dump_exit();
4763 	}
4764 
4765 #ifdef CONFIG_STACKTRACE
4766 	bt_len = stack_trace_save_tsk(p, bt, SCX_EXIT_BT_LEN, 1);
4767 #endif
4768 	if (bt_len) {
4769 		dump_newline(s);
4770 		dump_stack_trace(s, "    ", bt, bt_len);
4771 	}
4772 }
4773 
4774 static void scx_dump_state(struct scx_exit_info *ei, size_t dump_len)
4775 {
4776 	static DEFINE_SPINLOCK(dump_lock);
4777 	static const char trunc_marker[] = "\n\n~~~~ TRUNCATED ~~~~\n";
4778 	struct scx_dump_ctx dctx = {
4779 		.kind = ei->kind,
4780 		.exit_code = ei->exit_code,
4781 		.reason = ei->reason,
4782 		.at_ns = ktime_get_ns(),
4783 		.at_jiffies = jiffies,
4784 	};
4785 	struct seq_buf s;
4786 	unsigned long flags;
4787 	char *buf;
4788 	int cpu;
4789 
4790 	spin_lock_irqsave(&dump_lock, flags);
4791 
4792 	seq_buf_init(&s, ei->dump, dump_len);
4793 
4794 	if (ei->kind == SCX_EXIT_NONE) {
4795 		dump_line(&s, "Debug dump triggered by %s", ei->reason);
4796 	} else {
4797 		dump_line(&s, "%s[%d] triggered exit kind %d:",
4798 			  current->comm, current->pid, ei->kind);
4799 		dump_line(&s, "  %s (%s)", ei->reason, ei->msg);
4800 		dump_newline(&s);
4801 		dump_line(&s, "Backtrace:");
4802 		dump_stack_trace(&s, "  ", ei->bt, ei->bt_len);
4803 	}
4804 
4805 	if (SCX_HAS_OP(dump)) {
4806 		ops_dump_init(&s, "");
4807 		SCX_CALL_OP(SCX_KF_UNLOCKED, dump, &dctx);
4808 		ops_dump_exit();
4809 	}
4810 
4811 	dump_newline(&s);
4812 	dump_line(&s, "CPU states");
4813 	dump_line(&s, "----------");
4814 
4815 	for_each_possible_cpu(cpu) {
4816 		struct rq *rq = cpu_rq(cpu);
4817 		struct rq_flags rf;
4818 		struct task_struct *p;
4819 		struct seq_buf ns;
4820 		size_t avail, used;
4821 		bool idle;
4822 
4823 		rq_lock(rq, &rf);
4824 
4825 		idle = list_empty(&rq->scx.runnable_list) &&
4826 			rq->curr->sched_class == &idle_sched_class;
4827 
4828 		if (idle && !SCX_HAS_OP(dump_cpu))
4829 			goto next;
4830 
4831 		/*
4832 		 * We don't yet know whether ops.dump_cpu() will produce output
4833 		 * and we may want to skip the default CPU dump if it doesn't.
4834 		 * Use a nested seq_buf to generate the standard dump so that we
4835 		 * can decide whether to commit later.
4836 		 */
4837 		avail = seq_buf_get_buf(&s, &buf);
4838 		seq_buf_init(&ns, buf, avail);
4839 
4840 		dump_newline(&ns);
4841 		dump_line(&ns, "CPU %-4d: nr_run=%u flags=0x%x cpu_rel=%d ops_qseq=%lu pnt_seq=%lu",
4842 			  cpu, rq->scx.nr_running, rq->scx.flags,
4843 			  rq->scx.cpu_released, rq->scx.ops_qseq,
4844 			  rq->scx.pnt_seq);
4845 		dump_line(&ns, "          curr=%s[%d] class=%ps",
4846 			  rq->curr->comm, rq->curr->pid,
4847 			  rq->curr->sched_class);
4848 		if (!cpumask_empty(rq->scx.cpus_to_kick))
4849 			dump_line(&ns, "  cpus_to_kick   : %*pb",
4850 				  cpumask_pr_args(rq->scx.cpus_to_kick));
4851 		if (!cpumask_empty(rq->scx.cpus_to_kick_if_idle))
4852 			dump_line(&ns, "  idle_to_kick   : %*pb",
4853 				  cpumask_pr_args(rq->scx.cpus_to_kick_if_idle));
4854 		if (!cpumask_empty(rq->scx.cpus_to_preempt))
4855 			dump_line(&ns, "  cpus_to_preempt: %*pb",
4856 				  cpumask_pr_args(rq->scx.cpus_to_preempt));
4857 		if (!cpumask_empty(rq->scx.cpus_to_wait))
4858 			dump_line(&ns, "  cpus_to_wait   : %*pb",
4859 				  cpumask_pr_args(rq->scx.cpus_to_wait));
4860 
4861 		used = seq_buf_used(&ns);
4862 		if (SCX_HAS_OP(dump_cpu)) {
4863 			ops_dump_init(&ns, "  ");
4864 			SCX_CALL_OP(SCX_KF_REST, dump_cpu, &dctx, cpu, idle);
4865 			ops_dump_exit();
4866 		}
4867 
4868 		/*
4869 		 * If idle && nothing generated by ops.dump_cpu(), there's
4870 		 * nothing interesting. Skip.
4871 		 */
4872 		if (idle && used == seq_buf_used(&ns))
4873 			goto next;
4874 
4875 		/*
4876 		 * $s may already have overflowed when $ns was created. If so,
4877 		 * calling commit on it will trigger BUG.
4878 		 */
4879 		if (avail) {
4880 			seq_buf_commit(&s, seq_buf_used(&ns));
4881 			if (seq_buf_has_overflowed(&ns))
4882 				seq_buf_set_overflow(&s);
4883 		}
4884 
4885 		if (rq->curr->sched_class == &ext_sched_class)
4886 			scx_dump_task(&s, &dctx, rq->curr, '*');
4887 
4888 		list_for_each_entry(p, &rq->scx.runnable_list, scx.runnable_node)
4889 			scx_dump_task(&s, &dctx, p, ' ');
4890 	next:
4891 		rq_unlock(rq, &rf);
4892 	}
4893 
4894 	if (seq_buf_has_overflowed(&s) && dump_len >= sizeof(trunc_marker))
4895 		memcpy(ei->dump + dump_len - sizeof(trunc_marker),
4896 		       trunc_marker, sizeof(trunc_marker));
4897 
4898 	spin_unlock_irqrestore(&dump_lock, flags);
4899 }
4900 
4901 static void scx_ops_error_irq_workfn(struct irq_work *irq_work)
4902 {
4903 	struct scx_exit_info *ei = scx_exit_info;
4904 
4905 	if (ei->kind >= SCX_EXIT_ERROR)
4906 		scx_dump_state(ei, scx_ops.exit_dump_len);
4907 
4908 	schedule_scx_ops_disable_work();
4909 }
4910 
4911 static DEFINE_IRQ_WORK(scx_ops_error_irq_work, scx_ops_error_irq_workfn);
4912 
4913 static __printf(3, 4) void scx_ops_exit_kind(enum scx_exit_kind kind,
4914 					     s64 exit_code,
4915 					     const char *fmt, ...)
4916 {
4917 	struct scx_exit_info *ei = scx_exit_info;
4918 	int none = SCX_EXIT_NONE;
4919 	va_list args;
4920 
4921 	if (!atomic_try_cmpxchg(&scx_exit_kind, &none, kind))
4922 		return;
4923 
4924 	ei->exit_code = exit_code;
4925 #ifdef CONFIG_STACKTRACE
4926 	if (kind >= SCX_EXIT_ERROR)
4927 		ei->bt_len = stack_trace_save(ei->bt, SCX_EXIT_BT_LEN, 1);
4928 #endif
4929 	va_start(args, fmt);
4930 	vscnprintf(ei->msg, SCX_EXIT_MSG_LEN, fmt, args);
4931 	va_end(args);
4932 
4933 	/*
4934 	 * Set ei->kind and ->reason for scx_dump_state(). They'll be set again
4935 	 * in scx_ops_disable_workfn().
4936 	 */
4937 	ei->kind = kind;
4938 	ei->reason = scx_exit_reason(ei->kind);
4939 
4940 	irq_work_queue(&scx_ops_error_irq_work);
4941 }
4942 
4943 static struct kthread_worker *scx_create_rt_helper(const char *name)
4944 {
4945 	struct kthread_worker *helper;
4946 
4947 	helper = kthread_create_worker(0, name);
4948 	if (helper)
4949 		sched_set_fifo(helper->task);
4950 	return helper;
4951 }
4952 
4953 static void check_hotplug_seq(const struct sched_ext_ops *ops)
4954 {
4955 	unsigned long long global_hotplug_seq;
4956 
4957 	/*
4958 	 * If a hotplug event has occurred between when a scheduler was
4959 	 * initialized, and when we were able to attach, exit and notify user
4960 	 * space about it.
4961 	 */
4962 	if (ops->hotplug_seq) {
4963 		global_hotplug_seq = atomic_long_read(&scx_hotplug_seq);
4964 		if (ops->hotplug_seq != global_hotplug_seq) {
4965 			scx_ops_exit(SCX_ECODE_ACT_RESTART | SCX_ECODE_RSN_HOTPLUG,
4966 				     "expected hotplug seq %llu did not match actual %llu",
4967 				     ops->hotplug_seq, global_hotplug_seq);
4968 		}
4969 	}
4970 }
4971 
4972 static int validate_ops(const struct sched_ext_ops *ops)
4973 {
4974 	/*
4975 	 * It doesn't make sense to specify the SCX_OPS_ENQ_LAST flag if the
4976 	 * ops.enqueue() callback isn't implemented.
4977 	 */
4978 	if ((ops->flags & SCX_OPS_ENQ_LAST) && !ops->enqueue) {
4979 		scx_ops_error("SCX_OPS_ENQ_LAST requires ops.enqueue() to be implemented");
4980 		return -EINVAL;
4981 	}
4982 
4983 	return 0;
4984 }
4985 
4986 static int scx_ops_enable(struct sched_ext_ops *ops, struct bpf_link *link)
4987 {
4988 	struct scx_task_iter sti;
4989 	struct task_struct *p;
4990 	unsigned long timeout;
4991 	int i, cpu, node, ret;
4992 
4993 	if (!cpumask_equal(housekeeping_cpumask(HK_TYPE_DOMAIN),
4994 			   cpu_possible_mask)) {
4995 		pr_err("sched_ext: Not compatible with \"isolcpus=\" domain isolation\n");
4996 		return -EINVAL;
4997 	}
4998 
4999 	mutex_lock(&scx_ops_enable_mutex);
5000 
5001 	if (!scx_ops_helper) {
5002 		WRITE_ONCE(scx_ops_helper,
5003 			   scx_create_rt_helper("sched_ext_ops_helper"));
5004 		if (!scx_ops_helper) {
5005 			ret = -ENOMEM;
5006 			goto err_unlock;
5007 		}
5008 	}
5009 
5010 	if (!global_dsqs) {
5011 		struct scx_dispatch_q **dsqs;
5012 
5013 		dsqs = kcalloc(nr_node_ids, sizeof(dsqs[0]), GFP_KERNEL);
5014 		if (!dsqs) {
5015 			ret = -ENOMEM;
5016 			goto err_unlock;
5017 		}
5018 
5019 		for_each_node_state(node, N_POSSIBLE) {
5020 			struct scx_dispatch_q *dsq;
5021 
5022 			dsq = kzalloc_node(sizeof(*dsq), GFP_KERNEL, node);
5023 			if (!dsq) {
5024 				for_each_node_state(node, N_POSSIBLE)
5025 					kfree(dsqs[node]);
5026 				kfree(dsqs);
5027 				ret = -ENOMEM;
5028 				goto err_unlock;
5029 			}
5030 
5031 			init_dsq(dsq, SCX_DSQ_GLOBAL);
5032 			dsqs[node] = dsq;
5033 		}
5034 
5035 		global_dsqs = dsqs;
5036 	}
5037 
5038 	if (scx_ops_enable_state() != SCX_OPS_DISABLED) {
5039 		ret = -EBUSY;
5040 		goto err_unlock;
5041 	}
5042 
5043 	scx_root_kobj = kzalloc(sizeof(*scx_root_kobj), GFP_KERNEL);
5044 	if (!scx_root_kobj) {
5045 		ret = -ENOMEM;
5046 		goto err_unlock;
5047 	}
5048 
5049 	scx_root_kobj->kset = scx_kset;
5050 	ret = kobject_init_and_add(scx_root_kobj, &scx_ktype, NULL, "root");
5051 	if (ret < 0)
5052 		goto err;
5053 
5054 	scx_exit_info = alloc_exit_info(ops->exit_dump_len);
5055 	if (!scx_exit_info) {
5056 		ret = -ENOMEM;
5057 		goto err_del;
5058 	}
5059 
5060 	/*
5061 	 * Set scx_ops, transition to ENABLING and clear exit info to arm the
5062 	 * disable path. Failure triggers full disabling from here on.
5063 	 */
5064 	scx_ops = *ops;
5065 
5066 	WARN_ON_ONCE(scx_ops_set_enable_state(SCX_OPS_ENABLING) !=
5067 		     SCX_OPS_DISABLED);
5068 
5069 	atomic_set(&scx_exit_kind, SCX_EXIT_NONE);
5070 	scx_warned_zero_slice = false;
5071 
5072 	atomic_long_set(&scx_nr_rejected, 0);
5073 
5074 	for_each_possible_cpu(cpu)
5075 		cpu_rq(cpu)->scx.cpuperf_target = SCX_CPUPERF_ONE;
5076 
5077 	/*
5078 	 * Keep CPUs stable during enable so that the BPF scheduler can track
5079 	 * online CPUs by watching ->on/offline_cpu() after ->init().
5080 	 */
5081 	cpus_read_lock();
5082 
5083 	if (scx_ops.init) {
5084 		ret = SCX_CALL_OP_RET(SCX_KF_UNLOCKED, init);
5085 		if (ret) {
5086 			ret = ops_sanitize_err("init", ret);
5087 			cpus_read_unlock();
5088 			scx_ops_error("ops.init() failed (%d)", ret);
5089 			goto err_disable;
5090 		}
5091 	}
5092 
5093 	for (i = SCX_OPI_CPU_HOTPLUG_BEGIN; i < SCX_OPI_CPU_HOTPLUG_END; i++)
5094 		if (((void (**)(void))ops)[i])
5095 			static_branch_enable_cpuslocked(&scx_has_op[i]);
5096 
5097 	check_hotplug_seq(ops);
5098 	cpus_read_unlock();
5099 
5100 	ret = validate_ops(ops);
5101 	if (ret)
5102 		goto err_disable;
5103 
5104 	WARN_ON_ONCE(scx_dsp_ctx);
5105 	scx_dsp_max_batch = ops->dispatch_max_batch ?: SCX_DSP_DFL_MAX_BATCH;
5106 	scx_dsp_ctx = __alloc_percpu(struct_size_t(struct scx_dsp_ctx, buf,
5107 						   scx_dsp_max_batch),
5108 				     __alignof__(struct scx_dsp_ctx));
5109 	if (!scx_dsp_ctx) {
5110 		ret = -ENOMEM;
5111 		goto err_disable;
5112 	}
5113 
5114 	if (ops->timeout_ms)
5115 		timeout = msecs_to_jiffies(ops->timeout_ms);
5116 	else
5117 		timeout = SCX_WATCHDOG_MAX_TIMEOUT;
5118 
5119 	WRITE_ONCE(scx_watchdog_timeout, timeout);
5120 	WRITE_ONCE(scx_watchdog_timestamp, jiffies);
5121 	queue_delayed_work(system_unbound_wq, &scx_watchdog_work,
5122 			   scx_watchdog_timeout / 2);
5123 
5124 	/*
5125 	 * Once __scx_ops_enabled is set, %current can be switched to SCX
5126 	 * anytime. This can lead to stalls as some BPF schedulers (e.g.
5127 	 * userspace scheduling) may not function correctly before all tasks are
5128 	 * switched. Init in bypass mode to guarantee forward progress.
5129 	 */
5130 	scx_ops_bypass(true);
5131 
5132 	for (i = SCX_OPI_NORMAL_BEGIN; i < SCX_OPI_NORMAL_END; i++)
5133 		if (((void (**)(void))ops)[i])
5134 			static_branch_enable(&scx_has_op[i]);
5135 
5136 	if (ops->flags & SCX_OPS_ENQ_LAST)
5137 		static_branch_enable(&scx_ops_enq_last);
5138 
5139 	if (ops->flags & SCX_OPS_ENQ_EXITING)
5140 		static_branch_enable(&scx_ops_enq_exiting);
5141 	if (scx_ops.cpu_acquire || scx_ops.cpu_release)
5142 		static_branch_enable(&scx_ops_cpu_preempt);
5143 
5144 	if (!ops->update_idle || (ops->flags & SCX_OPS_KEEP_BUILTIN_IDLE)) {
5145 		reset_idle_masks();
5146 		static_branch_enable(&scx_builtin_idle_enabled);
5147 	} else {
5148 		static_branch_disable(&scx_builtin_idle_enabled);
5149 	}
5150 
5151 	/*
5152 	 * Lock out forks, cgroup on/offlining and moves before opening the
5153 	 * floodgate so that they don't wander into the operations prematurely.
5154 	 */
5155 	percpu_down_write(&scx_fork_rwsem);
5156 
5157 	WARN_ON_ONCE(scx_ops_init_task_enabled);
5158 	scx_ops_init_task_enabled = true;
5159 
5160 	/*
5161 	 * Enable ops for every task. Fork is excluded by scx_fork_rwsem
5162 	 * preventing new tasks from being added. No need to exclude tasks
5163 	 * leaving as sched_ext_free() can handle both prepped and enabled
5164 	 * tasks. Prep all tasks first and then enable them with preemption
5165 	 * disabled.
5166 	 *
5167 	 * All cgroups should be initialized before scx_ops_init_task() so that
5168 	 * the BPF scheduler can reliably track each task's cgroup membership
5169 	 * from scx_ops_init_task(). Lock out cgroup on/offlining and task
5170 	 * migrations while tasks are being initialized so that
5171 	 * scx_cgroup_can_attach() never sees uninitialized tasks.
5172 	 */
5173 	scx_cgroup_lock();
5174 	ret = scx_cgroup_init();
5175 	if (ret)
5176 		goto err_disable_unlock_all;
5177 
5178 	scx_task_iter_start(&sti);
5179 	while ((p = scx_task_iter_next_locked(&sti))) {
5180 		/*
5181 		 * @p may already be dead, have lost all its usages counts and
5182 		 * be waiting for RCU grace period before being freed. @p can't
5183 		 * be initialized for SCX in such cases and should be ignored.
5184 		 */
5185 		if (!tryget_task_struct(p))
5186 			continue;
5187 
5188 		scx_task_iter_unlock(&sti);
5189 
5190 		ret = scx_ops_init_task(p, task_group(p), false);
5191 		if (ret) {
5192 			put_task_struct(p);
5193 			scx_task_iter_relock(&sti);
5194 			scx_task_iter_stop(&sti);
5195 			scx_ops_error("ops.init_task() failed (%d) for %s[%d]",
5196 				      ret, p->comm, p->pid);
5197 			goto err_disable_unlock_all;
5198 		}
5199 
5200 		scx_set_task_state(p, SCX_TASK_READY);
5201 
5202 		put_task_struct(p);
5203 		scx_task_iter_relock(&sti);
5204 	}
5205 	scx_task_iter_stop(&sti);
5206 	scx_cgroup_unlock();
5207 	percpu_up_write(&scx_fork_rwsem);
5208 
5209 	/*
5210 	 * All tasks are READY. It's safe to turn on scx_enabled() and switch
5211 	 * all eligible tasks.
5212 	 */
5213 	WRITE_ONCE(scx_switching_all, !(ops->flags & SCX_OPS_SWITCH_PARTIAL));
5214 	static_branch_enable(&__scx_ops_enabled);
5215 
5216 	/*
5217 	 * We're fully committed and can't fail. The task READY -> ENABLED
5218 	 * transitions here are synchronized against sched_ext_free() through
5219 	 * scx_tasks_lock.
5220 	 */
5221 	percpu_down_write(&scx_fork_rwsem);
5222 	scx_task_iter_start(&sti);
5223 	while ((p = scx_task_iter_next_locked(&sti))) {
5224 		const struct sched_class *old_class = p->sched_class;
5225 		const struct sched_class *new_class =
5226 			__setscheduler_class(p->policy, p->prio);
5227 		struct sched_enq_and_set_ctx ctx;
5228 
5229 		if (old_class != new_class && p->se.sched_delayed)
5230 			dequeue_task(task_rq(p), p, DEQUEUE_SLEEP | DEQUEUE_DELAYED);
5231 
5232 		sched_deq_and_put_task(p, DEQUEUE_SAVE | DEQUEUE_MOVE, &ctx);
5233 
5234 		p->scx.slice = SCX_SLICE_DFL;
5235 		p->sched_class = new_class;
5236 		check_class_changing(task_rq(p), p, old_class);
5237 
5238 		sched_enq_and_set_task(&ctx);
5239 
5240 		check_class_changed(task_rq(p), p, old_class, p->prio);
5241 	}
5242 	scx_task_iter_stop(&sti);
5243 	percpu_up_write(&scx_fork_rwsem);
5244 
5245 	scx_ops_bypass(false);
5246 
5247 	if (!scx_ops_tryset_enable_state(SCX_OPS_ENABLED, SCX_OPS_ENABLING)) {
5248 		WARN_ON_ONCE(atomic_read(&scx_exit_kind) == SCX_EXIT_NONE);
5249 		goto err_disable;
5250 	}
5251 
5252 	if (!(ops->flags & SCX_OPS_SWITCH_PARTIAL))
5253 		static_branch_enable(&__scx_switched_all);
5254 
5255 	pr_info("sched_ext: BPF scheduler \"%s\" enabled%s\n",
5256 		scx_ops.name, scx_switched_all() ? "" : " (partial)");
5257 	kobject_uevent(scx_root_kobj, KOBJ_ADD);
5258 	mutex_unlock(&scx_ops_enable_mutex);
5259 
5260 	atomic_long_inc(&scx_enable_seq);
5261 
5262 	return 0;
5263 
5264 err_del:
5265 	kobject_del(scx_root_kobj);
5266 err:
5267 	kobject_put(scx_root_kobj);
5268 	scx_root_kobj = NULL;
5269 	if (scx_exit_info) {
5270 		free_exit_info(scx_exit_info);
5271 		scx_exit_info = NULL;
5272 	}
5273 err_unlock:
5274 	mutex_unlock(&scx_ops_enable_mutex);
5275 	return ret;
5276 
5277 err_disable_unlock_all:
5278 	scx_cgroup_unlock();
5279 	percpu_up_write(&scx_fork_rwsem);
5280 	scx_ops_bypass(false);
5281 err_disable:
5282 	mutex_unlock(&scx_ops_enable_mutex);
5283 	/*
5284 	 * Returning an error code here would not pass all the error information
5285 	 * to userspace. Record errno using scx_ops_error() for cases
5286 	 * scx_ops_error() wasn't already invoked and exit indicating success so
5287 	 * that the error is notified through ops.exit() with all the details.
5288 	 *
5289 	 * Flush scx_ops_disable_work to ensure that error is reported before
5290 	 * init completion.
5291 	 */
5292 	scx_ops_error("scx_ops_enable() failed (%d)", ret);
5293 	kthread_flush_work(&scx_ops_disable_work);
5294 	return 0;
5295 }
5296 
5297 
5298 /********************************************************************************
5299  * bpf_struct_ops plumbing.
5300  */
5301 #include <linux/bpf_verifier.h>
5302 #include <linux/bpf.h>
5303 #include <linux/btf.h>
5304 
5305 extern struct btf *btf_vmlinux;
5306 static const struct btf_type *task_struct_type;
5307 static u32 task_struct_type_id;
5308 
5309 static bool set_arg_maybe_null(const char *op, int arg_n, int off, int size,
5310 			       enum bpf_access_type type,
5311 			       const struct bpf_prog *prog,
5312 			       struct bpf_insn_access_aux *info)
5313 {
5314 	struct btf *btf = bpf_get_btf_vmlinux();
5315 	const struct bpf_struct_ops_desc *st_ops_desc;
5316 	const struct btf_member *member;
5317 	const struct btf_type *t;
5318 	u32 btf_id, member_idx;
5319 	const char *mname;
5320 
5321 	/* struct_ops op args are all sequential, 64-bit numbers */
5322 	if (off != arg_n * sizeof(__u64))
5323 		return false;
5324 
5325 	/* btf_id should be the type id of struct sched_ext_ops */
5326 	btf_id = prog->aux->attach_btf_id;
5327 	st_ops_desc = bpf_struct_ops_find(btf, btf_id);
5328 	if (!st_ops_desc)
5329 		return false;
5330 
5331 	/* BTF type of struct sched_ext_ops */
5332 	t = st_ops_desc->type;
5333 
5334 	member_idx = prog->expected_attach_type;
5335 	if (member_idx >= btf_type_vlen(t))
5336 		return false;
5337 
5338 	/*
5339 	 * Get the member name of this struct_ops program, which corresponds to
5340 	 * a field in struct sched_ext_ops. For example, the member name of the
5341 	 * dispatch struct_ops program (callback) is "dispatch".
5342 	 */
5343 	member = &btf_type_member(t)[member_idx];
5344 	mname = btf_name_by_offset(btf_vmlinux, member->name_off);
5345 
5346 	if (!strcmp(mname, op)) {
5347 		/*
5348 		 * The value is a pointer to a type (struct task_struct) given
5349 		 * by a BTF ID (PTR_TO_BTF_ID). It is trusted (PTR_TRUSTED),
5350 		 * however, can be a NULL (PTR_MAYBE_NULL). The BPF program
5351 		 * should check the pointer to make sure it is not NULL before
5352 		 * using it, or the verifier will reject the program.
5353 		 *
5354 		 * Longer term, this is something that should be addressed by
5355 		 * BTF, and be fully contained within the verifier.
5356 		 */
5357 		info->reg_type = PTR_MAYBE_NULL | PTR_TO_BTF_ID | PTR_TRUSTED;
5358 		info->btf = btf_vmlinux;
5359 		info->btf_id = task_struct_type_id;
5360 
5361 		return true;
5362 	}
5363 
5364 	return false;
5365 }
5366 
5367 static bool bpf_scx_is_valid_access(int off, int size,
5368 				    enum bpf_access_type type,
5369 				    const struct bpf_prog *prog,
5370 				    struct bpf_insn_access_aux *info)
5371 {
5372 	if (type != BPF_READ)
5373 		return false;
5374 	if (set_arg_maybe_null("dispatch", 1, off, size, type, prog, info) ||
5375 	    set_arg_maybe_null("yield", 1, off, size, type, prog, info))
5376 		return true;
5377 	if (off < 0 || off >= sizeof(__u64) * MAX_BPF_FUNC_ARGS)
5378 		return false;
5379 	if (off % size != 0)
5380 		return false;
5381 
5382 	return btf_ctx_access(off, size, type, prog, info);
5383 }
5384 
5385 static int bpf_scx_btf_struct_access(struct bpf_verifier_log *log,
5386 				     const struct bpf_reg_state *reg, int off,
5387 				     int size)
5388 {
5389 	const struct btf_type *t;
5390 
5391 	t = btf_type_by_id(reg->btf, reg->btf_id);
5392 	if (t == task_struct_type) {
5393 		if (off >= offsetof(struct task_struct, scx.slice) &&
5394 		    off + size <= offsetofend(struct task_struct, scx.slice))
5395 			return SCALAR_VALUE;
5396 		if (off >= offsetof(struct task_struct, scx.dsq_vtime) &&
5397 		    off + size <= offsetofend(struct task_struct, scx.dsq_vtime))
5398 			return SCALAR_VALUE;
5399 		if (off >= offsetof(struct task_struct, scx.disallow) &&
5400 		    off + size <= offsetofend(struct task_struct, scx.disallow))
5401 			return SCALAR_VALUE;
5402 	}
5403 
5404 	return -EACCES;
5405 }
5406 
5407 static const struct bpf_func_proto *
5408 bpf_scx_get_func_proto(enum bpf_func_id func_id, const struct bpf_prog *prog)
5409 {
5410 	switch (func_id) {
5411 	case BPF_FUNC_task_storage_get:
5412 		return &bpf_task_storage_get_proto;
5413 	case BPF_FUNC_task_storage_delete:
5414 		return &bpf_task_storage_delete_proto;
5415 	default:
5416 		return bpf_base_func_proto(func_id, prog);
5417 	}
5418 }
5419 
5420 static const struct bpf_verifier_ops bpf_scx_verifier_ops = {
5421 	.get_func_proto = bpf_scx_get_func_proto,
5422 	.is_valid_access = bpf_scx_is_valid_access,
5423 	.btf_struct_access = bpf_scx_btf_struct_access,
5424 };
5425 
5426 static int bpf_scx_init_member(const struct btf_type *t,
5427 			       const struct btf_member *member,
5428 			       void *kdata, const void *udata)
5429 {
5430 	const struct sched_ext_ops *uops = udata;
5431 	struct sched_ext_ops *ops = kdata;
5432 	u32 moff = __btf_member_bit_offset(t, member) / 8;
5433 	int ret;
5434 
5435 	switch (moff) {
5436 	case offsetof(struct sched_ext_ops, dispatch_max_batch):
5437 		if (*(u32 *)(udata + moff) > INT_MAX)
5438 			return -E2BIG;
5439 		ops->dispatch_max_batch = *(u32 *)(udata + moff);
5440 		return 1;
5441 	case offsetof(struct sched_ext_ops, flags):
5442 		if (*(u64 *)(udata + moff) & ~SCX_OPS_ALL_FLAGS)
5443 			return -EINVAL;
5444 		ops->flags = *(u64 *)(udata + moff);
5445 		return 1;
5446 	case offsetof(struct sched_ext_ops, name):
5447 		ret = bpf_obj_name_cpy(ops->name, uops->name,
5448 				       sizeof(ops->name));
5449 		if (ret < 0)
5450 			return ret;
5451 		if (ret == 0)
5452 			return -EINVAL;
5453 		return 1;
5454 	case offsetof(struct sched_ext_ops, timeout_ms):
5455 		if (msecs_to_jiffies(*(u32 *)(udata + moff)) >
5456 		    SCX_WATCHDOG_MAX_TIMEOUT)
5457 			return -E2BIG;
5458 		ops->timeout_ms = *(u32 *)(udata + moff);
5459 		return 1;
5460 	case offsetof(struct sched_ext_ops, exit_dump_len):
5461 		ops->exit_dump_len =
5462 			*(u32 *)(udata + moff) ?: SCX_EXIT_DUMP_DFL_LEN;
5463 		return 1;
5464 	case offsetof(struct sched_ext_ops, hotplug_seq):
5465 		ops->hotplug_seq = *(u64 *)(udata + moff);
5466 		return 1;
5467 	}
5468 
5469 	return 0;
5470 }
5471 
5472 static int bpf_scx_check_member(const struct btf_type *t,
5473 				const struct btf_member *member,
5474 				const struct bpf_prog *prog)
5475 {
5476 	u32 moff = __btf_member_bit_offset(t, member) / 8;
5477 
5478 	switch (moff) {
5479 	case offsetof(struct sched_ext_ops, init_task):
5480 #ifdef CONFIG_EXT_GROUP_SCHED
5481 	case offsetof(struct sched_ext_ops, cgroup_init):
5482 	case offsetof(struct sched_ext_ops, cgroup_exit):
5483 	case offsetof(struct sched_ext_ops, cgroup_prep_move):
5484 #endif
5485 	case offsetof(struct sched_ext_ops, cpu_online):
5486 	case offsetof(struct sched_ext_ops, cpu_offline):
5487 	case offsetof(struct sched_ext_ops, init):
5488 	case offsetof(struct sched_ext_ops, exit):
5489 		break;
5490 	default:
5491 		if (prog->sleepable)
5492 			return -EINVAL;
5493 	}
5494 
5495 	return 0;
5496 }
5497 
5498 static int bpf_scx_reg(void *kdata, struct bpf_link *link)
5499 {
5500 	return scx_ops_enable(kdata, link);
5501 }
5502 
5503 static void bpf_scx_unreg(void *kdata, struct bpf_link *link)
5504 {
5505 	scx_ops_disable(SCX_EXIT_UNREG);
5506 	kthread_flush_work(&scx_ops_disable_work);
5507 }
5508 
5509 static int bpf_scx_init(struct btf *btf)
5510 {
5511 	s32 type_id;
5512 
5513 	type_id = btf_find_by_name_kind(btf, "task_struct", BTF_KIND_STRUCT);
5514 	if (type_id < 0)
5515 		return -EINVAL;
5516 	task_struct_type = btf_type_by_id(btf, type_id);
5517 	task_struct_type_id = type_id;
5518 
5519 	return 0;
5520 }
5521 
5522 static int bpf_scx_update(void *kdata, void *old_kdata, struct bpf_link *link)
5523 {
5524 	/*
5525 	 * sched_ext does not support updating the actively-loaded BPF
5526 	 * scheduler, as registering a BPF scheduler can always fail if the
5527 	 * scheduler returns an error code for e.g. ops.init(), ops.init_task(),
5528 	 * etc. Similarly, we can always race with unregistration happening
5529 	 * elsewhere, such as with sysrq.
5530 	 */
5531 	return -EOPNOTSUPP;
5532 }
5533 
5534 static int bpf_scx_validate(void *kdata)
5535 {
5536 	return 0;
5537 }
5538 
5539 static s32 select_cpu_stub(struct task_struct *p, s32 prev_cpu, u64 wake_flags) { return -EINVAL; }
5540 static void enqueue_stub(struct task_struct *p, u64 enq_flags) {}
5541 static void dequeue_stub(struct task_struct *p, u64 enq_flags) {}
5542 static void dispatch_stub(s32 prev_cpu, struct task_struct *p) {}
5543 static void tick_stub(struct task_struct *p) {}
5544 static void runnable_stub(struct task_struct *p, u64 enq_flags) {}
5545 static void running_stub(struct task_struct *p) {}
5546 static void stopping_stub(struct task_struct *p, bool runnable) {}
5547 static void quiescent_stub(struct task_struct *p, u64 deq_flags) {}
5548 static bool yield_stub(struct task_struct *from, struct task_struct *to) { return false; }
5549 static bool core_sched_before_stub(struct task_struct *a, struct task_struct *b) { return false; }
5550 static void set_weight_stub(struct task_struct *p, u32 weight) {}
5551 static void set_cpumask_stub(struct task_struct *p, const struct cpumask *mask) {}
5552 static void update_idle_stub(s32 cpu, bool idle) {}
5553 static void cpu_acquire_stub(s32 cpu, struct scx_cpu_acquire_args *args) {}
5554 static void cpu_release_stub(s32 cpu, struct scx_cpu_release_args *args) {}
5555 static s32 init_task_stub(struct task_struct *p, struct scx_init_task_args *args) { return -EINVAL; }
5556 static void exit_task_stub(struct task_struct *p, struct scx_exit_task_args *args) {}
5557 static void enable_stub(struct task_struct *p) {}
5558 static void disable_stub(struct task_struct *p) {}
5559 #ifdef CONFIG_EXT_GROUP_SCHED
5560 static s32 cgroup_init_stub(struct cgroup *cgrp, struct scx_cgroup_init_args *args) { return -EINVAL; }
5561 static void cgroup_exit_stub(struct cgroup *cgrp) {}
5562 static s32 cgroup_prep_move_stub(struct task_struct *p, struct cgroup *from, struct cgroup *to) { return -EINVAL; }
5563 static void cgroup_move_stub(struct task_struct *p, struct cgroup *from, struct cgroup *to) {}
5564 static void cgroup_cancel_move_stub(struct task_struct *p, struct cgroup *from, struct cgroup *to) {}
5565 static void cgroup_set_weight_stub(struct cgroup *cgrp, u32 weight) {}
5566 #endif
5567 static void cpu_online_stub(s32 cpu) {}
5568 static void cpu_offline_stub(s32 cpu) {}
5569 static s32 init_stub(void) { return -EINVAL; }
5570 static void exit_stub(struct scx_exit_info *info) {}
5571 static void dump_stub(struct scx_dump_ctx *ctx) {}
5572 static void dump_cpu_stub(struct scx_dump_ctx *ctx, s32 cpu, bool idle) {}
5573 static void dump_task_stub(struct scx_dump_ctx *ctx, struct task_struct *p) {}
5574 
5575 static struct sched_ext_ops __bpf_ops_sched_ext_ops = {
5576 	.select_cpu = select_cpu_stub,
5577 	.enqueue = enqueue_stub,
5578 	.dequeue = dequeue_stub,
5579 	.dispatch = dispatch_stub,
5580 	.tick = tick_stub,
5581 	.runnable = runnable_stub,
5582 	.running = running_stub,
5583 	.stopping = stopping_stub,
5584 	.quiescent = quiescent_stub,
5585 	.yield = yield_stub,
5586 	.core_sched_before = core_sched_before_stub,
5587 	.set_weight = set_weight_stub,
5588 	.set_cpumask = set_cpumask_stub,
5589 	.update_idle = update_idle_stub,
5590 	.cpu_acquire = cpu_acquire_stub,
5591 	.cpu_release = cpu_release_stub,
5592 	.init_task = init_task_stub,
5593 	.exit_task = exit_task_stub,
5594 	.enable = enable_stub,
5595 	.disable = disable_stub,
5596 #ifdef CONFIG_EXT_GROUP_SCHED
5597 	.cgroup_init = cgroup_init_stub,
5598 	.cgroup_exit = cgroup_exit_stub,
5599 	.cgroup_prep_move = cgroup_prep_move_stub,
5600 	.cgroup_move = cgroup_move_stub,
5601 	.cgroup_cancel_move = cgroup_cancel_move_stub,
5602 	.cgroup_set_weight = cgroup_set_weight_stub,
5603 #endif
5604 	.cpu_online = cpu_online_stub,
5605 	.cpu_offline = cpu_offline_stub,
5606 	.init = init_stub,
5607 	.exit = exit_stub,
5608 	.dump = dump_stub,
5609 	.dump_cpu = dump_cpu_stub,
5610 	.dump_task = dump_task_stub,
5611 };
5612 
5613 static struct bpf_struct_ops bpf_sched_ext_ops = {
5614 	.verifier_ops = &bpf_scx_verifier_ops,
5615 	.reg = bpf_scx_reg,
5616 	.unreg = bpf_scx_unreg,
5617 	.check_member = bpf_scx_check_member,
5618 	.init_member = bpf_scx_init_member,
5619 	.init = bpf_scx_init,
5620 	.update = bpf_scx_update,
5621 	.validate = bpf_scx_validate,
5622 	.name = "sched_ext_ops",
5623 	.owner = THIS_MODULE,
5624 	.cfi_stubs = &__bpf_ops_sched_ext_ops
5625 };
5626 
5627 
5628 /********************************************************************************
5629  * System integration and init.
5630  */
5631 
5632 static void sysrq_handle_sched_ext_reset(u8 key)
5633 {
5634 	if (scx_ops_helper)
5635 		scx_ops_disable(SCX_EXIT_SYSRQ);
5636 	else
5637 		pr_info("sched_ext: BPF scheduler not yet used\n");
5638 }
5639 
5640 static const struct sysrq_key_op sysrq_sched_ext_reset_op = {
5641 	.handler	= sysrq_handle_sched_ext_reset,
5642 	.help_msg	= "reset-sched-ext(S)",
5643 	.action_msg	= "Disable sched_ext and revert all tasks to CFS",
5644 	.enable_mask	= SYSRQ_ENABLE_RTNICE,
5645 };
5646 
5647 static void sysrq_handle_sched_ext_dump(u8 key)
5648 {
5649 	struct scx_exit_info ei = { .kind = SCX_EXIT_NONE, .reason = "SysRq-D" };
5650 
5651 	if (scx_enabled())
5652 		scx_dump_state(&ei, 0);
5653 }
5654 
5655 static const struct sysrq_key_op sysrq_sched_ext_dump_op = {
5656 	.handler	= sysrq_handle_sched_ext_dump,
5657 	.help_msg	= "dump-sched-ext(D)",
5658 	.action_msg	= "Trigger sched_ext debug dump",
5659 	.enable_mask	= SYSRQ_ENABLE_RTNICE,
5660 };
5661 
5662 static bool can_skip_idle_kick(struct rq *rq)
5663 {
5664 	lockdep_assert_rq_held(rq);
5665 
5666 	/*
5667 	 * We can skip idle kicking if @rq is going to go through at least one
5668 	 * full SCX scheduling cycle before going idle. Just checking whether
5669 	 * curr is not idle is insufficient because we could be racing
5670 	 * balance_one() trying to pull the next task from a remote rq, which
5671 	 * may fail, and @rq may become idle afterwards.
5672 	 *
5673 	 * The race window is small and we don't and can't guarantee that @rq is
5674 	 * only kicked while idle anyway. Skip only when sure.
5675 	 */
5676 	return !is_idle_task(rq->curr) && !(rq->scx.flags & SCX_RQ_IN_BALANCE);
5677 }
5678 
5679 static bool kick_one_cpu(s32 cpu, struct rq *this_rq, unsigned long *pseqs)
5680 {
5681 	struct rq *rq = cpu_rq(cpu);
5682 	struct scx_rq *this_scx = &this_rq->scx;
5683 	bool should_wait = false;
5684 	unsigned long flags;
5685 
5686 	raw_spin_rq_lock_irqsave(rq, flags);
5687 
5688 	/*
5689 	 * During CPU hotplug, a CPU may depend on kicking itself to make
5690 	 * forward progress. Allow kicking self regardless of online state.
5691 	 */
5692 	if (cpu_online(cpu) || cpu == cpu_of(this_rq)) {
5693 		if (cpumask_test_cpu(cpu, this_scx->cpus_to_preempt)) {
5694 			if (rq->curr->sched_class == &ext_sched_class)
5695 				rq->curr->scx.slice = 0;
5696 			cpumask_clear_cpu(cpu, this_scx->cpus_to_preempt);
5697 		}
5698 
5699 		if (cpumask_test_cpu(cpu, this_scx->cpus_to_wait)) {
5700 			pseqs[cpu] = rq->scx.pnt_seq;
5701 			should_wait = true;
5702 		}
5703 
5704 		resched_curr(rq);
5705 	} else {
5706 		cpumask_clear_cpu(cpu, this_scx->cpus_to_preempt);
5707 		cpumask_clear_cpu(cpu, this_scx->cpus_to_wait);
5708 	}
5709 
5710 	raw_spin_rq_unlock_irqrestore(rq, flags);
5711 
5712 	return should_wait;
5713 }
5714 
5715 static void kick_one_cpu_if_idle(s32 cpu, struct rq *this_rq)
5716 {
5717 	struct rq *rq = cpu_rq(cpu);
5718 	unsigned long flags;
5719 
5720 	raw_spin_rq_lock_irqsave(rq, flags);
5721 
5722 	if (!can_skip_idle_kick(rq) &&
5723 	    (cpu_online(cpu) || cpu == cpu_of(this_rq)))
5724 		resched_curr(rq);
5725 
5726 	raw_spin_rq_unlock_irqrestore(rq, flags);
5727 }
5728 
5729 static void kick_cpus_irq_workfn(struct irq_work *irq_work)
5730 {
5731 	struct rq *this_rq = this_rq();
5732 	struct scx_rq *this_scx = &this_rq->scx;
5733 	unsigned long *pseqs = this_cpu_ptr(scx_kick_cpus_pnt_seqs);
5734 	bool should_wait = false;
5735 	s32 cpu;
5736 
5737 	for_each_cpu(cpu, this_scx->cpus_to_kick) {
5738 		should_wait |= kick_one_cpu(cpu, this_rq, pseqs);
5739 		cpumask_clear_cpu(cpu, this_scx->cpus_to_kick);
5740 		cpumask_clear_cpu(cpu, this_scx->cpus_to_kick_if_idle);
5741 	}
5742 
5743 	for_each_cpu(cpu, this_scx->cpus_to_kick_if_idle) {
5744 		kick_one_cpu_if_idle(cpu, this_rq);
5745 		cpumask_clear_cpu(cpu, this_scx->cpus_to_kick_if_idle);
5746 	}
5747 
5748 	if (!should_wait)
5749 		return;
5750 
5751 	for_each_cpu(cpu, this_scx->cpus_to_wait) {
5752 		unsigned long *wait_pnt_seq = &cpu_rq(cpu)->scx.pnt_seq;
5753 
5754 		if (cpu != cpu_of(this_rq)) {
5755 			/*
5756 			 * Pairs with smp_store_release() issued by this CPU in
5757 			 * scx_next_task_picked() on the resched path.
5758 			 *
5759 			 * We busy-wait here to guarantee that no other task can
5760 			 * be scheduled on our core before the target CPU has
5761 			 * entered the resched path.
5762 			 */
5763 			while (smp_load_acquire(wait_pnt_seq) == pseqs[cpu])
5764 				cpu_relax();
5765 		}
5766 
5767 		cpumask_clear_cpu(cpu, this_scx->cpus_to_wait);
5768 	}
5769 }
5770 
5771 /**
5772  * print_scx_info - print out sched_ext scheduler state
5773  * @log_lvl: the log level to use when printing
5774  * @p: target task
5775  *
5776  * If a sched_ext scheduler is enabled, print the name and state of the
5777  * scheduler. If @p is on sched_ext, print further information about the task.
5778  *
5779  * This function can be safely called on any task as long as the task_struct
5780  * itself is accessible. While safe, this function isn't synchronized and may
5781  * print out mixups or garbages of limited length.
5782  */
5783 void print_scx_info(const char *log_lvl, struct task_struct *p)
5784 {
5785 	enum scx_ops_enable_state state = scx_ops_enable_state();
5786 	const char *all = READ_ONCE(scx_switching_all) ? "+all" : "";
5787 	char runnable_at_buf[22] = "?";
5788 	struct sched_class *class;
5789 	unsigned long runnable_at;
5790 
5791 	if (state == SCX_OPS_DISABLED)
5792 		return;
5793 
5794 	/*
5795 	 * Carefully check if the task was running on sched_ext, and then
5796 	 * carefully copy the time it's been runnable, and its state.
5797 	 */
5798 	if (copy_from_kernel_nofault(&class, &p->sched_class, sizeof(class)) ||
5799 	    class != &ext_sched_class) {
5800 		printk("%sSched_ext: %s (%s%s)", log_lvl, scx_ops.name,
5801 		       scx_ops_enable_state_str[state], all);
5802 		return;
5803 	}
5804 
5805 	if (!copy_from_kernel_nofault(&runnable_at, &p->scx.runnable_at,
5806 				      sizeof(runnable_at)))
5807 		scnprintf(runnable_at_buf, sizeof(runnable_at_buf), "%+ldms",
5808 			  jiffies_delta_msecs(runnable_at, jiffies));
5809 
5810 	/* print everything onto one line to conserve console space */
5811 	printk("%sSched_ext: %s (%s%s), task: runnable_at=%s",
5812 	       log_lvl, scx_ops.name, scx_ops_enable_state_str[state], all,
5813 	       runnable_at_buf);
5814 }
5815 
5816 static int scx_pm_handler(struct notifier_block *nb, unsigned long event, void *ptr)
5817 {
5818 	/*
5819 	 * SCX schedulers often have userspace components which are sometimes
5820 	 * involved in critial scheduling paths. PM operations involve freezing
5821 	 * userspace which can lead to scheduling misbehaviors including stalls.
5822 	 * Let's bypass while PM operations are in progress.
5823 	 */
5824 	switch (event) {
5825 	case PM_HIBERNATION_PREPARE:
5826 	case PM_SUSPEND_PREPARE:
5827 	case PM_RESTORE_PREPARE:
5828 		scx_ops_bypass(true);
5829 		break;
5830 	case PM_POST_HIBERNATION:
5831 	case PM_POST_SUSPEND:
5832 	case PM_POST_RESTORE:
5833 		scx_ops_bypass(false);
5834 		break;
5835 	}
5836 
5837 	return NOTIFY_OK;
5838 }
5839 
5840 static struct notifier_block scx_pm_notifier = {
5841 	.notifier_call = scx_pm_handler,
5842 };
5843 
5844 void __init init_sched_ext_class(void)
5845 {
5846 	s32 cpu, v;
5847 
5848 	/*
5849 	 * The following is to prevent the compiler from optimizing out the enum
5850 	 * definitions so that BPF scheduler implementations can use them
5851 	 * through the generated vmlinux.h.
5852 	 */
5853 	WRITE_ONCE(v, SCX_ENQ_WAKEUP | SCX_DEQ_SLEEP | SCX_KICK_PREEMPT |
5854 		   SCX_TG_ONLINE);
5855 
5856 	BUG_ON(rhashtable_init(&dsq_hash, &dsq_hash_params));
5857 #ifdef CONFIG_SMP
5858 	BUG_ON(!alloc_cpumask_var(&idle_masks.cpu, GFP_KERNEL));
5859 	BUG_ON(!alloc_cpumask_var(&idle_masks.smt, GFP_KERNEL));
5860 #endif
5861 	scx_kick_cpus_pnt_seqs =
5862 		__alloc_percpu(sizeof(scx_kick_cpus_pnt_seqs[0]) * nr_cpu_ids,
5863 			       __alignof__(scx_kick_cpus_pnt_seqs[0]));
5864 	BUG_ON(!scx_kick_cpus_pnt_seqs);
5865 
5866 	for_each_possible_cpu(cpu) {
5867 		struct rq *rq = cpu_rq(cpu);
5868 
5869 		init_dsq(&rq->scx.local_dsq, SCX_DSQ_LOCAL);
5870 		INIT_LIST_HEAD(&rq->scx.runnable_list);
5871 		INIT_LIST_HEAD(&rq->scx.ddsp_deferred_locals);
5872 
5873 		BUG_ON(!zalloc_cpumask_var(&rq->scx.cpus_to_kick, GFP_KERNEL));
5874 		BUG_ON(!zalloc_cpumask_var(&rq->scx.cpus_to_kick_if_idle, GFP_KERNEL));
5875 		BUG_ON(!zalloc_cpumask_var(&rq->scx.cpus_to_preempt, GFP_KERNEL));
5876 		BUG_ON(!zalloc_cpumask_var(&rq->scx.cpus_to_wait, GFP_KERNEL));
5877 		init_irq_work(&rq->scx.deferred_irq_work, deferred_irq_workfn);
5878 		init_irq_work(&rq->scx.kick_cpus_irq_work, kick_cpus_irq_workfn);
5879 
5880 		if (cpu_online(cpu))
5881 			cpu_rq(cpu)->scx.flags |= SCX_RQ_ONLINE;
5882 	}
5883 
5884 	register_sysrq_key('S', &sysrq_sched_ext_reset_op);
5885 	register_sysrq_key('D', &sysrq_sched_ext_dump_op);
5886 	INIT_DELAYED_WORK(&scx_watchdog_work, scx_watchdog_workfn);
5887 }
5888 
5889 
5890 /********************************************************************************
5891  * Helpers that can be called from the BPF scheduler.
5892  */
5893 #include <linux/btf_ids.h>
5894 
5895 __bpf_kfunc_start_defs();
5896 
5897 /**
5898  * scx_bpf_select_cpu_dfl - The default implementation of ops.select_cpu()
5899  * @p: task_struct to select a CPU for
5900  * @prev_cpu: CPU @p was on previously
5901  * @wake_flags: %SCX_WAKE_* flags
5902  * @is_idle: out parameter indicating whether the returned CPU is idle
5903  *
5904  * Can only be called from ops.select_cpu() if the built-in CPU selection is
5905  * enabled - ops.update_idle() is missing or %SCX_OPS_KEEP_BUILTIN_IDLE is set.
5906  * @p, @prev_cpu and @wake_flags match ops.select_cpu().
5907  *
5908  * Returns the picked CPU with *@is_idle indicating whether the picked CPU is
5909  * currently idle and thus a good candidate for direct dispatching.
5910  */
5911 __bpf_kfunc s32 scx_bpf_select_cpu_dfl(struct task_struct *p, s32 prev_cpu,
5912 				       u64 wake_flags, bool *is_idle)
5913 {
5914 	if (!static_branch_likely(&scx_builtin_idle_enabled)) {
5915 		scx_ops_error("built-in idle tracking is disabled");
5916 		goto prev_cpu;
5917 	}
5918 
5919 	if (!scx_kf_allowed(SCX_KF_SELECT_CPU))
5920 		goto prev_cpu;
5921 
5922 #ifdef CONFIG_SMP
5923 	return scx_select_cpu_dfl(p, prev_cpu, wake_flags, is_idle);
5924 #endif
5925 
5926 prev_cpu:
5927 	*is_idle = false;
5928 	return prev_cpu;
5929 }
5930 
5931 __bpf_kfunc_end_defs();
5932 
5933 BTF_KFUNCS_START(scx_kfunc_ids_select_cpu)
5934 BTF_ID_FLAGS(func, scx_bpf_select_cpu_dfl, KF_RCU)
5935 BTF_KFUNCS_END(scx_kfunc_ids_select_cpu)
5936 
5937 static const struct btf_kfunc_id_set scx_kfunc_set_select_cpu = {
5938 	.owner			= THIS_MODULE,
5939 	.set			= &scx_kfunc_ids_select_cpu,
5940 };
5941 
5942 static bool scx_dispatch_preamble(struct task_struct *p, u64 enq_flags)
5943 {
5944 	if (!scx_kf_allowed(SCX_KF_ENQUEUE | SCX_KF_DISPATCH))
5945 		return false;
5946 
5947 	lockdep_assert_irqs_disabled();
5948 
5949 	if (unlikely(!p)) {
5950 		scx_ops_error("called with NULL task");
5951 		return false;
5952 	}
5953 
5954 	if (unlikely(enq_flags & __SCX_ENQ_INTERNAL_MASK)) {
5955 		scx_ops_error("invalid enq_flags 0x%llx", enq_flags);
5956 		return false;
5957 	}
5958 
5959 	return true;
5960 }
5961 
5962 static void scx_dispatch_commit(struct task_struct *p, u64 dsq_id, u64 enq_flags)
5963 {
5964 	struct scx_dsp_ctx *dspc = this_cpu_ptr(scx_dsp_ctx);
5965 	struct task_struct *ddsp_task;
5966 
5967 	ddsp_task = __this_cpu_read(direct_dispatch_task);
5968 	if (ddsp_task) {
5969 		mark_direct_dispatch(ddsp_task, p, dsq_id, enq_flags);
5970 		return;
5971 	}
5972 
5973 	if (unlikely(dspc->cursor >= scx_dsp_max_batch)) {
5974 		scx_ops_error("dispatch buffer overflow");
5975 		return;
5976 	}
5977 
5978 	dspc->buf[dspc->cursor++] = (struct scx_dsp_buf_ent){
5979 		.task = p,
5980 		.qseq = atomic_long_read(&p->scx.ops_state) & SCX_OPSS_QSEQ_MASK,
5981 		.dsq_id = dsq_id,
5982 		.enq_flags = enq_flags,
5983 	};
5984 }
5985 
5986 __bpf_kfunc_start_defs();
5987 
5988 /**
5989  * scx_bpf_dispatch - Dispatch a task into the FIFO queue of a DSQ
5990  * @p: task_struct to dispatch
5991  * @dsq_id: DSQ to dispatch to
5992  * @slice: duration @p can run for in nsecs, 0 to keep the current value
5993  * @enq_flags: SCX_ENQ_*
5994  *
5995  * Dispatch @p into the FIFO queue of the DSQ identified by @dsq_id. It is safe
5996  * to call this function spuriously. Can be called from ops.enqueue(),
5997  * ops.select_cpu(), and ops.dispatch().
5998  *
5999  * When called from ops.select_cpu() or ops.enqueue(), it's for direct dispatch
6000  * and @p must match the task being enqueued. Also, %SCX_DSQ_LOCAL_ON can't be
6001  * used to target the local DSQ of a CPU other than the enqueueing one. Use
6002  * ops.select_cpu() to be on the target CPU in the first place.
6003  *
6004  * When called from ops.select_cpu(), @enq_flags and @dsp_id are stored, and @p
6005  * will be directly dispatched to the corresponding dispatch queue after
6006  * ops.select_cpu() returns. If @p is dispatched to SCX_DSQ_LOCAL, it will be
6007  * dispatched to the local DSQ of the CPU returned by ops.select_cpu().
6008  * @enq_flags are OR'd with the enqueue flags on the enqueue path before the
6009  * task is dispatched.
6010  *
6011  * When called from ops.dispatch(), there are no restrictions on @p or @dsq_id
6012  * and this function can be called upto ops.dispatch_max_batch times to dispatch
6013  * multiple tasks. scx_bpf_dispatch_nr_slots() returns the number of the
6014  * remaining slots. scx_bpf_consume() flushes the batch and resets the counter.
6015  *
6016  * This function doesn't have any locking restrictions and may be called under
6017  * BPF locks (in the future when BPF introduces more flexible locking).
6018  *
6019  * @p is allowed to run for @slice. The scheduling path is triggered on slice
6020  * exhaustion. If zero, the current residual slice is maintained. If
6021  * %SCX_SLICE_INF, @p never expires and the BPF scheduler must kick the CPU with
6022  * scx_bpf_kick_cpu() to trigger scheduling.
6023  */
6024 __bpf_kfunc void scx_bpf_dispatch(struct task_struct *p, u64 dsq_id, u64 slice,
6025 				  u64 enq_flags)
6026 {
6027 	if (!scx_dispatch_preamble(p, enq_flags))
6028 		return;
6029 
6030 	if (slice)
6031 		p->scx.slice = slice;
6032 	else
6033 		p->scx.slice = p->scx.slice ?: 1;
6034 
6035 	scx_dispatch_commit(p, dsq_id, enq_flags);
6036 }
6037 
6038 /**
6039  * scx_bpf_dispatch_vtime - Dispatch a task into the vtime priority queue of a DSQ
6040  * @p: task_struct to dispatch
6041  * @dsq_id: DSQ to dispatch to
6042  * @slice: duration @p can run for in nsecs, 0 to keep the current value
6043  * @vtime: @p's ordering inside the vtime-sorted queue of the target DSQ
6044  * @enq_flags: SCX_ENQ_*
6045  *
6046  * Dispatch @p into the vtime priority queue of the DSQ identified by @dsq_id.
6047  * Tasks queued into the priority queue are ordered by @vtime and always
6048  * consumed after the tasks in the FIFO queue. All other aspects are identical
6049  * to scx_bpf_dispatch().
6050  *
6051  * @vtime ordering is according to time_before64() which considers wrapping. A
6052  * numerically larger vtime may indicate an earlier position in the ordering and
6053  * vice-versa.
6054  */
6055 __bpf_kfunc void scx_bpf_dispatch_vtime(struct task_struct *p, u64 dsq_id,
6056 					u64 slice, u64 vtime, u64 enq_flags)
6057 {
6058 	if (!scx_dispatch_preamble(p, enq_flags))
6059 		return;
6060 
6061 	if (slice)
6062 		p->scx.slice = slice;
6063 	else
6064 		p->scx.slice = p->scx.slice ?: 1;
6065 
6066 	p->scx.dsq_vtime = vtime;
6067 
6068 	scx_dispatch_commit(p, dsq_id, enq_flags | SCX_ENQ_DSQ_PRIQ);
6069 }
6070 
6071 __bpf_kfunc_end_defs();
6072 
6073 BTF_KFUNCS_START(scx_kfunc_ids_enqueue_dispatch)
6074 BTF_ID_FLAGS(func, scx_bpf_dispatch, KF_RCU)
6075 BTF_ID_FLAGS(func, scx_bpf_dispatch_vtime, KF_RCU)
6076 BTF_KFUNCS_END(scx_kfunc_ids_enqueue_dispatch)
6077 
6078 static const struct btf_kfunc_id_set scx_kfunc_set_enqueue_dispatch = {
6079 	.owner			= THIS_MODULE,
6080 	.set			= &scx_kfunc_ids_enqueue_dispatch,
6081 };
6082 
6083 static bool scx_dispatch_from_dsq(struct bpf_iter_scx_dsq_kern *kit,
6084 				  struct task_struct *p, u64 dsq_id,
6085 				  u64 enq_flags)
6086 {
6087 	struct scx_dispatch_q *src_dsq = kit->dsq, *dst_dsq;
6088 	struct rq *this_rq, *src_rq, *dst_rq, *locked_rq;
6089 	bool dispatched = false;
6090 	bool in_balance;
6091 	unsigned long flags;
6092 
6093 	if (!scx_kf_allowed_if_unlocked() && !scx_kf_allowed(SCX_KF_DISPATCH))
6094 		return false;
6095 
6096 	/*
6097 	 * Can be called from either ops.dispatch() locking this_rq() or any
6098 	 * context where no rq lock is held. If latter, lock @p's task_rq which
6099 	 * we'll likely need anyway.
6100 	 */
6101 	src_rq = task_rq(p);
6102 
6103 	local_irq_save(flags);
6104 	this_rq = this_rq();
6105 	in_balance = this_rq->scx.flags & SCX_RQ_IN_BALANCE;
6106 
6107 	if (in_balance) {
6108 		if (this_rq != src_rq) {
6109 			raw_spin_rq_unlock(this_rq);
6110 			raw_spin_rq_lock(src_rq);
6111 		}
6112 	} else {
6113 		raw_spin_rq_lock(src_rq);
6114 	}
6115 
6116 	locked_rq = src_rq;
6117 	raw_spin_lock(&src_dsq->lock);
6118 
6119 	/*
6120 	 * Did someone else get to it? @p could have already left $src_dsq, got
6121 	 * re-enqueud, or be in the process of being consumed by someone else.
6122 	 */
6123 	if (unlikely(p->scx.dsq != src_dsq ||
6124 		     u32_before(kit->cursor.priv, p->scx.dsq_seq) ||
6125 		     p->scx.holding_cpu >= 0) ||
6126 	    WARN_ON_ONCE(src_rq != task_rq(p))) {
6127 		raw_spin_unlock(&src_dsq->lock);
6128 		goto out;
6129 	}
6130 
6131 	/* @p is still on $src_dsq and stable, determine the destination */
6132 	dst_dsq = find_dsq_for_dispatch(this_rq, dsq_id, p);
6133 
6134 	if (dst_dsq->id == SCX_DSQ_LOCAL) {
6135 		dst_rq = container_of(dst_dsq, struct rq, scx.local_dsq);
6136 		if (!task_can_run_on_remote_rq(p, dst_rq, true)) {
6137 			dst_dsq = find_global_dsq(p);
6138 			dst_rq = src_rq;
6139 		}
6140 	} else {
6141 		/* no need to migrate if destination is a non-local DSQ */
6142 		dst_rq = src_rq;
6143 	}
6144 
6145 	/*
6146 	 * Move @p into $dst_dsq. If $dst_dsq is the local DSQ of a different
6147 	 * CPU, @p will be migrated.
6148 	 */
6149 	if (dst_dsq->id == SCX_DSQ_LOCAL) {
6150 		/* @p is going from a non-local DSQ to a local DSQ */
6151 		if (src_rq == dst_rq) {
6152 			task_unlink_from_dsq(p, src_dsq);
6153 			move_local_task_to_local_dsq(p, enq_flags,
6154 						     src_dsq, dst_rq);
6155 			raw_spin_unlock(&src_dsq->lock);
6156 		} else {
6157 			raw_spin_unlock(&src_dsq->lock);
6158 			move_remote_task_to_local_dsq(p, enq_flags,
6159 						      src_rq, dst_rq);
6160 			locked_rq = dst_rq;
6161 		}
6162 	} else {
6163 		/*
6164 		 * @p is going from a non-local DSQ to a non-local DSQ. As
6165 		 * $src_dsq is already locked, do an abbreviated dequeue.
6166 		 */
6167 		task_unlink_from_dsq(p, src_dsq);
6168 		p->scx.dsq = NULL;
6169 		raw_spin_unlock(&src_dsq->lock);
6170 
6171 		if (kit->cursor.flags & __SCX_DSQ_ITER_HAS_VTIME)
6172 			p->scx.dsq_vtime = kit->vtime;
6173 		dispatch_enqueue(dst_dsq, p, enq_flags);
6174 	}
6175 
6176 	if (kit->cursor.flags & __SCX_DSQ_ITER_HAS_SLICE)
6177 		p->scx.slice = kit->slice;
6178 
6179 	dispatched = true;
6180 out:
6181 	if (in_balance) {
6182 		if (this_rq != locked_rq) {
6183 			raw_spin_rq_unlock(locked_rq);
6184 			raw_spin_rq_lock(this_rq);
6185 		}
6186 	} else {
6187 		raw_spin_rq_unlock_irqrestore(locked_rq, flags);
6188 	}
6189 
6190 	kit->cursor.flags &= ~(__SCX_DSQ_ITER_HAS_SLICE |
6191 			       __SCX_DSQ_ITER_HAS_VTIME);
6192 	return dispatched;
6193 }
6194 
6195 __bpf_kfunc_start_defs();
6196 
6197 /**
6198  * scx_bpf_dispatch_nr_slots - Return the number of remaining dispatch slots
6199  *
6200  * Can only be called from ops.dispatch().
6201  */
6202 __bpf_kfunc u32 scx_bpf_dispatch_nr_slots(void)
6203 {
6204 	if (!scx_kf_allowed(SCX_KF_DISPATCH))
6205 		return 0;
6206 
6207 	return scx_dsp_max_batch - __this_cpu_read(scx_dsp_ctx->cursor);
6208 }
6209 
6210 /**
6211  * scx_bpf_dispatch_cancel - Cancel the latest dispatch
6212  *
6213  * Cancel the latest dispatch. Can be called multiple times to cancel further
6214  * dispatches. Can only be called from ops.dispatch().
6215  */
6216 __bpf_kfunc void scx_bpf_dispatch_cancel(void)
6217 {
6218 	struct scx_dsp_ctx *dspc = this_cpu_ptr(scx_dsp_ctx);
6219 
6220 	if (!scx_kf_allowed(SCX_KF_DISPATCH))
6221 		return;
6222 
6223 	if (dspc->cursor > 0)
6224 		dspc->cursor--;
6225 	else
6226 		scx_ops_error("dispatch buffer underflow");
6227 }
6228 
6229 /**
6230  * scx_bpf_consume - Transfer a task from a DSQ to the current CPU's local DSQ
6231  * @dsq_id: DSQ to consume
6232  *
6233  * Consume a task from the non-local DSQ identified by @dsq_id and transfer it
6234  * to the current CPU's local DSQ for execution. Can only be called from
6235  * ops.dispatch().
6236  *
6237  * This function flushes the in-flight dispatches from scx_bpf_dispatch() before
6238  * trying to consume the specified DSQ. It may also grab rq locks and thus can't
6239  * be called under any BPF locks.
6240  *
6241  * Returns %true if a task has been consumed, %false if there isn't any task to
6242  * consume.
6243  */
6244 __bpf_kfunc bool scx_bpf_consume(u64 dsq_id)
6245 {
6246 	struct scx_dsp_ctx *dspc = this_cpu_ptr(scx_dsp_ctx);
6247 	struct scx_dispatch_q *dsq;
6248 
6249 	if (!scx_kf_allowed(SCX_KF_DISPATCH))
6250 		return false;
6251 
6252 	flush_dispatch_buf(dspc->rq);
6253 
6254 	dsq = find_user_dsq(dsq_id);
6255 	if (unlikely(!dsq)) {
6256 		scx_ops_error("invalid DSQ ID 0x%016llx", dsq_id);
6257 		return false;
6258 	}
6259 
6260 	if (consume_dispatch_q(dspc->rq, dsq)) {
6261 		/*
6262 		 * A successfully consumed task can be dequeued before it starts
6263 		 * running while the CPU is trying to migrate other dispatched
6264 		 * tasks. Bump nr_tasks to tell balance_scx() to retry on empty
6265 		 * local DSQ.
6266 		 */
6267 		dspc->nr_tasks++;
6268 		return true;
6269 	} else {
6270 		return false;
6271 	}
6272 }
6273 
6274 /**
6275  * scx_bpf_dispatch_from_dsq_set_slice - Override slice when dispatching from DSQ
6276  * @it__iter: DSQ iterator in progress
6277  * @slice: duration the dispatched task can run for in nsecs
6278  *
6279  * Override the slice of the next task that will be dispatched from @it__iter
6280  * using scx_bpf_dispatch_from_dsq[_vtime](). If this function is not called,
6281  * the previous slice duration is kept.
6282  */
6283 __bpf_kfunc void scx_bpf_dispatch_from_dsq_set_slice(
6284 				struct bpf_iter_scx_dsq *it__iter, u64 slice)
6285 {
6286 	struct bpf_iter_scx_dsq_kern *kit = (void *)it__iter;
6287 
6288 	kit->slice = slice;
6289 	kit->cursor.flags |= __SCX_DSQ_ITER_HAS_SLICE;
6290 }
6291 
6292 /**
6293  * scx_bpf_dispatch_from_dsq_set_vtime - Override vtime when dispatching from DSQ
6294  * @it__iter: DSQ iterator in progress
6295  * @vtime: task's ordering inside the vtime-sorted queue of the target DSQ
6296  *
6297  * Override the vtime of the next task that will be dispatched from @it__iter
6298  * using scx_bpf_dispatch_from_dsq_vtime(). If this function is not called, the
6299  * previous slice vtime is kept. If scx_bpf_dispatch_from_dsq() is used to
6300  * dispatch the next task, the override is ignored and cleared.
6301  */
6302 __bpf_kfunc void scx_bpf_dispatch_from_dsq_set_vtime(
6303 				struct bpf_iter_scx_dsq *it__iter, u64 vtime)
6304 {
6305 	struct bpf_iter_scx_dsq_kern *kit = (void *)it__iter;
6306 
6307 	kit->vtime = vtime;
6308 	kit->cursor.flags |= __SCX_DSQ_ITER_HAS_VTIME;
6309 }
6310 
6311 /**
6312  * scx_bpf_dispatch_from_dsq - Move a task from DSQ iteration to a DSQ
6313  * @it__iter: DSQ iterator in progress
6314  * @p: task to transfer
6315  * @dsq_id: DSQ to move @p to
6316  * @enq_flags: SCX_ENQ_*
6317  *
6318  * Transfer @p which is on the DSQ currently iterated by @it__iter to the DSQ
6319  * specified by @dsq_id. All DSQs - local DSQs, global DSQ and user DSQs - can
6320  * be the destination.
6321  *
6322  * For the transfer to be successful, @p must still be on the DSQ and have been
6323  * queued before the DSQ iteration started. This function doesn't care whether
6324  * @p was obtained from the DSQ iteration. @p just has to be on the DSQ and have
6325  * been queued before the iteration started.
6326  *
6327  * @p's slice is kept by default. Use scx_bpf_dispatch_from_dsq_set_slice() to
6328  * update.
6329  *
6330  * Can be called from ops.dispatch() or any BPF context which doesn't hold a rq
6331  * lock (e.g. BPF timers or SYSCALL programs).
6332  *
6333  * Returns %true if @p has been consumed, %false if @p had already been consumed
6334  * or dequeued.
6335  */
6336 __bpf_kfunc bool scx_bpf_dispatch_from_dsq(struct bpf_iter_scx_dsq *it__iter,
6337 					   struct task_struct *p, u64 dsq_id,
6338 					   u64 enq_flags)
6339 {
6340 	return scx_dispatch_from_dsq((struct bpf_iter_scx_dsq_kern *)it__iter,
6341 				     p, dsq_id, enq_flags);
6342 }
6343 
6344 /**
6345  * scx_bpf_dispatch_vtime_from_dsq - Move a task from DSQ iteration to a PRIQ DSQ
6346  * @it__iter: DSQ iterator in progress
6347  * @p: task to transfer
6348  * @dsq_id: DSQ to move @p to
6349  * @enq_flags: SCX_ENQ_*
6350  *
6351  * Transfer @p which is on the DSQ currently iterated by @it__iter to the
6352  * priority queue of the DSQ specified by @dsq_id. The destination must be a
6353  * user DSQ as only user DSQs support priority queue.
6354  *
6355  * @p's slice and vtime are kept by default. Use
6356  * scx_bpf_dispatch_from_dsq_set_slice() and
6357  * scx_bpf_dispatch_from_dsq_set_vtime() to update.
6358  *
6359  * All other aspects are identical to scx_bpf_dispatch_from_dsq(). See
6360  * scx_bpf_dispatch_vtime() for more information on @vtime.
6361  */
6362 __bpf_kfunc bool scx_bpf_dispatch_vtime_from_dsq(struct bpf_iter_scx_dsq *it__iter,
6363 						 struct task_struct *p, u64 dsq_id,
6364 						 u64 enq_flags)
6365 {
6366 	return scx_dispatch_from_dsq((struct bpf_iter_scx_dsq_kern *)it__iter,
6367 				     p, dsq_id, enq_flags | SCX_ENQ_DSQ_PRIQ);
6368 }
6369 
6370 __bpf_kfunc_end_defs();
6371 
6372 BTF_KFUNCS_START(scx_kfunc_ids_dispatch)
6373 BTF_ID_FLAGS(func, scx_bpf_dispatch_nr_slots)
6374 BTF_ID_FLAGS(func, scx_bpf_dispatch_cancel)
6375 BTF_ID_FLAGS(func, scx_bpf_consume)
6376 BTF_ID_FLAGS(func, scx_bpf_dispatch_from_dsq_set_slice)
6377 BTF_ID_FLAGS(func, scx_bpf_dispatch_from_dsq_set_vtime)
6378 BTF_ID_FLAGS(func, scx_bpf_dispatch_from_dsq, KF_RCU)
6379 BTF_ID_FLAGS(func, scx_bpf_dispatch_vtime_from_dsq, KF_RCU)
6380 BTF_KFUNCS_END(scx_kfunc_ids_dispatch)
6381 
6382 static const struct btf_kfunc_id_set scx_kfunc_set_dispatch = {
6383 	.owner			= THIS_MODULE,
6384 	.set			= &scx_kfunc_ids_dispatch,
6385 };
6386 
6387 __bpf_kfunc_start_defs();
6388 
6389 /**
6390  * scx_bpf_reenqueue_local - Re-enqueue tasks on a local DSQ
6391  *
6392  * Iterate over all of the tasks currently enqueued on the local DSQ of the
6393  * caller's CPU, and re-enqueue them in the BPF scheduler. Returns the number of
6394  * processed tasks. Can only be called from ops.cpu_release().
6395  */
6396 __bpf_kfunc u32 scx_bpf_reenqueue_local(void)
6397 {
6398 	LIST_HEAD(tasks);
6399 	u32 nr_enqueued = 0;
6400 	struct rq *rq;
6401 	struct task_struct *p, *n;
6402 
6403 	if (!scx_kf_allowed(SCX_KF_CPU_RELEASE))
6404 		return 0;
6405 
6406 	rq = cpu_rq(smp_processor_id());
6407 	lockdep_assert_rq_held(rq);
6408 
6409 	/*
6410 	 * The BPF scheduler may choose to dispatch tasks back to
6411 	 * @rq->scx.local_dsq. Move all candidate tasks off to a private list
6412 	 * first to avoid processing the same tasks repeatedly.
6413 	 */
6414 	list_for_each_entry_safe(p, n, &rq->scx.local_dsq.list,
6415 				 scx.dsq_list.node) {
6416 		/*
6417 		 * If @p is being migrated, @p's current CPU may not agree with
6418 		 * its allowed CPUs and the migration_cpu_stop is about to
6419 		 * deactivate and re-activate @p anyway. Skip re-enqueueing.
6420 		 *
6421 		 * While racing sched property changes may also dequeue and
6422 		 * re-enqueue a migrating task while its current CPU and allowed
6423 		 * CPUs disagree, they use %ENQUEUE_RESTORE which is bypassed to
6424 		 * the current local DSQ for running tasks and thus are not
6425 		 * visible to the BPF scheduler.
6426 		 */
6427 		if (p->migration_pending)
6428 			continue;
6429 
6430 		dispatch_dequeue(rq, p);
6431 		list_add_tail(&p->scx.dsq_list.node, &tasks);
6432 	}
6433 
6434 	list_for_each_entry_safe(p, n, &tasks, scx.dsq_list.node) {
6435 		list_del_init(&p->scx.dsq_list.node);
6436 		do_enqueue_task(rq, p, SCX_ENQ_REENQ, -1);
6437 		nr_enqueued++;
6438 	}
6439 
6440 	return nr_enqueued;
6441 }
6442 
6443 __bpf_kfunc_end_defs();
6444 
6445 BTF_KFUNCS_START(scx_kfunc_ids_cpu_release)
6446 BTF_ID_FLAGS(func, scx_bpf_reenqueue_local)
6447 BTF_KFUNCS_END(scx_kfunc_ids_cpu_release)
6448 
6449 static const struct btf_kfunc_id_set scx_kfunc_set_cpu_release = {
6450 	.owner			= THIS_MODULE,
6451 	.set			= &scx_kfunc_ids_cpu_release,
6452 };
6453 
6454 __bpf_kfunc_start_defs();
6455 
6456 /**
6457  * scx_bpf_create_dsq - Create a custom DSQ
6458  * @dsq_id: DSQ to create
6459  * @node: NUMA node to allocate from
6460  *
6461  * Create a custom DSQ identified by @dsq_id. Can be called from any sleepable
6462  * scx callback, and any BPF_PROG_TYPE_SYSCALL prog.
6463  */
6464 __bpf_kfunc s32 scx_bpf_create_dsq(u64 dsq_id, s32 node)
6465 {
6466 	if (unlikely(node >= (int)nr_node_ids ||
6467 		     (node < 0 && node != NUMA_NO_NODE)))
6468 		return -EINVAL;
6469 	return PTR_ERR_OR_ZERO(create_dsq(dsq_id, node));
6470 }
6471 
6472 __bpf_kfunc_end_defs();
6473 
6474 BTF_KFUNCS_START(scx_kfunc_ids_unlocked)
6475 BTF_ID_FLAGS(func, scx_bpf_create_dsq, KF_SLEEPABLE)
6476 BTF_ID_FLAGS(func, scx_bpf_dispatch_from_dsq, KF_RCU)
6477 BTF_ID_FLAGS(func, scx_bpf_dispatch_vtime_from_dsq, KF_RCU)
6478 BTF_KFUNCS_END(scx_kfunc_ids_unlocked)
6479 
6480 static const struct btf_kfunc_id_set scx_kfunc_set_unlocked = {
6481 	.owner			= THIS_MODULE,
6482 	.set			= &scx_kfunc_ids_unlocked,
6483 };
6484 
6485 __bpf_kfunc_start_defs();
6486 
6487 /**
6488  * scx_bpf_kick_cpu - Trigger reschedule on a CPU
6489  * @cpu: cpu to kick
6490  * @flags: %SCX_KICK_* flags
6491  *
6492  * Kick @cpu into rescheduling. This can be used to wake up an idle CPU or
6493  * trigger rescheduling on a busy CPU. This can be called from any online
6494  * scx_ops operation and the actual kicking is performed asynchronously through
6495  * an irq work.
6496  */
6497 __bpf_kfunc void scx_bpf_kick_cpu(s32 cpu, u64 flags)
6498 {
6499 	struct rq *this_rq;
6500 	unsigned long irq_flags;
6501 
6502 	if (!ops_cpu_valid(cpu, NULL))
6503 		return;
6504 
6505 	local_irq_save(irq_flags);
6506 
6507 	this_rq = this_rq();
6508 
6509 	/*
6510 	 * While bypassing for PM ops, IRQ handling may not be online which can
6511 	 * lead to irq_work_queue() malfunction such as infinite busy wait for
6512 	 * IRQ status update. Suppress kicking.
6513 	 */
6514 	if (scx_rq_bypassing(this_rq))
6515 		goto out;
6516 
6517 	/*
6518 	 * Actual kicking is bounced to kick_cpus_irq_workfn() to avoid nesting
6519 	 * rq locks. We can probably be smarter and avoid bouncing if called
6520 	 * from ops which don't hold a rq lock.
6521 	 */
6522 	if (flags & SCX_KICK_IDLE) {
6523 		struct rq *target_rq = cpu_rq(cpu);
6524 
6525 		if (unlikely(flags & (SCX_KICK_PREEMPT | SCX_KICK_WAIT)))
6526 			scx_ops_error("PREEMPT/WAIT cannot be used with SCX_KICK_IDLE");
6527 
6528 		if (raw_spin_rq_trylock(target_rq)) {
6529 			if (can_skip_idle_kick(target_rq)) {
6530 				raw_spin_rq_unlock(target_rq);
6531 				goto out;
6532 			}
6533 			raw_spin_rq_unlock(target_rq);
6534 		}
6535 		cpumask_set_cpu(cpu, this_rq->scx.cpus_to_kick_if_idle);
6536 	} else {
6537 		cpumask_set_cpu(cpu, this_rq->scx.cpus_to_kick);
6538 
6539 		if (flags & SCX_KICK_PREEMPT)
6540 			cpumask_set_cpu(cpu, this_rq->scx.cpus_to_preempt);
6541 		if (flags & SCX_KICK_WAIT)
6542 			cpumask_set_cpu(cpu, this_rq->scx.cpus_to_wait);
6543 	}
6544 
6545 	irq_work_queue(&this_rq->scx.kick_cpus_irq_work);
6546 out:
6547 	local_irq_restore(irq_flags);
6548 }
6549 
6550 /**
6551  * scx_bpf_dsq_nr_queued - Return the number of queued tasks
6552  * @dsq_id: id of the DSQ
6553  *
6554  * Return the number of tasks in the DSQ matching @dsq_id. If not found,
6555  * -%ENOENT is returned.
6556  */
6557 __bpf_kfunc s32 scx_bpf_dsq_nr_queued(u64 dsq_id)
6558 {
6559 	struct scx_dispatch_q *dsq;
6560 	s32 ret;
6561 
6562 	preempt_disable();
6563 
6564 	if (dsq_id == SCX_DSQ_LOCAL) {
6565 		ret = READ_ONCE(this_rq()->scx.local_dsq.nr);
6566 		goto out;
6567 	} else if ((dsq_id & SCX_DSQ_LOCAL_ON) == SCX_DSQ_LOCAL_ON) {
6568 		s32 cpu = dsq_id & SCX_DSQ_LOCAL_CPU_MASK;
6569 
6570 		if (ops_cpu_valid(cpu, NULL)) {
6571 			ret = READ_ONCE(cpu_rq(cpu)->scx.local_dsq.nr);
6572 			goto out;
6573 		}
6574 	} else {
6575 		dsq = find_user_dsq(dsq_id);
6576 		if (dsq) {
6577 			ret = READ_ONCE(dsq->nr);
6578 			goto out;
6579 		}
6580 	}
6581 	ret = -ENOENT;
6582 out:
6583 	preempt_enable();
6584 	return ret;
6585 }
6586 
6587 /**
6588  * scx_bpf_destroy_dsq - Destroy a custom DSQ
6589  * @dsq_id: DSQ to destroy
6590  *
6591  * Destroy the custom DSQ identified by @dsq_id. Only DSQs created with
6592  * scx_bpf_create_dsq() can be destroyed. The caller must ensure that the DSQ is
6593  * empty and no further tasks are dispatched to it. Ignored if called on a DSQ
6594  * which doesn't exist. Can be called from any online scx_ops operations.
6595  */
6596 __bpf_kfunc void scx_bpf_destroy_dsq(u64 dsq_id)
6597 {
6598 	destroy_dsq(dsq_id);
6599 }
6600 
6601 /**
6602  * bpf_iter_scx_dsq_new - Create a DSQ iterator
6603  * @it: iterator to initialize
6604  * @dsq_id: DSQ to iterate
6605  * @flags: %SCX_DSQ_ITER_*
6606  *
6607  * Initialize BPF iterator @it which can be used with bpf_for_each() to walk
6608  * tasks in the DSQ specified by @dsq_id. Iteration using @it only includes
6609  * tasks which are already queued when this function is invoked.
6610  */
6611 __bpf_kfunc int bpf_iter_scx_dsq_new(struct bpf_iter_scx_dsq *it, u64 dsq_id,
6612 				     u64 flags)
6613 {
6614 	struct bpf_iter_scx_dsq_kern *kit = (void *)it;
6615 
6616 	BUILD_BUG_ON(sizeof(struct bpf_iter_scx_dsq_kern) >
6617 		     sizeof(struct bpf_iter_scx_dsq));
6618 	BUILD_BUG_ON(__alignof__(struct bpf_iter_scx_dsq_kern) !=
6619 		     __alignof__(struct bpf_iter_scx_dsq));
6620 
6621 	if (flags & ~__SCX_DSQ_ITER_USER_FLAGS)
6622 		return -EINVAL;
6623 
6624 	kit->dsq = find_user_dsq(dsq_id);
6625 	if (!kit->dsq)
6626 		return -ENOENT;
6627 
6628 	INIT_LIST_HEAD(&kit->cursor.node);
6629 	kit->cursor.flags |= SCX_DSQ_LNODE_ITER_CURSOR | flags;
6630 	kit->cursor.priv = READ_ONCE(kit->dsq->seq);
6631 
6632 	return 0;
6633 }
6634 
6635 /**
6636  * bpf_iter_scx_dsq_next - Progress a DSQ iterator
6637  * @it: iterator to progress
6638  *
6639  * Return the next task. See bpf_iter_scx_dsq_new().
6640  */
6641 __bpf_kfunc struct task_struct *bpf_iter_scx_dsq_next(struct bpf_iter_scx_dsq *it)
6642 {
6643 	struct bpf_iter_scx_dsq_kern *kit = (void *)it;
6644 	bool rev = kit->cursor.flags & SCX_DSQ_ITER_REV;
6645 	struct task_struct *p;
6646 	unsigned long flags;
6647 
6648 	if (!kit->dsq)
6649 		return NULL;
6650 
6651 	raw_spin_lock_irqsave(&kit->dsq->lock, flags);
6652 
6653 	if (list_empty(&kit->cursor.node))
6654 		p = NULL;
6655 	else
6656 		p = container_of(&kit->cursor, struct task_struct, scx.dsq_list);
6657 
6658 	/*
6659 	 * Only tasks which were queued before the iteration started are
6660 	 * visible. This bounds BPF iterations and guarantees that vtime never
6661 	 * jumps in the other direction while iterating.
6662 	 */
6663 	do {
6664 		p = nldsq_next_task(kit->dsq, p, rev);
6665 	} while (p && unlikely(u32_before(kit->cursor.priv, p->scx.dsq_seq)));
6666 
6667 	if (p) {
6668 		if (rev)
6669 			list_move_tail(&kit->cursor.node, &p->scx.dsq_list.node);
6670 		else
6671 			list_move(&kit->cursor.node, &p->scx.dsq_list.node);
6672 	} else {
6673 		list_del_init(&kit->cursor.node);
6674 	}
6675 
6676 	raw_spin_unlock_irqrestore(&kit->dsq->lock, flags);
6677 
6678 	return p;
6679 }
6680 
6681 /**
6682  * bpf_iter_scx_dsq_destroy - Destroy a DSQ iterator
6683  * @it: iterator to destroy
6684  *
6685  * Undo scx_iter_scx_dsq_new().
6686  */
6687 __bpf_kfunc void bpf_iter_scx_dsq_destroy(struct bpf_iter_scx_dsq *it)
6688 {
6689 	struct bpf_iter_scx_dsq_kern *kit = (void *)it;
6690 
6691 	if (!kit->dsq)
6692 		return;
6693 
6694 	if (!list_empty(&kit->cursor.node)) {
6695 		unsigned long flags;
6696 
6697 		raw_spin_lock_irqsave(&kit->dsq->lock, flags);
6698 		list_del_init(&kit->cursor.node);
6699 		raw_spin_unlock_irqrestore(&kit->dsq->lock, flags);
6700 	}
6701 	kit->dsq = NULL;
6702 }
6703 
6704 __bpf_kfunc_end_defs();
6705 
6706 static s32 __bstr_format(u64 *data_buf, char *line_buf, size_t line_size,
6707 			 char *fmt, unsigned long long *data, u32 data__sz)
6708 {
6709 	struct bpf_bprintf_data bprintf_data = { .get_bin_args = true };
6710 	s32 ret;
6711 
6712 	if (data__sz % 8 || data__sz > MAX_BPRINTF_VARARGS * 8 ||
6713 	    (data__sz && !data)) {
6714 		scx_ops_error("invalid data=%p and data__sz=%u",
6715 			      (void *)data, data__sz);
6716 		return -EINVAL;
6717 	}
6718 
6719 	ret = copy_from_kernel_nofault(data_buf, data, data__sz);
6720 	if (ret < 0) {
6721 		scx_ops_error("failed to read data fields (%d)", ret);
6722 		return ret;
6723 	}
6724 
6725 	ret = bpf_bprintf_prepare(fmt, UINT_MAX, data_buf, data__sz / 8,
6726 				  &bprintf_data);
6727 	if (ret < 0) {
6728 		scx_ops_error("format preparation failed (%d)", ret);
6729 		return ret;
6730 	}
6731 
6732 	ret = bstr_printf(line_buf, line_size, fmt,
6733 			  bprintf_data.bin_args);
6734 	bpf_bprintf_cleanup(&bprintf_data);
6735 	if (ret < 0) {
6736 		scx_ops_error("(\"%s\", %p, %u) failed to format",
6737 			      fmt, data, data__sz);
6738 		return ret;
6739 	}
6740 
6741 	return ret;
6742 }
6743 
6744 static s32 bstr_format(struct scx_bstr_buf *buf,
6745 		       char *fmt, unsigned long long *data, u32 data__sz)
6746 {
6747 	return __bstr_format(buf->data, buf->line, sizeof(buf->line),
6748 			     fmt, data, data__sz);
6749 }
6750 
6751 __bpf_kfunc_start_defs();
6752 
6753 /**
6754  * scx_bpf_exit_bstr - Gracefully exit the BPF scheduler.
6755  * @exit_code: Exit value to pass to user space via struct scx_exit_info.
6756  * @fmt: error message format string
6757  * @data: format string parameters packaged using ___bpf_fill() macro
6758  * @data__sz: @data len, must end in '__sz' for the verifier
6759  *
6760  * Indicate that the BPF scheduler wants to exit gracefully, and initiate ops
6761  * disabling.
6762  */
6763 __bpf_kfunc void scx_bpf_exit_bstr(s64 exit_code, char *fmt,
6764 				   unsigned long long *data, u32 data__sz)
6765 {
6766 	unsigned long flags;
6767 
6768 	raw_spin_lock_irqsave(&scx_exit_bstr_buf_lock, flags);
6769 	if (bstr_format(&scx_exit_bstr_buf, fmt, data, data__sz) >= 0)
6770 		scx_ops_exit_kind(SCX_EXIT_UNREG_BPF, exit_code, "%s",
6771 				  scx_exit_bstr_buf.line);
6772 	raw_spin_unlock_irqrestore(&scx_exit_bstr_buf_lock, flags);
6773 }
6774 
6775 /**
6776  * scx_bpf_error_bstr - Indicate fatal error
6777  * @fmt: error message format string
6778  * @data: format string parameters packaged using ___bpf_fill() macro
6779  * @data__sz: @data len, must end in '__sz' for the verifier
6780  *
6781  * Indicate that the BPF scheduler encountered a fatal error and initiate ops
6782  * disabling.
6783  */
6784 __bpf_kfunc void scx_bpf_error_bstr(char *fmt, unsigned long long *data,
6785 				    u32 data__sz)
6786 {
6787 	unsigned long flags;
6788 
6789 	raw_spin_lock_irqsave(&scx_exit_bstr_buf_lock, flags);
6790 	if (bstr_format(&scx_exit_bstr_buf, fmt, data, data__sz) >= 0)
6791 		scx_ops_exit_kind(SCX_EXIT_ERROR_BPF, 0, "%s",
6792 				  scx_exit_bstr_buf.line);
6793 	raw_spin_unlock_irqrestore(&scx_exit_bstr_buf_lock, flags);
6794 }
6795 
6796 /**
6797  * scx_bpf_dump - Generate extra debug dump specific to the BPF scheduler
6798  * @fmt: format string
6799  * @data: format string parameters packaged using ___bpf_fill() macro
6800  * @data__sz: @data len, must end in '__sz' for the verifier
6801  *
6802  * To be called through scx_bpf_dump() helper from ops.dump(), dump_cpu() and
6803  * dump_task() to generate extra debug dump specific to the BPF scheduler.
6804  *
6805  * The extra dump may be multiple lines. A single line may be split over
6806  * multiple calls. The last line is automatically terminated.
6807  */
6808 __bpf_kfunc void scx_bpf_dump_bstr(char *fmt, unsigned long long *data,
6809 				   u32 data__sz)
6810 {
6811 	struct scx_dump_data *dd = &scx_dump_data;
6812 	struct scx_bstr_buf *buf = &dd->buf;
6813 	s32 ret;
6814 
6815 	if (raw_smp_processor_id() != dd->cpu) {
6816 		scx_ops_error("scx_bpf_dump() must only be called from ops.dump() and friends");
6817 		return;
6818 	}
6819 
6820 	/* append the formatted string to the line buf */
6821 	ret = __bstr_format(buf->data, buf->line + dd->cursor,
6822 			    sizeof(buf->line) - dd->cursor, fmt, data, data__sz);
6823 	if (ret < 0) {
6824 		dump_line(dd->s, "%s[!] (\"%s\", %p, %u) failed to format (%d)",
6825 			  dd->prefix, fmt, data, data__sz, ret);
6826 		return;
6827 	}
6828 
6829 	dd->cursor += ret;
6830 	dd->cursor = min_t(s32, dd->cursor, sizeof(buf->line));
6831 
6832 	if (!dd->cursor)
6833 		return;
6834 
6835 	/*
6836 	 * If the line buf overflowed or ends in a newline, flush it into the
6837 	 * dump. This is to allow the caller to generate a single line over
6838 	 * multiple calls. As ops_dump_flush() can also handle multiple lines in
6839 	 * the line buf, the only case which can lead to an unexpected
6840 	 * truncation is when the caller keeps generating newlines in the middle
6841 	 * instead of the end consecutively. Don't do that.
6842 	 */
6843 	if (dd->cursor >= sizeof(buf->line) || buf->line[dd->cursor - 1] == '\n')
6844 		ops_dump_flush();
6845 }
6846 
6847 /**
6848  * scx_bpf_cpuperf_cap - Query the maximum relative capacity of a CPU
6849  * @cpu: CPU of interest
6850  *
6851  * Return the maximum relative capacity of @cpu in relation to the most
6852  * performant CPU in the system. The return value is in the range [1,
6853  * %SCX_CPUPERF_ONE]. See scx_bpf_cpuperf_cur().
6854  */
6855 __bpf_kfunc u32 scx_bpf_cpuperf_cap(s32 cpu)
6856 {
6857 	if (ops_cpu_valid(cpu, NULL))
6858 		return arch_scale_cpu_capacity(cpu);
6859 	else
6860 		return SCX_CPUPERF_ONE;
6861 }
6862 
6863 /**
6864  * scx_bpf_cpuperf_cur - Query the current relative performance of a CPU
6865  * @cpu: CPU of interest
6866  *
6867  * Return the current relative performance of @cpu in relation to its maximum.
6868  * The return value is in the range [1, %SCX_CPUPERF_ONE].
6869  *
6870  * The current performance level of a CPU in relation to the maximum performance
6871  * available in the system can be calculated as follows:
6872  *
6873  *   scx_bpf_cpuperf_cap() * scx_bpf_cpuperf_cur() / %SCX_CPUPERF_ONE
6874  *
6875  * The result is in the range [1, %SCX_CPUPERF_ONE].
6876  */
6877 __bpf_kfunc u32 scx_bpf_cpuperf_cur(s32 cpu)
6878 {
6879 	if (ops_cpu_valid(cpu, NULL))
6880 		return arch_scale_freq_capacity(cpu);
6881 	else
6882 		return SCX_CPUPERF_ONE;
6883 }
6884 
6885 /**
6886  * scx_bpf_cpuperf_set - Set the relative performance target of a CPU
6887  * @cpu: CPU of interest
6888  * @perf: target performance level [0, %SCX_CPUPERF_ONE]
6889  * @flags: %SCX_CPUPERF_* flags
6890  *
6891  * Set the target performance level of @cpu to @perf. @perf is in linear
6892  * relative scale between 0 and %SCX_CPUPERF_ONE. This determines how the
6893  * schedutil cpufreq governor chooses the target frequency.
6894  *
6895  * The actual performance level chosen, CPU grouping, and the overhead and
6896  * latency of the operations are dependent on the hardware and cpufreq driver in
6897  * use. Consult hardware and cpufreq documentation for more information. The
6898  * current performance level can be monitored using scx_bpf_cpuperf_cur().
6899  */
6900 __bpf_kfunc void scx_bpf_cpuperf_set(s32 cpu, u32 perf)
6901 {
6902 	if (unlikely(perf > SCX_CPUPERF_ONE)) {
6903 		scx_ops_error("Invalid cpuperf target %u for CPU %d", perf, cpu);
6904 		return;
6905 	}
6906 
6907 	if (ops_cpu_valid(cpu, NULL)) {
6908 		struct rq *rq = cpu_rq(cpu);
6909 
6910 		rq->scx.cpuperf_target = perf;
6911 
6912 		rcu_read_lock_sched_notrace();
6913 		cpufreq_update_util(cpu_rq(cpu), 0);
6914 		rcu_read_unlock_sched_notrace();
6915 	}
6916 }
6917 
6918 /**
6919  * scx_bpf_nr_cpu_ids - Return the number of possible CPU IDs
6920  *
6921  * All valid CPU IDs in the system are smaller than the returned value.
6922  */
6923 __bpf_kfunc u32 scx_bpf_nr_cpu_ids(void)
6924 {
6925 	return nr_cpu_ids;
6926 }
6927 
6928 /**
6929  * scx_bpf_get_possible_cpumask - Get a referenced kptr to cpu_possible_mask
6930  */
6931 __bpf_kfunc const struct cpumask *scx_bpf_get_possible_cpumask(void)
6932 {
6933 	return cpu_possible_mask;
6934 }
6935 
6936 /**
6937  * scx_bpf_get_online_cpumask - Get a referenced kptr to cpu_online_mask
6938  */
6939 __bpf_kfunc const struct cpumask *scx_bpf_get_online_cpumask(void)
6940 {
6941 	return cpu_online_mask;
6942 }
6943 
6944 /**
6945  * scx_bpf_put_cpumask - Release a possible/online cpumask
6946  * @cpumask: cpumask to release
6947  */
6948 __bpf_kfunc void scx_bpf_put_cpumask(const struct cpumask *cpumask)
6949 {
6950 	/*
6951 	 * Empty function body because we aren't actually acquiring or releasing
6952 	 * a reference to a global cpumask, which is read-only in the caller and
6953 	 * is never released. The acquire / release semantics here are just used
6954 	 * to make the cpumask is a trusted pointer in the caller.
6955 	 */
6956 }
6957 
6958 /**
6959  * scx_bpf_get_idle_cpumask - Get a referenced kptr to the idle-tracking
6960  * per-CPU cpumask.
6961  *
6962  * Returns NULL if idle tracking is not enabled, or running on a UP kernel.
6963  */
6964 __bpf_kfunc const struct cpumask *scx_bpf_get_idle_cpumask(void)
6965 {
6966 	if (!static_branch_likely(&scx_builtin_idle_enabled)) {
6967 		scx_ops_error("built-in idle tracking is disabled");
6968 		return cpu_none_mask;
6969 	}
6970 
6971 #ifdef CONFIG_SMP
6972 	return idle_masks.cpu;
6973 #else
6974 	return cpu_none_mask;
6975 #endif
6976 }
6977 
6978 /**
6979  * scx_bpf_get_idle_smtmask - Get a referenced kptr to the idle-tracking,
6980  * per-physical-core cpumask. Can be used to determine if an entire physical
6981  * core is free.
6982  *
6983  * Returns NULL if idle tracking is not enabled, or running on a UP kernel.
6984  */
6985 __bpf_kfunc const struct cpumask *scx_bpf_get_idle_smtmask(void)
6986 {
6987 	if (!static_branch_likely(&scx_builtin_idle_enabled)) {
6988 		scx_ops_error("built-in idle tracking is disabled");
6989 		return cpu_none_mask;
6990 	}
6991 
6992 #ifdef CONFIG_SMP
6993 	if (sched_smt_active())
6994 		return idle_masks.smt;
6995 	else
6996 		return idle_masks.cpu;
6997 #else
6998 	return cpu_none_mask;
6999 #endif
7000 }
7001 
7002 /**
7003  * scx_bpf_put_idle_cpumask - Release a previously acquired referenced kptr to
7004  * either the percpu, or SMT idle-tracking cpumask.
7005  */
7006 __bpf_kfunc void scx_bpf_put_idle_cpumask(const struct cpumask *idle_mask)
7007 {
7008 	/*
7009 	 * Empty function body because we aren't actually acquiring or releasing
7010 	 * a reference to a global idle cpumask, which is read-only in the
7011 	 * caller and is never released. The acquire / release semantics here
7012 	 * are just used to make the cpumask a trusted pointer in the caller.
7013 	 */
7014 }
7015 
7016 /**
7017  * scx_bpf_test_and_clear_cpu_idle - Test and clear @cpu's idle state
7018  * @cpu: cpu to test and clear idle for
7019  *
7020  * Returns %true if @cpu was idle and its idle state was successfully cleared.
7021  * %false otherwise.
7022  *
7023  * Unavailable if ops.update_idle() is implemented and
7024  * %SCX_OPS_KEEP_BUILTIN_IDLE is not set.
7025  */
7026 __bpf_kfunc bool scx_bpf_test_and_clear_cpu_idle(s32 cpu)
7027 {
7028 	if (!static_branch_likely(&scx_builtin_idle_enabled)) {
7029 		scx_ops_error("built-in idle tracking is disabled");
7030 		return false;
7031 	}
7032 
7033 	if (ops_cpu_valid(cpu, NULL))
7034 		return test_and_clear_cpu_idle(cpu);
7035 	else
7036 		return false;
7037 }
7038 
7039 /**
7040  * scx_bpf_pick_idle_cpu - Pick and claim an idle cpu
7041  * @cpus_allowed: Allowed cpumask
7042  * @flags: %SCX_PICK_IDLE_CPU_* flags
7043  *
7044  * Pick and claim an idle cpu in @cpus_allowed. Returns the picked idle cpu
7045  * number on success. -%EBUSY if no matching cpu was found.
7046  *
7047  * Idle CPU tracking may race against CPU scheduling state transitions. For
7048  * example, this function may return -%EBUSY as CPUs are transitioning into the
7049  * idle state. If the caller then assumes that there will be dispatch events on
7050  * the CPUs as they were all busy, the scheduler may end up stalling with CPUs
7051  * idling while there are pending tasks. Use scx_bpf_pick_any_cpu() and
7052  * scx_bpf_kick_cpu() to guarantee that there will be at least one dispatch
7053  * event in the near future.
7054  *
7055  * Unavailable if ops.update_idle() is implemented and
7056  * %SCX_OPS_KEEP_BUILTIN_IDLE is not set.
7057  */
7058 __bpf_kfunc s32 scx_bpf_pick_idle_cpu(const struct cpumask *cpus_allowed,
7059 				      u64 flags)
7060 {
7061 	if (!static_branch_likely(&scx_builtin_idle_enabled)) {
7062 		scx_ops_error("built-in idle tracking is disabled");
7063 		return -EBUSY;
7064 	}
7065 
7066 	return scx_pick_idle_cpu(cpus_allowed, flags);
7067 }
7068 
7069 /**
7070  * scx_bpf_pick_any_cpu - Pick and claim an idle cpu if available or pick any CPU
7071  * @cpus_allowed: Allowed cpumask
7072  * @flags: %SCX_PICK_IDLE_CPU_* flags
7073  *
7074  * Pick and claim an idle cpu in @cpus_allowed. If none is available, pick any
7075  * CPU in @cpus_allowed. Guaranteed to succeed and returns the picked idle cpu
7076  * number if @cpus_allowed is not empty. -%EBUSY is returned if @cpus_allowed is
7077  * empty.
7078  *
7079  * If ops.update_idle() is implemented and %SCX_OPS_KEEP_BUILTIN_IDLE is not
7080  * set, this function can't tell which CPUs are idle and will always pick any
7081  * CPU.
7082  */
7083 __bpf_kfunc s32 scx_bpf_pick_any_cpu(const struct cpumask *cpus_allowed,
7084 				     u64 flags)
7085 {
7086 	s32 cpu;
7087 
7088 	if (static_branch_likely(&scx_builtin_idle_enabled)) {
7089 		cpu = scx_pick_idle_cpu(cpus_allowed, flags);
7090 		if (cpu >= 0)
7091 			return cpu;
7092 	}
7093 
7094 	cpu = cpumask_any_distribute(cpus_allowed);
7095 	if (cpu < nr_cpu_ids)
7096 		return cpu;
7097 	else
7098 		return -EBUSY;
7099 }
7100 
7101 /**
7102  * scx_bpf_task_running - Is task currently running?
7103  * @p: task of interest
7104  */
7105 __bpf_kfunc bool scx_bpf_task_running(const struct task_struct *p)
7106 {
7107 	return task_rq(p)->curr == p;
7108 }
7109 
7110 /**
7111  * scx_bpf_task_cpu - CPU a task is currently associated with
7112  * @p: task of interest
7113  */
7114 __bpf_kfunc s32 scx_bpf_task_cpu(const struct task_struct *p)
7115 {
7116 	return task_cpu(p);
7117 }
7118 
7119 /**
7120  * scx_bpf_cpu_rq - Fetch the rq of a CPU
7121  * @cpu: CPU of the rq
7122  */
7123 __bpf_kfunc struct rq *scx_bpf_cpu_rq(s32 cpu)
7124 {
7125 	if (!ops_cpu_valid(cpu, NULL))
7126 		return NULL;
7127 
7128 	return cpu_rq(cpu);
7129 }
7130 
7131 /**
7132  * scx_bpf_task_cgroup - Return the sched cgroup of a task
7133  * @p: task of interest
7134  *
7135  * @p->sched_task_group->css.cgroup represents the cgroup @p is associated with
7136  * from the scheduler's POV. SCX operations should use this function to
7137  * determine @p's current cgroup as, unlike following @p->cgroups,
7138  * @p->sched_task_group is protected by @p's rq lock and thus atomic w.r.t. all
7139  * rq-locked operations. Can be called on the parameter tasks of rq-locked
7140  * operations. The restriction guarantees that @p's rq is locked by the caller.
7141  */
7142 #ifdef CONFIG_CGROUP_SCHED
7143 __bpf_kfunc struct cgroup *scx_bpf_task_cgroup(struct task_struct *p)
7144 {
7145 	struct task_group *tg = p->sched_task_group;
7146 	struct cgroup *cgrp = &cgrp_dfl_root.cgrp;
7147 
7148 	if (!scx_kf_allowed_on_arg_tasks(__SCX_KF_RQ_LOCKED, p))
7149 		goto out;
7150 
7151 	/*
7152 	 * A task_group may either be a cgroup or an autogroup. In the latter
7153 	 * case, @tg->css.cgroup is %NULL. A task_group can't become the other
7154 	 * kind once created.
7155 	 */
7156 	if (tg && tg->css.cgroup)
7157 		cgrp = tg->css.cgroup;
7158 	else
7159 		cgrp = &cgrp_dfl_root.cgrp;
7160 out:
7161 	cgroup_get(cgrp);
7162 	return cgrp;
7163 }
7164 #endif
7165 
7166 __bpf_kfunc_end_defs();
7167 
7168 BTF_KFUNCS_START(scx_kfunc_ids_any)
7169 BTF_ID_FLAGS(func, scx_bpf_kick_cpu)
7170 BTF_ID_FLAGS(func, scx_bpf_dsq_nr_queued)
7171 BTF_ID_FLAGS(func, scx_bpf_destroy_dsq)
7172 BTF_ID_FLAGS(func, bpf_iter_scx_dsq_new, KF_ITER_NEW | KF_RCU_PROTECTED)
7173 BTF_ID_FLAGS(func, bpf_iter_scx_dsq_next, KF_ITER_NEXT | KF_RET_NULL)
7174 BTF_ID_FLAGS(func, bpf_iter_scx_dsq_destroy, KF_ITER_DESTROY)
7175 BTF_ID_FLAGS(func, scx_bpf_exit_bstr, KF_TRUSTED_ARGS)
7176 BTF_ID_FLAGS(func, scx_bpf_error_bstr, KF_TRUSTED_ARGS)
7177 BTF_ID_FLAGS(func, scx_bpf_dump_bstr, KF_TRUSTED_ARGS)
7178 BTF_ID_FLAGS(func, scx_bpf_cpuperf_cap)
7179 BTF_ID_FLAGS(func, scx_bpf_cpuperf_cur)
7180 BTF_ID_FLAGS(func, scx_bpf_cpuperf_set)
7181 BTF_ID_FLAGS(func, scx_bpf_nr_cpu_ids)
7182 BTF_ID_FLAGS(func, scx_bpf_get_possible_cpumask, KF_ACQUIRE)
7183 BTF_ID_FLAGS(func, scx_bpf_get_online_cpumask, KF_ACQUIRE)
7184 BTF_ID_FLAGS(func, scx_bpf_put_cpumask, KF_RELEASE)
7185 BTF_ID_FLAGS(func, scx_bpf_get_idle_cpumask, KF_ACQUIRE)
7186 BTF_ID_FLAGS(func, scx_bpf_get_idle_smtmask, KF_ACQUIRE)
7187 BTF_ID_FLAGS(func, scx_bpf_put_idle_cpumask, KF_RELEASE)
7188 BTF_ID_FLAGS(func, scx_bpf_test_and_clear_cpu_idle)
7189 BTF_ID_FLAGS(func, scx_bpf_pick_idle_cpu, KF_RCU)
7190 BTF_ID_FLAGS(func, scx_bpf_pick_any_cpu, KF_RCU)
7191 BTF_ID_FLAGS(func, scx_bpf_task_running, KF_RCU)
7192 BTF_ID_FLAGS(func, scx_bpf_task_cpu, KF_RCU)
7193 BTF_ID_FLAGS(func, scx_bpf_cpu_rq)
7194 #ifdef CONFIG_CGROUP_SCHED
7195 BTF_ID_FLAGS(func, scx_bpf_task_cgroup, KF_RCU | KF_ACQUIRE)
7196 #endif
7197 BTF_KFUNCS_END(scx_kfunc_ids_any)
7198 
7199 static const struct btf_kfunc_id_set scx_kfunc_set_any = {
7200 	.owner			= THIS_MODULE,
7201 	.set			= &scx_kfunc_ids_any,
7202 };
7203 
7204 static int __init scx_init(void)
7205 {
7206 	int ret;
7207 
7208 	/*
7209 	 * kfunc registration can't be done from init_sched_ext_class() as
7210 	 * register_btf_kfunc_id_set() needs most of the system to be up.
7211 	 *
7212 	 * Some kfuncs are context-sensitive and can only be called from
7213 	 * specific SCX ops. They are grouped into BTF sets accordingly.
7214 	 * Unfortunately, BPF currently doesn't have a way of enforcing such
7215 	 * restrictions. Eventually, the verifier should be able to enforce
7216 	 * them. For now, register them the same and make each kfunc explicitly
7217 	 * check using scx_kf_allowed().
7218 	 */
7219 	if ((ret = register_btf_kfunc_id_set(BPF_PROG_TYPE_STRUCT_OPS,
7220 					     &scx_kfunc_set_select_cpu)) ||
7221 	    (ret = register_btf_kfunc_id_set(BPF_PROG_TYPE_STRUCT_OPS,
7222 					     &scx_kfunc_set_enqueue_dispatch)) ||
7223 	    (ret = register_btf_kfunc_id_set(BPF_PROG_TYPE_STRUCT_OPS,
7224 					     &scx_kfunc_set_dispatch)) ||
7225 	    (ret = register_btf_kfunc_id_set(BPF_PROG_TYPE_STRUCT_OPS,
7226 					     &scx_kfunc_set_cpu_release)) ||
7227 	    (ret = register_btf_kfunc_id_set(BPF_PROG_TYPE_STRUCT_OPS,
7228 					     &scx_kfunc_set_unlocked)) ||
7229 	    (ret = register_btf_kfunc_id_set(BPF_PROG_TYPE_SYSCALL,
7230 					     &scx_kfunc_set_unlocked)) ||
7231 	    (ret = register_btf_kfunc_id_set(BPF_PROG_TYPE_STRUCT_OPS,
7232 					     &scx_kfunc_set_any)) ||
7233 	    (ret = register_btf_kfunc_id_set(BPF_PROG_TYPE_TRACING,
7234 					     &scx_kfunc_set_any)) ||
7235 	    (ret = register_btf_kfunc_id_set(BPF_PROG_TYPE_SYSCALL,
7236 					     &scx_kfunc_set_any))) {
7237 		pr_err("sched_ext: Failed to register kfunc sets (%d)\n", ret);
7238 		return ret;
7239 	}
7240 
7241 	ret = register_bpf_struct_ops(&bpf_sched_ext_ops, sched_ext_ops);
7242 	if (ret) {
7243 		pr_err("sched_ext: Failed to register struct_ops (%d)\n", ret);
7244 		return ret;
7245 	}
7246 
7247 	ret = register_pm_notifier(&scx_pm_notifier);
7248 	if (ret) {
7249 		pr_err("sched_ext: Failed to register PM notifier (%d)\n", ret);
7250 		return ret;
7251 	}
7252 
7253 	scx_kset = kset_create_and_add("sched_ext", &scx_uevent_ops, kernel_kobj);
7254 	if (!scx_kset) {
7255 		pr_err("sched_ext: Failed to create /sys/kernel/sched_ext\n");
7256 		return -ENOMEM;
7257 	}
7258 
7259 	ret = sysfs_create_group(&scx_kset->kobj, &scx_global_attr_group);
7260 	if (ret < 0) {
7261 		pr_err("sched_ext: Failed to add global attributes\n");
7262 		return ret;
7263 	}
7264 
7265 	return 0;
7266 }
7267 __initcall(scx_init);
7268