blob: b7a3f019971358c4a99575019026f531c37ef2bd [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Task management functions.
3 *
Willy Tarreau4726f532009-03-07 17:25:21 +01004 * Copyright 2000-2009 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Willy Tarreau87bed622009-03-08 22:25:28 +010013#include <string.h>
14
Willy Tarreaub2551052020-06-09 09:07:15 +020015#include <import/eb32tree.h>
16
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020017#include <haproxy/api.h>
Willy Tarreau5d9ddc52021-10-06 19:54:09 +020018#include <haproxy/activity.h>
Willy Tarreaue7723bd2020-06-24 11:11:02 +020019#include <haproxy/cfgparse.h>
Willy Tarreau55542642021-10-08 09:33:24 +020020#include <haproxy/clock.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020021#include <haproxy/fd.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020022#include <haproxy/list.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020023#include <haproxy/pool.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020024#include <haproxy/task.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020025#include <haproxy/tools.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020026
Willy Tarreaue08f4bf2021-05-08 20:10:13 +020027extern struct task *process_stream(struct task *t, void *context, unsigned int state);
Willy Tarreau6a28a302022-09-07 09:17:45 +020028extern void stream_update_timings(struct task *t, uint64_t lat, uint64_t cpu);
Willy Tarreaubaaee002006-06-26 02:48:02 +020029
Willy Tarreau8ceae722018-11-26 11:58:30 +010030DECLARE_POOL(pool_head_task, "task", sizeof(struct task));
31DECLARE_POOL(pool_head_tasklet, "tasklet", sizeof(struct tasklet));
Willy Tarreau96bcfd72007-04-29 10:41:56 +020032
Thierry FOURNIERd6975962017-07-12 14:31:10 +020033/* This is the memory pool containing all the signal structs. These
Joseph Herlantcf92b6d2018-11-15 14:19:23 -080034 * struct are used to store each required signal between two tasks.
Thierry FOURNIERd6975962017-07-12 14:31:10 +020035 */
Willy Tarreau8ceae722018-11-26 11:58:30 +010036DECLARE_POOL(pool_head_notification, "notification", sizeof(struct notification));
Thierry FOURNIERd6975962017-07-12 14:31:10 +020037
Willy Tarreaueb8c2c62020-06-30 11:48:48 +020038
39/* Flags the task <t> for immediate destruction and puts it into its first
40 * thread's shared tasklet list if not yet queued/running. This will bypass
41 * the priority scheduling and make the task show up as fast as possible in
42 * the other thread's queue. Note that this operation isn't idempotent and is
43 * not supposed to be run on the same task from multiple threads at once. It's
44 * the caller's responsibility to make sure it is the only one able to kill the
45 * task.
46 */
47void task_kill(struct task *t)
48{
Willy Tarreau144f84a2021-03-02 16:09:26 +010049 unsigned int state = t->state;
Willy Tarreaueb8c2c62020-06-30 11:48:48 +020050 unsigned int thr;
51
52 BUG_ON(state & TASK_KILLED);
53
54 while (1) {
55 while (state & (TASK_RUNNING | TASK_QUEUED)) {
56 /* task already in the queue and about to be executed,
57 * or even currently running. Just add the flag and be
58 * done with it, the process loop will detect it and kill
59 * it. The CAS will fail if we arrive too late.
60 */
61 if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_KILLED))
62 return;
63 }
64
65 /* We'll have to wake it up, but we must also secure it so that
66 * it doesn't vanish under us. TASK_QUEUED guarantees nobody will
67 * add past us.
68 */
69 if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_QUEUED | TASK_KILLED)) {
70 /* Bypass the tree and go directly into the shared tasklet list.
71 * Note: that's a task so it must be accounted for as such. Pick
72 * the task's first thread for the job.
73 */
Willy Tarreau29ffe262022-06-15 14:31:38 +020074 thr = t->tid >= 0 ? t->tid : tid;
Willy Tarreau54d31172020-07-02 14:14:00 +020075
76 /* Beware: tasks that have never run don't have their ->list empty yet! */
Willy Tarreau1a9c9222021-10-01 11:30:33 +020077 MT_LIST_APPEND(&ha_thread_ctx[thr].shared_tasklet_list,
Willy Tarreaucc5cd5b2022-01-28 09:48:12 +010078 list_to_mt_list(&((struct tasklet *)t)->list));
Willy Tarreau1a9c9222021-10-01 11:30:33 +020079 _HA_ATOMIC_INC(&ha_thread_ctx[thr].rq_total);
80 _HA_ATOMIC_INC(&ha_thread_ctx[thr].tasks_in_list);
Willy Tarreauf3efef42022-06-20 09:14:40 +020081 wake_thread(thr);
Willy Tarreau54d31172020-07-02 14:14:00 +020082 return;
Willy Tarreaueb8c2c62020-06-30 11:48:48 +020083 }
84 }
85}
86
Amaury Denoyelle7b368332021-07-28 16:12:57 +020087/* Equivalent of task_kill for tasklets. Mark the tasklet <t> for destruction.
88 * It will be deleted on the next scheduler invocation. This function is
89 * thread-safe : a thread can kill a tasklet of another thread.
90 */
91void tasklet_kill(struct tasklet *t)
92{
93 unsigned int state = t->state;
94 unsigned int thr;
95
96 BUG_ON(state & TASK_KILLED);
97
98 while (1) {
99 while (state & (TASK_IN_LIST)) {
100 /* Tasklet already in the list ready to be executed. Add
101 * the killed flag and wait for the process loop to
102 * detect it.
103 */
104 if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_KILLED))
105 return;
106 }
107
108 /* Mark the tasklet as killed and wake the thread to process it
109 * as soon as possible.
110 */
111 if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_IN_LIST | TASK_KILLED)) {
Willy Tarreau9b3aa632022-06-15 15:54:56 +0200112 thr = t->tid >= 0 ? t->tid : tid;
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200113 MT_LIST_APPEND(&ha_thread_ctx[thr].shared_tasklet_list,
Willy Tarreaucc5cd5b2022-01-28 09:48:12 +0100114 list_to_mt_list(&t->list));
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200115 _HA_ATOMIC_INC(&ha_thread_ctx[thr].rq_total);
Willy Tarreauf3efef42022-06-20 09:14:40 +0200116 wake_thread(thr);
Amaury Denoyelle7b368332021-07-28 16:12:57 +0200117 return;
118 }
119 }
120}
121
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100122/* Do not call this one, please use tasklet_wakeup_on() instead, as this one is
123 * the slow path of tasklet_wakeup_on() which performs some preliminary checks
124 * and sets TASK_IN_LIST before calling this one. A negative <thr> designates
125 * the current thread.
126 */
127void __tasklet_wakeup_on(struct tasklet *tl, int thr)
128{
129 if (likely(thr < 0)) {
130 /* this tasklet runs on the caller thread */
Willy Tarreau826fa872021-02-26 10:13:40 +0100131 if (tl->state & TASK_HEAVY) {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200132 LIST_APPEND(&th_ctx->tasklets[TL_HEAVY], &tl->list);
133 th_ctx->tl_class_mask |= 1 << TL_HEAVY;
Willy Tarreau826fa872021-02-26 10:13:40 +0100134 }
135 else if (tl->state & TASK_SELF_WAKING) {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200136 LIST_APPEND(&th_ctx->tasklets[TL_BULK], &tl->list);
137 th_ctx->tl_class_mask |= 1 << TL_BULK;
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100138 }
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200139 else if ((struct task *)tl == th_ctx->current) {
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100140 _HA_ATOMIC_OR(&tl->state, TASK_SELF_WAKING);
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200141 LIST_APPEND(&th_ctx->tasklets[TL_BULK], &tl->list);
142 th_ctx->tl_class_mask |= 1 << TL_BULK;
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100143 }
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200144 else if (th_ctx->current_queue < 0) {
145 LIST_APPEND(&th_ctx->tasklets[TL_URGENT], &tl->list);
146 th_ctx->tl_class_mask |= 1 << TL_URGENT;
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100147 }
148 else {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200149 LIST_APPEND(&th_ctx->tasklets[th_ctx->current_queue], &tl->list);
150 th_ctx->tl_class_mask |= 1 << th_ctx->current_queue;
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100151 }
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200152 _HA_ATOMIC_INC(&th_ctx->rq_total);
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100153 } else {
154 /* this tasklet runs on a specific thread. */
Willy Tarreaucc5cd5b2022-01-28 09:48:12 +0100155 MT_LIST_APPEND(&ha_thread_ctx[thr].shared_tasklet_list, list_to_mt_list(&tl->list));
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200156 _HA_ATOMIC_INC(&ha_thread_ctx[thr].rq_total);
Willy Tarreauf3efef42022-06-20 09:14:40 +0200157 wake_thread(thr);
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100158 }
159}
160
Frédéric Lécaillead548b52022-06-29 10:53:03 +0200161/* Do not call this one, please use tasklet_wakeup_after_on() instead, as this one is
162 * the slow path of tasklet_wakeup_after() which performs some preliminary checks
163 * and sets TASK_IN_LIST before calling this one.
164 */
165struct list *__tasklet_wakeup_after(struct list *head, struct tasklet *tl)
166{
167 BUG_ON(tid != tl->tid);
168 /* this tasklet runs on the caller thread */
169 if (!head) {
170 if (tl->state & TASK_HEAVY) {
171 LIST_INSERT(&th_ctx->tasklets[TL_HEAVY], &tl->list);
172 th_ctx->tl_class_mask |= 1 << TL_HEAVY;
173 }
174 else if (tl->state & TASK_SELF_WAKING) {
175 LIST_INSERT(&th_ctx->tasklets[TL_BULK], &tl->list);
176 th_ctx->tl_class_mask |= 1 << TL_BULK;
177 }
178 else if ((struct task *)tl == th_ctx->current) {
179 _HA_ATOMIC_OR(&tl->state, TASK_SELF_WAKING);
180 LIST_INSERT(&th_ctx->tasklets[TL_BULK], &tl->list);
181 th_ctx->tl_class_mask |= 1 << TL_BULK;
182 }
183 else if (th_ctx->current_queue < 0) {
184 LIST_INSERT(&th_ctx->tasklets[TL_URGENT], &tl->list);
185 th_ctx->tl_class_mask |= 1 << TL_URGENT;
186 }
187 else {
188 LIST_INSERT(&th_ctx->tasklets[th_ctx->current_queue], &tl->list);
189 th_ctx->tl_class_mask |= 1 << th_ctx->current_queue;
190 }
191 }
192 else {
193 LIST_APPEND(head, &tl->list);
194 }
195 _HA_ATOMIC_INC(&th_ctx->rq_total);
196 return &tl->list;
197}
198
Willy Tarreau4726f532009-03-07 17:25:21 +0100199/* Puts the task <t> in run queue at a position depending on t->nice. <t> is
200 * returned. The nice value assigns boosts in 32th of the run queue size. A
Christopher Faulet34c5cc92016-12-06 09:15:30 +0100201 * nice value of -1024 sets the task to -tasks_run_queue*32, while a nice value
202 * of 1024 sets the task to tasks_run_queue*32. The state flags are cleared, so
203 * the caller will have to set its flags after this call.
Willy Tarreau4726f532009-03-07 17:25:21 +0100204 * The task must not already be in the run queue. If unsure, use the safer
205 * task_wakeup() function.
Willy Tarreau91e99932008-06-30 07:51:00 +0200206 */
Willy Tarreau018564e2021-02-24 16:41:11 +0100207void __task_wakeup(struct task *t)
Willy Tarreaue33aece2007-04-30 13:15:14 +0200208{
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200209 struct eb_root *root = &th_ctx->rqueue;
Willy Tarreau29ffe262022-06-15 14:31:38 +0200210 int thr __maybe_unused = t->tid >= 0 ? t->tid : tid;
Willy Tarreau018564e2021-02-24 16:41:11 +0100211
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200212#ifdef USE_THREAD
Willy Tarreau29ffe262022-06-15 14:31:38 +0200213 if (thr != tid) {
Willy Tarreau6f780382022-06-16 15:30:50 +0200214 root = &ha_thread_ctx[thr].rqueue_shared;
Willy Tarreau018564e2021-02-24 16:41:11 +0100215
Willy Tarreauda195e82022-06-16 15:52:49 +0200216 _HA_ATOMIC_INC(&ha_thread_ctx[thr].rq_total);
Willy Tarreaub17dd6c2022-06-16 16:58:17 +0200217 HA_SPIN_LOCK(TASK_RQ_LOCK, &ha_thread_ctx[thr].rqsh_lock);
Willy Tarreau9c7b8082021-02-24 15:10:07 +0100218
Willy Tarreau6f780382022-06-16 15:30:50 +0200219 t->rq.key = _HA_ATOMIC_ADD_FETCH(&ha_thread_ctx[thr].rqueue_ticks, 1);
Olivier Houcharded1a6a02019-04-18 14:12:51 +0200220 __ha_barrier_store();
Willy Tarreauc6ba9a02021-02-20 12:49:54 +0100221 } else
Olivier Houchardc4aac9e2018-07-26 15:25:49 +0200222#endif
Willy Tarreau9c7b8082021-02-24 15:10:07 +0100223 {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200224 _HA_ATOMIC_INC(&th_ctx->rq_total);
Willy Tarreaua4fb79b2022-06-16 15:44:35 +0200225 t->rq.key = _HA_ATOMIC_ADD_FETCH(&th_ctx->rqueue_ticks, 1);
Willy Tarreau9c7b8082021-02-24 15:10:07 +0100226 }
Willy Tarreau91e99932008-06-30 07:51:00 +0200227
228 if (likely(t->nice)) {
229 int offset;
230
Willy Tarreau91a7c162022-07-07 15:25:40 +0200231 _HA_ATOMIC_INC(&tg_ctx->niced_tasks);
Willy Tarreau2d1fd0a2019-04-15 09:18:31 +0200232 offset = t->nice * (int)global.tune.runqueue_depth;
Willy Tarreau4726f532009-03-07 17:25:21 +0100233 t->rq.key += offset;
Willy Tarreau91e99932008-06-30 07:51:00 +0200234 }
235
Willy Tarreaubdcd3252022-06-22 09:19:46 +0200236 if (_HA_ATOMIC_LOAD(&th_ctx->flags) & TH_FL_TASK_PROFILING)
Willy Tarreau04e50b32022-09-07 14:49:50 +0200237 t->wake_date = now_mono_time();
Willy Tarreau9efd7452018-05-31 14:48:54 +0200238
Willy Tarreau319d1362022-06-16 16:28:01 +0200239 eb32_insert(root, &t->rq);
Willy Tarreau018564e2021-02-24 16:41:11 +0100240
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200241#ifdef USE_THREAD
Willy Tarreau29ffe262022-06-15 14:31:38 +0200242 if (thr != tid) {
Willy Tarreaub17dd6c2022-06-16 16:58:17 +0200243 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &ha_thread_ctx[thr].rqsh_lock);
Willy Tarreau2c41d772021-02-24 16:13:03 +0100244
Willy Tarreaueeffb3d2021-02-24 16:44:51 +0100245 /* If all threads that are supposed to handle this task are sleeping,
246 * wake one.
247 */
Willy Tarreauf3efef42022-06-20 09:14:40 +0200248 wake_thread(thr);
Olivier Houchard1b327902019-03-15 00:23:10 +0100249 }
Willy Tarreau85d9b842018-07-27 17:14:41 +0200250#endif
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200251 return;
Willy Tarreaue33aece2007-04-30 13:15:14 +0200252}
Willy Tarreaud825eef2007-05-12 22:35:00 +0200253
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200254/*
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100255 * __task_queue()
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200256 *
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200257 * Inserts a task into wait queue <wq> at the position given by its expiration
Willy Tarreau4726f532009-03-07 17:25:21 +0100258 * date. It does not matter if the task was already in the wait queue or not,
Willy Tarreau7a969992021-09-30 16:38:09 +0200259 * as it will be unlinked. The task MUST NOT have an infinite expiration timer.
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100260 * Last, tasks must not be queued further than the end of the tree, which is
261 * between <now_ms> and <now_ms> + 2^31 ms (now+24days in 32bit).
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100262 *
263 * This function should not be used directly, it is meant to be called by the
264 * inline version of task_queue() which performs a few cheap preliminary tests
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200265 * before deciding to call __task_queue(). Moreover this function doesn't care
266 * at all about locking so the caller must be careful when deciding whether to
267 * lock or not around this call.
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200268 */
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200269void __task_queue(struct task *task, struct eb_root *wq)
Willy Tarreau964c9362007-01-07 00:38:00 +0100270{
Willy Tarreaue5d79bc2020-07-22 14:29:42 +0200271#ifdef USE_THREAD
Willy Tarreaub0e77122022-07-07 15:22:55 +0200272 BUG_ON((wq == &tg_ctx->timers && task->tid >= 0) ||
Willy Tarreau159e3ac2022-06-15 16:48:45 +0200273 (wq == &th_ctx->timers && task->tid < 0) ||
Willy Tarreaub0e77122022-07-07 15:22:55 +0200274 (wq != &tg_ctx->timers && wq != &th_ctx->timers));
Willy Tarreaue5d79bc2020-07-22 14:29:42 +0200275#endif
Willy Tarreau7a969992021-09-30 16:38:09 +0200276 /* if this happens the process is doomed anyway, so better catch it now
277 * so that we have the caller in the stack.
278 */
279 BUG_ON(task->expire == TICK_ETERNITY);
Willy Tarreaue5d79bc2020-07-22 14:29:42 +0200280
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100281 if (likely(task_in_wq(task)))
Willy Tarreau4726f532009-03-07 17:25:21 +0100282 __task_unlink_wq(task);
Willy Tarreau4726f532009-03-07 17:25:21 +0100283
284 /* the task is not in the queue now */
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100285 task->wq.key = task->expire;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200286#ifdef DEBUG_CHECK_INVALID_EXPIRATION_DATES
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100287 if (tick_is_lt(task->wq.key, now_ms))
Willy Tarreau28c41a42008-06-29 17:00:59 +0200288 /* we're queuing too far away or in the past (most likely) */
Willy Tarreau4726f532009-03-07 17:25:21 +0100289 return;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200290#endif
Willy Tarreauce44f122008-07-05 18:16:19 +0200291
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200292 eb32_insert(wq, &task->wq);
Willy Tarreau964c9362007-01-07 00:38:00 +0100293}
294
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200295/*
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200296 * Extract all expired timers from the timer queue, and wakes up all
Willy Tarreauc49ba522019-12-11 08:12:23 +0100297 * associated tasks.
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200298 */
Willy Tarreauc49ba522019-12-11 08:12:23 +0100299void wake_expired_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200300{
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200301 struct thread_ctx * const tt = th_ctx; // thread's tasks
Willy Tarreau3cfaa8d2020-10-16 09:26:22 +0200302 int max_processed = global.tune.runqueue_depth;
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200303 struct task *task;
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200304 struct eb32_node *eb;
Willy Tarreauaf613e82020-06-05 08:40:51 +0200305 __decl_thread(int key);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200306
Willy Tarreauf5aef022022-06-14 15:04:34 +0200307 while (1) {
308 if (max_processed-- <= 0)
309 goto leave;
310
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200311 eb = eb32_lookup_ge(&tt->timers, now_ms - TIMER_LOOK_BACK);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200312 if (!eb) {
313 /* we might have reached the end of the tree, typically because
314 * <now_ms> is in the first half and we're first scanning the last
315 * half. Let's loop back to the beginning of the tree now.
316 */
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200317 eb = eb32_first(&tt->timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200318 if (likely(!eb))
319 break;
320 }
321
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200322 /* It is possible that this task was left at an earlier place in the
323 * tree because a recent call to task_queue() has not moved it. This
324 * happens when the new expiration date is later than the old one.
325 * Since it is very unlikely that we reach a timeout anyway, it's a
326 * lot cheaper to proceed like this because we almost never update
327 * the tree. We may also find disabled expiration dates there. Since
328 * we have detached the task from the tree, we simply call task_queue
329 * to take care of this. Note that we might occasionally requeue it at
330 * the same place, before <eb>, so we have to check if this happens,
331 * and adjust <eb>, otherwise we may skip it which is not what we want.
332 * We may also not requeue the task (and not point eb at it) if its
Willy Tarreau77015ab2020-06-19 11:50:27 +0200333 * expiration time is not set. We also make sure we leave the real
334 * expiration date for the next task in the queue so that when calling
335 * next_timer_expiry() we're guaranteed to see the next real date and
336 * not the next apparent date. This is in order to avoid useless
337 * wakeups.
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200338 */
Willy Tarreau77015ab2020-06-19 11:50:27 +0200339
340 task = eb32_entry(eb, struct task, wq);
341 if (tick_is_expired(task->expire, now_ms)) {
342 /* expired task, wake it up */
343 __task_unlink_wq(task);
344 task_wakeup(task, TASK_WOKEN_TIMER);
345 }
346 else if (task->expire != eb->key) {
347 /* task is not expired but its key doesn't match so let's
348 * update it and skip to next apparently expired task.
349 */
350 __task_unlink_wq(task);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200351 if (tick_isset(task->expire))
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200352 __task_queue(task, &tt->timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200353 }
Willy Tarreau77015ab2020-06-19 11:50:27 +0200354 else {
Willy Tarreau7a969992021-09-30 16:38:09 +0200355 /* task not expired and correctly placed. It may not be eternal. */
356 BUG_ON(task->expire == TICK_ETERNITY);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200357 break;
358 }
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200359 }
360
361#ifdef USE_THREAD
Willy Tarreaub0e77122022-07-07 15:22:55 +0200362 if (eb_is_empty(&tg_ctx->timers))
Willy Tarreau1e928c02019-05-28 18:57:25 +0200363 goto leave;
364
Willy Tarreaub0e77122022-07-07 15:22:55 +0200365 HA_RWLOCK_RDLOCK(TASK_WQ_LOCK, &tg_ctx->wq_lock);
366 eb = eb32_lookup_ge(&tg_ctx->timers, now_ms - TIMER_LOOK_BACK);
Willy Tarreau1e928c02019-05-28 18:57:25 +0200367 if (!eb) {
Willy Tarreaub0e77122022-07-07 15:22:55 +0200368 eb = eb32_first(&tg_ctx->timers);
Willy Tarreau1e928c02019-05-28 18:57:25 +0200369 if (likely(!eb)) {
Willy Tarreaub0e77122022-07-07 15:22:55 +0200370 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &tg_ctx->wq_lock);
Willy Tarreau1e928c02019-05-28 18:57:25 +0200371 goto leave;
372 }
373 }
374 key = eb->key;
Willy Tarreau1e928c02019-05-28 18:57:25 +0200375
Willy Tarreaud48ed662020-10-16 09:31:41 +0200376 if (tick_is_lt(now_ms, key)) {
Willy Tarreaub0e77122022-07-07 15:22:55 +0200377 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &tg_ctx->wq_lock);
Willy Tarreau1e928c02019-05-28 18:57:25 +0200378 goto leave;
Willy Tarreaud48ed662020-10-16 09:31:41 +0200379 }
Willy Tarreau1e928c02019-05-28 18:57:25 +0200380
381 /* There's really something of interest here, let's visit the queue */
382
Willy Tarreaub0e77122022-07-07 15:22:55 +0200383 if (HA_RWLOCK_TRYRDTOSK(TASK_WQ_LOCK, &tg_ctx->wq_lock)) {
Willy Tarreaud48ed662020-10-16 09:31:41 +0200384 /* if we failed to grab the lock it means another thread is
385 * already doing the same here, so let it do the job.
386 */
Willy Tarreaub0e77122022-07-07 15:22:55 +0200387 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &tg_ctx->wq_lock);
Willy Tarreaud48ed662020-10-16 09:31:41 +0200388 goto leave;
389 }
390
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200391 while (1) {
Emeric Brunc60def82017-09-27 14:59:38 +0200392 lookup_next:
Willy Tarreau3cfaa8d2020-10-16 09:26:22 +0200393 if (max_processed-- <= 0)
394 break;
Willy Tarreaub0e77122022-07-07 15:22:55 +0200395 eb = eb32_lookup_ge(&tg_ctx->timers, now_ms - TIMER_LOOK_BACK);
Emeric Brunc60def82017-09-27 14:59:38 +0200396 if (!eb) {
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100397 /* we might have reached the end of the tree, typically because
398 * <now_ms> is in the first half and we're first scanning the last
399 * half. Let's loop back to the beginning of the tree now.
400 */
Willy Tarreaub0e77122022-07-07 15:22:55 +0200401 eb = eb32_first(&tg_ctx->timers);
Willy Tarreaub992ba12017-11-05 19:09:27 +0100402 if (likely(!eb))
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100403 break;
404 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200405
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100406 task = eb32_entry(eb, struct task, wq);
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100407
408 /* Check for any competing run of the task (quite rare but may
409 * involve a dangerous concurrent access on task->expire). In
410 * order to protect against this, we'll take an exclusive access
411 * on TASK_RUNNING before checking/touching task->expire. If the
412 * task is already RUNNING on another thread, it will deal by
413 * itself with the requeuing so we must not do anything and
414 * simply quit the loop for now, because we cannot wait with the
415 * WQ lock held as this would prevent the running thread from
416 * requeuing the task. One annoying effect of holding RUNNING
417 * here is that a concurrent task_wakeup() will refrain from
418 * waking it up. This forces us to check for a wakeup after
419 * releasing the flag.
420 */
421 if (HA_ATOMIC_FETCH_OR(&task->state, TASK_RUNNING) & TASK_RUNNING)
422 break;
423
Willy Tarreau77015ab2020-06-19 11:50:27 +0200424 if (tick_is_expired(task->expire, now_ms)) {
425 /* expired task, wake it up */
Willy Tarreaub0e77122022-07-07 15:22:55 +0200426 HA_RWLOCK_SKTOWR(TASK_WQ_LOCK, &tg_ctx->wq_lock);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200427 __task_unlink_wq(task);
Willy Tarreaub0e77122022-07-07 15:22:55 +0200428 HA_RWLOCK_WRTOSK(TASK_WQ_LOCK, &tg_ctx->wq_lock);
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100429 task_drop_running(task, TASK_WOKEN_TIMER);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200430 }
431 else if (task->expire != eb->key) {
432 /* task is not expired but its key doesn't match so let's
433 * update it and skip to next apparently expired task.
434 */
Willy Tarreaub0e77122022-07-07 15:22:55 +0200435 HA_RWLOCK_SKTOWR(TASK_WQ_LOCK, &tg_ctx->wq_lock);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200436 __task_unlink_wq(task);
Willy Tarreaub992ba12017-11-05 19:09:27 +0100437 if (tick_isset(task->expire))
Willy Tarreaub0e77122022-07-07 15:22:55 +0200438 __task_queue(task, &tg_ctx->timers);
439 HA_RWLOCK_WRTOSK(TASK_WQ_LOCK, &tg_ctx->wq_lock);
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100440 task_drop_running(task, 0);
Emeric Brunc60def82017-09-27 14:59:38 +0200441 goto lookup_next;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200442 }
Willy Tarreau77015ab2020-06-19 11:50:27 +0200443 else {
Willy Tarreau7a969992021-09-30 16:38:09 +0200444 /* task not expired and correctly placed. It may not be eternal. */
445 BUG_ON(task->expire == TICK_ETERNITY);
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100446 task_drop_running(task, 0);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200447 break;
448 }
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100449 }
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200450
Willy Tarreaub0e77122022-07-07 15:22:55 +0200451 HA_RWLOCK_SKUNLOCK(TASK_WQ_LOCK, &tg_ctx->wq_lock);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200452#endif
Willy Tarreau1e928c02019-05-28 18:57:25 +0200453leave:
Willy Tarreauc49ba522019-12-11 08:12:23 +0100454 return;
455}
456
457/* Checks the next timer for the current thread by looking into its own timer
458 * list and the global one. It may return TICK_ETERNITY if no timer is present.
Ilya Shipitsin856aabc2020-04-16 23:51:34 +0500459 * Note that the next timer might very well be slightly in the past.
Willy Tarreauc49ba522019-12-11 08:12:23 +0100460 */
461int next_timer_expiry()
462{
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200463 struct thread_ctx * const tt = th_ctx; // thread's tasks
Willy Tarreauc49ba522019-12-11 08:12:23 +0100464 struct eb32_node *eb;
465 int ret = TICK_ETERNITY;
Willy Tarreau6ce02322020-08-21 05:48:34 +0200466 __decl_thread(int key = TICK_ETERNITY);
Willy Tarreauc49ba522019-12-11 08:12:23 +0100467
468 /* first check in the thread-local timers */
469 eb = eb32_lookup_ge(&tt->timers, now_ms - TIMER_LOOK_BACK);
470 if (!eb) {
471 /* we might have reached the end of the tree, typically because
472 * <now_ms> is in the first half and we're first scanning the last
473 * half. Let's loop back to the beginning of the tree now.
474 */
475 eb = eb32_first(&tt->timers);
476 }
477
478 if (eb)
479 ret = eb->key;
480
481#ifdef USE_THREAD
Willy Tarreaub0e77122022-07-07 15:22:55 +0200482 if (!eb_is_empty(&tg_ctx->timers)) {
483 HA_RWLOCK_RDLOCK(TASK_WQ_LOCK, &tg_ctx->wq_lock);
484 eb = eb32_lookup_ge(&tg_ctx->timers, now_ms - TIMER_LOOK_BACK);
Willy Tarreauc49ba522019-12-11 08:12:23 +0100485 if (!eb)
Willy Tarreaub0e77122022-07-07 15:22:55 +0200486 eb = eb32_first(&tg_ctx->timers);
Willy Tarreauc49ba522019-12-11 08:12:23 +0100487 if (eb)
488 key = eb->key;
Willy Tarreaub0e77122022-07-07 15:22:55 +0200489 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &tg_ctx->wq_lock);
Willy Tarreauc49ba522019-12-11 08:12:23 +0100490 if (eb)
491 ret = tick_first(ret, key);
492 }
493#endif
Willy Tarreaub992ba12017-11-05 19:09:27 +0100494 return ret;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200495}
496
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200497/* Walks over tasklet lists th_ctx->tasklets[0..TL_CLASSES-1] and run at most
Willy Tarreau59153fe2020-06-24 10:17:29 +0200498 * budget[TL_*] of them. Returns the number of entries effectively processed
499 * (tasks and tasklets merged). The count of tasks in the list for the current
500 * thread is adjusted.
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100501 */
Willy Tarreau59153fe2020-06-24 10:17:29 +0200502unsigned int run_tasks_from_lists(unsigned int budgets[])
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100503{
Willy Tarreau144f84a2021-03-02 16:09:26 +0100504 struct task *(*process)(struct task *t, void *ctx, unsigned int state);
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200505 struct list *tl_queues = th_ctx->tasklets;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100506 struct task *t;
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200507 uint8_t budget_mask = (1 << TL_CLASSES) - 1;
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100508 struct sched_activity *profile_entry = NULL;
Willy Tarreau59153fe2020-06-24 10:17:29 +0200509 unsigned int done = 0;
510 unsigned int queue;
Willy Tarreau144f84a2021-03-02 16:09:26 +0100511 unsigned int state;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100512 void *ctx;
Willy Tarreau59153fe2020-06-24 10:17:29 +0200513
514 for (queue = 0; queue < TL_CLASSES;) {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200515 th_ctx->current_queue = queue;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100516
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200517 /* global.tune.sched.low-latency is set */
518 if (global.tune.options & GTUNE_SCHED_LOW_LATENCY) {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200519 if (unlikely(th_ctx->tl_class_mask & budget_mask & ((1 << queue) - 1))) {
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200520 /* a lower queue index has tasks again and still has a
521 * budget to run them. Let's switch to it now.
522 */
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200523 queue = (th_ctx->tl_class_mask & 1) ? 0 :
524 (th_ctx->tl_class_mask & 2) ? 1 : 2;
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200525 continue;
526 }
527
528 if (unlikely(queue > TL_URGENT &&
529 budget_mask & (1 << TL_URGENT) &&
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200530 !MT_LIST_ISEMPTY(&th_ctx->shared_tasklet_list))) {
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200531 /* an urgent tasklet arrived from another thread */
532 break;
533 }
534
535 if (unlikely(queue > TL_NORMAL &&
536 budget_mask & (1 << TL_NORMAL) &&
Willy Tarreauc958c702022-06-16 15:59:36 +0200537 (!eb_is_empty(&th_ctx->rqueue) || !eb_is_empty(&th_ctx->rqueue_shared)))) {
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200538 /* a task was woken up by a bulk tasklet or another thread */
539 break;
540 }
541 }
542
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200543 if (LIST_ISEMPTY(&tl_queues[queue])) {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200544 th_ctx->tl_class_mask &= ~(1 << queue);
Willy Tarreau59153fe2020-06-24 10:17:29 +0200545 queue++;
546 continue;
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200547 }
548
Willy Tarreau59153fe2020-06-24 10:17:29 +0200549 if (!budgets[queue]) {
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200550 budget_mask &= ~(1 << queue);
Willy Tarreau59153fe2020-06-24 10:17:29 +0200551 queue++;
552 continue;
553 }
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200554
Willy Tarreau59153fe2020-06-24 10:17:29 +0200555 budgets[queue]--;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100556 activity[tid].ctxsw++;
Willy Tarreau3193eb92021-10-21 16:17:29 +0200557
558 t = (struct task *)LIST_ELEM(tl_queues[queue].n, struct tasklet *, list);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100559 ctx = t->context;
560 process = t->process;
561 t->calls++;
Willy Tarreaua9a23842022-09-07 17:06:16 +0200562
563 th_ctx->sched_wake_date = t->wake_date;
564 if (th_ctx->sched_wake_date) {
565 uint32_t now_ns = now_mono_time();
566 uint32_t lat = now_ns - th_ctx->sched_wake_date;
567
568 t->wake_date = 0;
569 th_ctx->sched_call_date = now_ns;
Willy Tarreau3d4cdb12022-09-07 18:37:47 +0200570 profile_entry = sched_activity_entry(sched_activity, t->process, t->caller);
Willy Tarreaua9a23842022-09-07 17:06:16 +0200571 th_ctx->sched_profile_entry = profile_entry;
572 HA_ATOMIC_ADD(&profile_entry->lat_time, lat);
573 HA_ATOMIC_INC(&profile_entry->calls);
574 }
575 __ha_barrier_store();
576
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200577 th_ctx->current = t;
Willy Tarreaubdcd3252022-06-22 09:19:46 +0200578 _HA_ATOMIC_AND(&th_ctx->flags, ~TH_FL_STUCK); // this thread is still running
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100579
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200580 _HA_ATOMIC_DEC(&th_ctx->rq_total);
Willy Tarreaua9a23842022-09-07 17:06:16 +0200581 LIST_DEL_INIT(&((struct tasklet *)t)->list);
582 __ha_barrier_store();
Willy Tarreau2da4c312020-11-30 14:52:11 +0100583
Willy Tarreau3193eb92021-10-21 16:17:29 +0200584 if (t->state & TASK_F_TASKLET) {
Willy Tarreaua9a23842022-09-07 17:06:16 +0200585 /* this is a tasklet */
Willy Tarreau3193eb92021-10-21 16:17:29 +0200586 state = _HA_ATOMIC_FETCH_AND(&t->state, TASK_PERSISTENT);
Willy Tarreau2a54ffb2021-02-25 09:32:58 +0100587 __ha_barrier_atomic_store();
588
Amaury Denoyelle7b368332021-07-28 16:12:57 +0200589 if (likely(!(state & TASK_KILLED))) {
590 process(t, ctx, state);
591 }
592 else {
593 done++;
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200594 th_ctx->current = NULL;
Amaury Denoyelle7b368332021-07-28 16:12:57 +0200595 pool_free(pool_head_tasklet, t);
596 __ha_barrier_store();
597 continue;
598 }
Willy Tarreaua9a23842022-09-07 17:06:16 +0200599 } else {
600 /* This is a regular task */
Willy Tarreau2a54ffb2021-02-25 09:32:58 +0100601
Willy Tarreaua9a23842022-09-07 17:06:16 +0200602 /* We must be the exclusive owner of the TASK_RUNNING bit, and
603 * have to be careful that the task is not being manipulated on
604 * another thread finding it expired in wake_expired_tasks().
605 * The TASK_RUNNING bit will be set during these operations,
606 * they are extremely rare and do not last long so the best to
607 * do here is to wait.
608 */
609 state = _HA_ATOMIC_LOAD(&t->state);
610 do {
611 while (unlikely(state & TASK_RUNNING)) {
612 __ha_cpu_relax();
613 state = _HA_ATOMIC_LOAD(&t->state);
614 }
615 } while (!_HA_ATOMIC_CAS(&t->state, &state, (state & TASK_PERSISTENT) | TASK_RUNNING));
Willy Tarreau62b5b962022-09-07 15:11:25 +0200616
Willy Tarreaua9a23842022-09-07 17:06:16 +0200617 __ha_barrier_atomic_store();
Willy Tarreau62b5b962022-09-07 15:11:25 +0200618
Willy Tarreaua9a23842022-09-07 17:06:16 +0200619 _HA_ATOMIC_DEC(&ha_thread_ctx[tid].tasks_in_list);
Willy Tarreau62b5b962022-09-07 15:11:25 +0200620
Willy Tarreaua9a23842022-09-07 17:06:16 +0200621 /* Note for below: if TASK_KILLED arrived before we've read the state, we
622 * directly free the task. Otherwise it will be seen after processing and
623 * it's freed on the exit path.
624 */
625 if (likely(!(state & TASK_KILLED) && process == process_stream))
626 t = process_stream(t, ctx, state);
627 else if (!(state & TASK_KILLED) && process != NULL)
628 t = process(t, ctx, state);
629 else {
630 task_unlink_wq(t);
631 __task_free(t);
632 th_ctx->current = NULL;
633 __ha_barrier_store();
634 /* We don't want max_processed to be decremented if
635 * we're just freeing a destroyed task, we should only
636 * do so if we really ran a task.
637 */
638 continue;
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100639 }
Willy Tarreau3193eb92021-10-21 16:17:29 +0200640
Willy Tarreaua9a23842022-09-07 17:06:16 +0200641 /* If there is a pending state we have to wake up the task
642 * immediately, else we defer it into wait queue
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100643 */
Willy Tarreaua9a23842022-09-07 17:06:16 +0200644 if (t != NULL) {
645 state = _HA_ATOMIC_LOAD(&t->state);
646 if (unlikely(state & TASK_KILLED)) {
647 task_unlink_wq(t);
648 __task_free(t);
649 }
650 else {
651 task_queue(t);
652 task_drop_running(t, 0);
653 }
654 }
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100655 }
Willy Tarreaua9a23842022-09-07 17:06:16 +0200656
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200657 th_ctx->current = NULL;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100658 __ha_barrier_store();
Willy Tarreau62b5b962022-09-07 15:11:25 +0200659
660 /* stats are only registered for non-zero wake dates */
Willy Tarreaua9a23842022-09-07 17:06:16 +0200661 if (unlikely(th_ctx->sched_wake_date))
662 HA_ATOMIC_ADD(&profile_entry->cpu_time, (uint32_t)(now_mono_time() - th_ctx->sched_call_date));
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100663 done++;
664 }
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200665 th_ctx->current_queue = -1;
Willy Tarreau116ef222020-06-23 16:35:38 +0200666
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100667 return done;
668}
669
Willy Tarreau58b458d2008-06-29 22:40:23 +0200670/* The run queue is chronologically sorted in a tree. An insertion counter is
671 * used to assign a position to each task. This counter may be combined with
672 * other variables (eg: nice value) to set the final position in the tree. The
673 * counter may wrap without a problem, of course. We then limit the number of
Christopher Faulet8a48f672017-11-14 10:38:36 +0100674 * tasks processed to 200 in any case, so that general latency remains low and
Willy Tarreaucde79022019-04-12 18:03:41 +0200675 * so that task positions have a chance to be considered. The function scans
676 * both the global and local run queues and picks the most urgent task between
677 * the two. We need to grab the global runqueue lock to touch it so it's taken
678 * on the very first access to the global run queue and is released as soon as
679 * it reaches the end.
Willy Tarreau58b458d2008-06-29 22:40:23 +0200680 *
681 * The function adjusts <next> if a new event is closer.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200682 */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100683void process_runnable_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200684{
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200685 struct thread_ctx * const tt = th_ctx;
Willy Tarreau319d1362022-06-16 16:28:01 +0200686 struct eb32_node *lrq; // next local run queue entry
687 struct eb32_node *grq; // next global run queue entry
Willy Tarreau964c9362007-01-07 00:38:00 +0100688 struct task *t;
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200689 const unsigned int default_weights[TL_CLASSES] = {
690 [TL_URGENT] = 64, // ~50% of CPU bandwidth for I/O
691 [TL_NORMAL] = 48, // ~37% of CPU bandwidth for tasks
692 [TL_BULK] = 16, // ~13% of CPU bandwidth for self-wakers
Willy Tarreau401135c2021-02-26 09:16:22 +0100693 [TL_HEAVY] = 1, // never more than 1 heavy task at once
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200694 };
695 unsigned int max[TL_CLASSES]; // max to be run per class
696 unsigned int max_total; // sum of max above
Olivier Houchard06910462019-10-11 16:35:01 +0200697 struct mt_list *tmp_list;
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200698 unsigned int queue;
699 int max_processed;
Willy Tarreaue7923c12021-02-25 07:09:08 +0100700 int lpicked, gpicked;
Willy Tarreau76390da2021-02-26 10:18:11 +0100701 int heavy_queued = 0;
Willy Tarreauc309dbd2020-11-30 15:39:00 +0100702 int budget;
Christopher Faulet3911ee82017-11-14 10:26:53 +0100703
Willy Tarreaubdcd3252022-06-22 09:19:46 +0200704 _HA_ATOMIC_AND(&th_ctx->flags, ~TH_FL_STUCK); // this thread is still running
Willy Tarreaue6a02fa2019-05-22 07:06:44 +0200705
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200706 if (!thread_has_tasks()) {
707 activity[tid].empty_rq++;
708 return;
709 }
710
Willy Tarreau5c8be272020-06-19 12:17:55 +0200711 max_processed = global.tune.runqueue_depth;
712
Willy Tarreau91a7c162022-07-07 15:25:40 +0200713 if (likely(tg_ctx->niced_tasks))
Willy Tarreau5c8be272020-06-19 12:17:55 +0200714 max_processed = (max_processed + 3) / 4;
715
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200716 if (max_processed < th_ctx->rq_total && th_ctx->rq_total <= 2*max_processed) {
Willy Tarreau1691ba32021-03-10 09:26:24 +0100717 /* If the run queue exceeds the budget by up to 50%, let's cut it
718 * into two identical halves to improve latency.
719 */
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200720 max_processed = th_ctx->rq_total / 2;
Willy Tarreau1691ba32021-03-10 09:26:24 +0100721 }
722
Willy Tarreau5c8be272020-06-19 12:17:55 +0200723 not_done_yet:
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200724 max[TL_URGENT] = max[TL_NORMAL] = max[TL_BULK] = 0;
Willy Tarreaucde79022019-04-12 18:03:41 +0200725
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200726 /* urgent tasklets list gets a default weight of ~50% */
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200727 if ((tt->tl_class_mask & (1 << TL_URGENT)) ||
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200728 !MT_LIST_ISEMPTY(&tt->shared_tasklet_list))
729 max[TL_URGENT] = default_weights[TL_URGENT];
Willy Tarreaua62917b2020-01-30 18:37:28 +0100730
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200731 /* normal tasklets list gets a default weight of ~37% */
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200732 if ((tt->tl_class_mask & (1 << TL_NORMAL)) ||
Willy Tarreauc958c702022-06-16 15:59:36 +0200733 !eb_is_empty(&th_ctx->rqueue) || !eb_is_empty(&th_ctx->rqueue_shared))
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200734 max[TL_NORMAL] = default_weights[TL_NORMAL];
Willy Tarreaua62917b2020-01-30 18:37:28 +0100735
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200736 /* bulk tasklets list gets a default weight of ~13% */
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200737 if ((tt->tl_class_mask & (1 << TL_BULK)))
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200738 max[TL_BULK] = default_weights[TL_BULK];
739
Willy Tarreau401135c2021-02-26 09:16:22 +0100740 /* heavy tasks are processed only once and never refilled in a
Willy Tarreau76390da2021-02-26 10:18:11 +0100741 * call round. That budget is not lost either as we don't reset
742 * it unless consumed.
Willy Tarreau401135c2021-02-26 09:16:22 +0100743 */
Willy Tarreau76390da2021-02-26 10:18:11 +0100744 if (!heavy_queued) {
745 if ((tt->tl_class_mask & (1 << TL_HEAVY)))
746 max[TL_HEAVY] = default_weights[TL_HEAVY];
747 else
748 max[TL_HEAVY] = 0;
749 heavy_queued = 1;
750 }
Willy Tarreau401135c2021-02-26 09:16:22 +0100751
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200752 /* Now compute a fair share of the weights. Total may slightly exceed
Willy Tarreau1553b662020-06-30 13:46:21 +0200753 * 100% due to rounding, this is not a problem. Note that while in
754 * theory the sum cannot be NULL as we cannot get there without tasklets
755 * to process, in practice it seldom happens when multiple writers
Willy Tarreau2b718102021-04-21 07:32:39 +0200756 * conflict and rollback on MT_LIST_TRY_APPEND(shared_tasklet_list), causing
Willy Tarreau1553b662020-06-30 13:46:21 +0200757 * a first MT_LIST_ISEMPTY() to succeed for thread_has_task() and the
758 * one above to finally fail. This is extremely rare and not a problem.
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200759 */
Willy Tarreau401135c2021-02-26 09:16:22 +0100760 max_total = max[TL_URGENT] + max[TL_NORMAL] + max[TL_BULK] + max[TL_HEAVY];
Willy Tarreau1553b662020-06-30 13:46:21 +0200761 if (!max_total)
762 return;
763
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200764 for (queue = 0; queue < TL_CLASSES; queue++)
765 max[queue] = ((unsigned)max_processed * max[queue] + max_total - 1) / max_total;
766
Willy Tarreau76390da2021-02-26 10:18:11 +0100767 /* The heavy queue must never process more than one task at once
768 * anyway.
769 */
770 if (max[TL_HEAVY] > 1)
771 max[TL_HEAVY] = 1;
772
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200773 lrq = grq = NULL;
Christopher Faulet8a48f672017-11-14 10:38:36 +0100774
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200775 /* pick up to max[TL_NORMAL] regular tasks from prio-ordered run queues */
776 /* Note: the grq lock is always held when grq is not null */
Willy Tarreaue7923c12021-02-25 07:09:08 +0100777 lpicked = gpicked = 0;
Willy Tarreau1f3b1412021-02-24 14:13:40 +0100778 budget = max[TL_NORMAL] - tt->tasks_in_list;
Willy Tarreaue7923c12021-02-25 07:09:08 +0100779 while (lpicked + gpicked < budget) {
Willy Tarreauc958c702022-06-16 15:59:36 +0200780 if (!eb_is_empty(&th_ctx->rqueue_shared) && !grq) {
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200781#ifdef USE_THREAD
Willy Tarreaub17dd6c2022-06-16 16:58:17 +0200782 HA_SPIN_LOCK(TASK_RQ_LOCK, &th_ctx->rqsh_lock);
Willy Tarreau319d1362022-06-16 16:28:01 +0200783 grq = eb32_lookup_ge(&th_ctx->rqueue_shared, _HA_ATOMIC_LOAD(&tt->rqueue_ticks) - TIMER_LOOK_BACK);
Willy Tarreaucde79022019-04-12 18:03:41 +0200784 if (unlikely(!grq)) {
Willy Tarreau319d1362022-06-16 16:28:01 +0200785 grq = eb32_first(&th_ctx->rqueue_shared);
Willy Tarreauc958c702022-06-16 15:59:36 +0200786 if (!grq)
Willy Tarreaub17dd6c2022-06-16 16:58:17 +0200787 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &th_ctx->rqsh_lock);
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100788 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200789#endif
Willy Tarreaucde79022019-04-12 18:03:41 +0200790 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100791
Willy Tarreaucde79022019-04-12 18:03:41 +0200792 /* If a global task is available for this thread, it's in grq
793 * now and the global RQ is locked.
794 */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200795
Willy Tarreaucde79022019-04-12 18:03:41 +0200796 if (!lrq) {
Willy Tarreau319d1362022-06-16 16:28:01 +0200797 lrq = eb32_lookup_ge(&tt->rqueue, _HA_ATOMIC_LOAD(&tt->rqueue_ticks) - TIMER_LOOK_BACK);
Willy Tarreaucde79022019-04-12 18:03:41 +0200798 if (unlikely(!lrq))
Willy Tarreau319d1362022-06-16 16:28:01 +0200799 lrq = eb32_first(&tt->rqueue);
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100800 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100801
Willy Tarreaucde79022019-04-12 18:03:41 +0200802 if (!lrq && !grq)
803 break;
804
805 if (likely(!grq || (lrq && (int)(lrq->key - grq->key) <= 0))) {
Willy Tarreau319d1362022-06-16 16:28:01 +0200806 t = eb32_entry(lrq, struct task, rq);
807 lrq = eb32_next(lrq);
808 eb32_delete(&t->rq);
Willy Tarreaue7923c12021-02-25 07:09:08 +0100809 lpicked++;
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200810 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200811#ifdef USE_THREAD
Willy Tarreaucde79022019-04-12 18:03:41 +0200812 else {
Willy Tarreau319d1362022-06-16 16:28:01 +0200813 t = eb32_entry(grq, struct task, rq);
814 grq = eb32_next(grq);
815 eb32_delete(&t->rq);
Willy Tarreau2b363ac2021-02-25 07:14:58 +0100816
Willy Tarreaucde79022019-04-12 18:03:41 +0200817 if (unlikely(!grq)) {
Willy Tarreau319d1362022-06-16 16:28:01 +0200818 grq = eb32_first(&th_ctx->rqueue_shared);
Willy Tarreauc958c702022-06-16 15:59:36 +0200819 if (!grq)
Willy Tarreaub17dd6c2022-06-16 16:58:17 +0200820 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &th_ctx->rqsh_lock);
Willy Tarreaucde79022019-04-12 18:03:41 +0200821 }
Willy Tarreaue7923c12021-02-25 07:09:08 +0100822 gpicked++;
Emeric Brun01948972017-03-30 15:37:25 +0200823 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200824#endif
Willy Tarreau2b363ac2021-02-25 07:14:58 +0100825 if (t->nice)
Willy Tarreau91a7c162022-07-07 15:25:40 +0200826 _HA_ATOMIC_DEC(&tg_ctx->niced_tasks);
Willy Tarreaucde79022019-04-12 18:03:41 +0200827
Willy Tarreaua868c292020-11-30 15:30:22 +0100828 /* Add it to the local task list */
Willy Tarreau2b718102021-04-21 07:32:39 +0200829 LIST_APPEND(&tt->tasklets[TL_NORMAL], &((struct tasklet *)t)->list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200830 }
Willy Tarreaucde79022019-04-12 18:03:41 +0200831
832 /* release the rqueue lock */
833 if (grq) {
Willy Tarreaub17dd6c2022-06-16 16:58:17 +0200834 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &th_ctx->rqsh_lock);
Willy Tarreaucde79022019-04-12 18:03:41 +0200835 grq = NULL;
836 }
837
Willy Tarreaue7923c12021-02-25 07:09:08 +0100838 if (lpicked + gpicked) {
Willy Tarreauc309dbd2020-11-30 15:39:00 +0100839 tt->tl_class_mask |= 1 << TL_NORMAL;
Willy Tarreaue7923c12021-02-25 07:09:08 +0100840 _HA_ATOMIC_ADD(&tt->tasks_in_list, lpicked + gpicked);
Willy Tarreaue7923c12021-02-25 07:09:08 +0100841 activity[tid].tasksw += lpicked + gpicked;
Willy Tarreauc309dbd2020-11-30 15:39:00 +0100842 }
843
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200844 /* Merge the list of tasklets waken up by other threads to the
845 * main list.
846 */
847 tmp_list = MT_LIST_BEHEAD(&tt->shared_tasklet_list);
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200848 if (tmp_list) {
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200849 LIST_SPLICE_END_DETACHED(&tt->tasklets[TL_URGENT], (struct list *)tmp_list);
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200850 if (!LIST_ISEMPTY(&tt->tasklets[TL_URGENT]))
851 tt->tl_class_mask |= 1 << TL_URGENT;
852 }
Willy Tarreaucde79022019-04-12 18:03:41 +0200853
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200854 /* execute tasklets in each queue */
Willy Tarreau59153fe2020-06-24 10:17:29 +0200855 max_processed -= run_tasks_from_lists(max);
Willy Tarreaua62917b2020-01-30 18:37:28 +0100856
Willy Tarreau5c8be272020-06-19 12:17:55 +0200857 /* some tasks may have woken other ones up */
Willy Tarreau0c0c85e2020-06-23 11:32:35 +0200858 if (max_processed > 0 && thread_has_tasks())
Willy Tarreau5c8be272020-06-19 12:17:55 +0200859 goto not_done_yet;
860
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200861 if (tt->tl_class_mask)
Willy Tarreaucde79022019-04-12 18:03:41 +0200862 activity[tid].long_rq++;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200863}
864
William Lallemand27f3fa52018-12-06 14:05:20 +0100865/*
866 * Delete every tasks before running the master polling loop
867 */
868void mworker_cleantasks()
869{
870 struct task *t;
871 int i;
William Lallemandb5823392018-12-06 15:14:37 +0100872 struct eb32_node *tmp_wq = NULL;
Willy Tarreau319d1362022-06-16 16:28:01 +0200873 struct eb32_node *tmp_rq = NULL;
William Lallemand27f3fa52018-12-06 14:05:20 +0100874
875#ifdef USE_THREAD
876 /* cleanup the global run queue */
Willy Tarreau319d1362022-06-16 16:28:01 +0200877 tmp_rq = eb32_first(&th_ctx->rqueue_shared);
William Lallemandb5823392018-12-06 15:14:37 +0100878 while (tmp_rq) {
Willy Tarreau319d1362022-06-16 16:28:01 +0200879 t = eb32_entry(tmp_rq, struct task, rq);
880 tmp_rq = eb32_next(tmp_rq);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200881 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100882 }
883 /* cleanup the timers queue */
Willy Tarreaub0e77122022-07-07 15:22:55 +0200884 tmp_wq = eb32_first(&tg_ctx->timers);
William Lallemandb5823392018-12-06 15:14:37 +0100885 while (tmp_wq) {
886 t = eb32_entry(tmp_wq, struct task, wq);
887 tmp_wq = eb32_next(tmp_wq);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200888 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100889 }
890#endif
891 /* clean the per thread run queue */
892 for (i = 0; i < global.nbthread; i++) {
Willy Tarreau319d1362022-06-16 16:28:01 +0200893 tmp_rq = eb32_first(&ha_thread_ctx[i].rqueue);
William Lallemandb5823392018-12-06 15:14:37 +0100894 while (tmp_rq) {
Willy Tarreau319d1362022-06-16 16:28:01 +0200895 t = eb32_entry(tmp_rq, struct task, rq);
896 tmp_rq = eb32_next(tmp_rq);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200897 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100898 }
899 /* cleanup the per thread timers queue */
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200900 tmp_wq = eb32_first(&ha_thread_ctx[i].timers);
William Lallemandb5823392018-12-06 15:14:37 +0100901 while (tmp_wq) {
902 t = eb32_entry(tmp_wq, struct task, wq);
903 tmp_wq = eb32_next(tmp_wq);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200904 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100905 }
906 }
907}
908
Willy Tarreaub6b3df32018-11-26 16:31:20 +0100909/* perform minimal intializations */
910static void init_task()
Willy Tarreau4726f532009-03-07 17:25:21 +0100911{
Willy Tarreau401135c2021-02-26 09:16:22 +0100912 int i, q;
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200913
Willy Tarreaub0e77122022-07-07 15:22:55 +0200914 for (i = 0; i < MAX_TGROUPS; i++)
915 memset(&ha_tgroup_ctx[i].timers, 0, sizeof(ha_tgroup_ctx[i].timers));
916
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200917 for (i = 0; i < MAX_THREADS; i++) {
Willy Tarreau401135c2021-02-26 09:16:22 +0100918 for (q = 0; q < TL_CLASSES; q++)
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200919 LIST_INIT(&ha_thread_ctx[i].tasklets[q]);
920 MT_LIST_INIT(&ha_thread_ctx[i].shared_tasklet_list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200921 }
Willy Tarreau4726f532009-03-07 17:25:21 +0100922}
923
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200924/* config parser for global "tune.sched.low-latency", accepts "on" or "off" */
925static int cfg_parse_tune_sched_low_latency(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +0100926 const struct proxy *defpx, const char *file, int line,
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200927 char **err)
928{
929 if (too_many_args(1, args, err, NULL))
930 return -1;
931
932 if (strcmp(args[1], "on") == 0)
933 global.tune.options |= GTUNE_SCHED_LOW_LATENCY;
934 else if (strcmp(args[1], "off") == 0)
935 global.tune.options &= ~GTUNE_SCHED_LOW_LATENCY;
936 else {
937 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
938 return -1;
939 }
940 return 0;
941}
942
943/* config keyword parsers */
944static struct cfg_kw_list cfg_kws = {ILH, {
945 { CFG_GLOBAL, "tune.sched.low-latency", cfg_parse_tune_sched_low_latency },
946 { 0, NULL, NULL }
947}};
948
949INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreaub6b3df32018-11-26 16:31:20 +0100950INITCALL0(STG_PREPARE, init_task);
951
Willy Tarreaubaaee002006-06-26 02:48:02 +0200952/*
953 * Local variables:
954 * c-indent-level: 8
955 * c-basic-offset: 8
956 * End:
957 */