blob: fc698d52bfff86edd4a9222147d4d74f97ca56de [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 Tarreaubaaee002006-06-26 02:48:02 +020028
Willy Tarreau8ceae722018-11-26 11:58:30 +010029DECLARE_POOL(pool_head_task, "task", sizeof(struct task));
30DECLARE_POOL(pool_head_tasklet, "tasklet", sizeof(struct tasklet));
Willy Tarreau96bcfd72007-04-29 10:41:56 +020031
Thierry FOURNIERd6975962017-07-12 14:31:10 +020032/* This is the memory pool containing all the signal structs. These
Joseph Herlantcf92b6d2018-11-15 14:19:23 -080033 * struct are used to store each required signal between two tasks.
Thierry FOURNIERd6975962017-07-12 14:31:10 +020034 */
Willy Tarreau8ceae722018-11-26 11:58:30 +010035DECLARE_POOL(pool_head_notification, "notification", sizeof(struct notification));
Thierry FOURNIERd6975962017-07-12 14:31:10 +020036
Willy Tarreaue35c94a2009-03-21 10:01:42 +010037unsigned int niced_tasks = 0; /* number of niced tasks in the run queue */
Emeric Brun01948972017-03-30 15:37:25 +020038
Willy Tarreauef28dc12019-05-28 18:48:07 +020039__decl_aligned_rwlock(wq_lock); /* RW lock related to the wait queue */
Willy Tarreau964c9362007-01-07 00:38:00 +010040
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020041#ifdef USE_THREAD
Willy Tarreauc6ba9a02021-02-20 12:49:54 +010042struct eb_root timers; /* sorted timers tree, global, accessed under wq_lock */
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020043#endif
Willy Tarreaub20aa9e2018-10-15 14:52:21 +020044
Willy Tarreau8d8747a2018-10-15 16:12:48 +020045
Willy Tarreaueb8c2c62020-06-30 11:48:48 +020046
47/* Flags the task <t> for immediate destruction and puts it into its first
48 * thread's shared tasklet list if not yet queued/running. This will bypass
49 * the priority scheduling and make the task show up as fast as possible in
50 * the other thread's queue. Note that this operation isn't idempotent and is
51 * not supposed to be run on the same task from multiple threads at once. It's
52 * the caller's responsibility to make sure it is the only one able to kill the
53 * task.
54 */
55void task_kill(struct task *t)
56{
Willy Tarreau144f84a2021-03-02 16:09:26 +010057 unsigned int state = t->state;
Willy Tarreaueb8c2c62020-06-30 11:48:48 +020058 unsigned int thr;
59
60 BUG_ON(state & TASK_KILLED);
61
62 while (1) {
63 while (state & (TASK_RUNNING | TASK_QUEUED)) {
64 /* task already in the queue and about to be executed,
65 * or even currently running. Just add the flag and be
66 * done with it, the process loop will detect it and kill
67 * it. The CAS will fail if we arrive too late.
68 */
69 if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_KILLED))
70 return;
71 }
72
73 /* We'll have to wake it up, but we must also secure it so that
74 * it doesn't vanish under us. TASK_QUEUED guarantees nobody will
75 * add past us.
76 */
77 if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_QUEUED | TASK_KILLED)) {
78 /* Bypass the tree and go directly into the shared tasklet list.
79 * Note: that's a task so it must be accounted for as such. Pick
80 * the task's first thread for the job.
81 */
Willy Tarreau29ffe262022-06-15 14:31:38 +020082 thr = t->tid >= 0 ? t->tid : tid;
Willy Tarreau54d31172020-07-02 14:14:00 +020083
84 /* Beware: tasks that have never run don't have their ->list empty yet! */
Willy Tarreau1a9c9222021-10-01 11:30:33 +020085 MT_LIST_APPEND(&ha_thread_ctx[thr].shared_tasklet_list,
Willy Tarreaucc5cd5b2022-01-28 09:48:12 +010086 list_to_mt_list(&((struct tasklet *)t)->list));
Willy Tarreau1a9c9222021-10-01 11:30:33 +020087 _HA_ATOMIC_INC(&ha_thread_ctx[thr].rq_total);
88 _HA_ATOMIC_INC(&ha_thread_ctx[thr].tasks_in_list);
Willy Tarreau54d31172020-07-02 14:14:00 +020089 if (sleeping_thread_mask & (1UL << thr)) {
90 _HA_ATOMIC_AND(&sleeping_thread_mask, ~(1UL << thr));
91 wake_thread(thr);
Willy Tarreaueb8c2c62020-06-30 11:48:48 +020092 }
Willy Tarreau54d31172020-07-02 14:14:00 +020093 return;
Willy Tarreaueb8c2c62020-06-30 11:48:48 +020094 }
95 }
96}
97
Amaury Denoyelle7b368332021-07-28 16:12:57 +020098/* Equivalent of task_kill for tasklets. Mark the tasklet <t> for destruction.
99 * It will be deleted on the next scheduler invocation. This function is
100 * thread-safe : a thread can kill a tasklet of another thread.
101 */
102void tasklet_kill(struct tasklet *t)
103{
104 unsigned int state = t->state;
105 unsigned int thr;
106
107 BUG_ON(state & TASK_KILLED);
108
109 while (1) {
110 while (state & (TASK_IN_LIST)) {
111 /* Tasklet already in the list ready to be executed. Add
112 * the killed flag and wait for the process loop to
113 * detect it.
114 */
115 if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_KILLED))
116 return;
117 }
118
119 /* Mark the tasklet as killed and wake the thread to process it
120 * as soon as possible.
121 */
122 if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_IN_LIST | TASK_KILLED)) {
Willy Tarreau9b3aa632022-06-15 15:54:56 +0200123 thr = t->tid >= 0 ? t->tid : tid;
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200124 MT_LIST_APPEND(&ha_thread_ctx[thr].shared_tasklet_list,
Willy Tarreaucc5cd5b2022-01-28 09:48:12 +0100125 list_to_mt_list(&t->list));
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200126 _HA_ATOMIC_INC(&ha_thread_ctx[thr].rq_total);
Amaury Denoyelle7b368332021-07-28 16:12:57 +0200127 if (sleeping_thread_mask & (1UL << thr)) {
128 _HA_ATOMIC_AND(&sleeping_thread_mask, ~(1UL << thr));
129 wake_thread(thr);
130 }
131 return;
132 }
133 }
134}
135
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100136/* Do not call this one, please use tasklet_wakeup_on() instead, as this one is
137 * the slow path of tasklet_wakeup_on() which performs some preliminary checks
138 * and sets TASK_IN_LIST before calling this one. A negative <thr> designates
139 * the current thread.
140 */
141void __tasklet_wakeup_on(struct tasklet *tl, int thr)
142{
143 if (likely(thr < 0)) {
144 /* this tasklet runs on the caller thread */
Willy Tarreau826fa872021-02-26 10:13:40 +0100145 if (tl->state & TASK_HEAVY) {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200146 LIST_APPEND(&th_ctx->tasklets[TL_HEAVY], &tl->list);
147 th_ctx->tl_class_mask |= 1 << TL_HEAVY;
Willy Tarreau826fa872021-02-26 10:13:40 +0100148 }
149 else if (tl->state & TASK_SELF_WAKING) {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200150 LIST_APPEND(&th_ctx->tasklets[TL_BULK], &tl->list);
151 th_ctx->tl_class_mask |= 1 << TL_BULK;
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100152 }
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200153 else if ((struct task *)tl == th_ctx->current) {
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100154 _HA_ATOMIC_OR(&tl->state, TASK_SELF_WAKING);
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200155 LIST_APPEND(&th_ctx->tasklets[TL_BULK], &tl->list);
156 th_ctx->tl_class_mask |= 1 << TL_BULK;
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100157 }
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200158 else if (th_ctx->current_queue < 0) {
159 LIST_APPEND(&th_ctx->tasklets[TL_URGENT], &tl->list);
160 th_ctx->tl_class_mask |= 1 << TL_URGENT;
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100161 }
162 else {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200163 LIST_APPEND(&th_ctx->tasklets[th_ctx->current_queue], &tl->list);
164 th_ctx->tl_class_mask |= 1 << th_ctx->current_queue;
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100165 }
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200166 _HA_ATOMIC_INC(&th_ctx->rq_total);
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100167 } else {
168 /* this tasklet runs on a specific thread. */
Willy Tarreaucc5cd5b2022-01-28 09:48:12 +0100169 MT_LIST_APPEND(&ha_thread_ctx[thr].shared_tasklet_list, list_to_mt_list(&tl->list));
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200170 _HA_ATOMIC_INC(&ha_thread_ctx[thr].rq_total);
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100171 if (sleeping_thread_mask & (1UL << thr)) {
172 _HA_ATOMIC_AND(&sleeping_thread_mask, ~(1UL << thr));
173 wake_thread(thr);
174 }
175 }
176}
177
Frédéric Lécaillead548b52022-06-29 10:53:03 +0200178/* Do not call this one, please use tasklet_wakeup_after_on() instead, as this one is
179 * the slow path of tasklet_wakeup_after() which performs some preliminary checks
180 * and sets TASK_IN_LIST before calling this one.
181 */
182struct list *__tasklet_wakeup_after(struct list *head, struct tasklet *tl)
183{
184 BUG_ON(tid != tl->tid);
185 /* this tasklet runs on the caller thread */
186 if (!head) {
187 if (tl->state & TASK_HEAVY) {
188 LIST_INSERT(&th_ctx->tasklets[TL_HEAVY], &tl->list);
189 th_ctx->tl_class_mask |= 1 << TL_HEAVY;
190 }
191 else if (tl->state & TASK_SELF_WAKING) {
192 LIST_INSERT(&th_ctx->tasklets[TL_BULK], &tl->list);
193 th_ctx->tl_class_mask |= 1 << TL_BULK;
194 }
195 else if ((struct task *)tl == th_ctx->current) {
196 _HA_ATOMIC_OR(&tl->state, TASK_SELF_WAKING);
197 LIST_INSERT(&th_ctx->tasklets[TL_BULK], &tl->list);
198 th_ctx->tl_class_mask |= 1 << TL_BULK;
199 }
200 else if (th_ctx->current_queue < 0) {
201 LIST_INSERT(&th_ctx->tasklets[TL_URGENT], &tl->list);
202 th_ctx->tl_class_mask |= 1 << TL_URGENT;
203 }
204 else {
205 LIST_INSERT(&th_ctx->tasklets[th_ctx->current_queue], &tl->list);
206 th_ctx->tl_class_mask |= 1 << th_ctx->current_queue;
207 }
208 }
209 else {
210 LIST_APPEND(head, &tl->list);
211 }
212 _HA_ATOMIC_INC(&th_ctx->rq_total);
213 return &tl->list;
214}
215
Willy Tarreau4726f532009-03-07 17:25:21 +0100216/* Puts the task <t> in run queue at a position depending on t->nice. <t> is
217 * returned. The nice value assigns boosts in 32th of the run queue size. A
Christopher Faulet34c5cc92016-12-06 09:15:30 +0100218 * nice value of -1024 sets the task to -tasks_run_queue*32, while a nice value
219 * of 1024 sets the task to tasks_run_queue*32. The state flags are cleared, so
220 * the caller will have to set its flags after this call.
Willy Tarreau4726f532009-03-07 17:25:21 +0100221 * The task must not already be in the run queue. If unsure, use the safer
222 * task_wakeup() function.
Willy Tarreau91e99932008-06-30 07:51:00 +0200223 */
Willy Tarreau018564e2021-02-24 16:41:11 +0100224void __task_wakeup(struct task *t)
Willy Tarreaue33aece2007-04-30 13:15:14 +0200225{
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200226 struct eb_root *root = &th_ctx->rqueue;
Willy Tarreau29ffe262022-06-15 14:31:38 +0200227 int thr __maybe_unused = t->tid >= 0 ? t->tid : tid;
Willy Tarreau018564e2021-02-24 16:41:11 +0100228
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200229#ifdef USE_THREAD
Willy Tarreau29ffe262022-06-15 14:31:38 +0200230 if (thr != tid) {
Willy Tarreau6f780382022-06-16 15:30:50 +0200231 root = &ha_thread_ctx[thr].rqueue_shared;
Willy Tarreau018564e2021-02-24 16:41:11 +0100232
Willy Tarreauda195e82022-06-16 15:52:49 +0200233 _HA_ATOMIC_INC(&ha_thread_ctx[thr].rq_total);
Willy Tarreaub17dd6c2022-06-16 16:58:17 +0200234 HA_SPIN_LOCK(TASK_RQ_LOCK, &ha_thread_ctx[thr].rqsh_lock);
Willy Tarreau9c7b8082021-02-24 15:10:07 +0100235
Willy Tarreau6f780382022-06-16 15:30:50 +0200236 t->rq.key = _HA_ATOMIC_ADD_FETCH(&ha_thread_ctx[thr].rqueue_ticks, 1);
Olivier Houcharded1a6a02019-04-18 14:12:51 +0200237 __ha_barrier_store();
Willy Tarreauc6ba9a02021-02-20 12:49:54 +0100238 } else
Olivier Houchardc4aac9e2018-07-26 15:25:49 +0200239#endif
Willy Tarreau9c7b8082021-02-24 15:10:07 +0100240 {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200241 _HA_ATOMIC_INC(&th_ctx->rq_total);
Willy Tarreaua4fb79b2022-06-16 15:44:35 +0200242 t->rq.key = _HA_ATOMIC_ADD_FETCH(&th_ctx->rqueue_ticks, 1);
Willy Tarreau9c7b8082021-02-24 15:10:07 +0100243 }
Willy Tarreau91e99932008-06-30 07:51:00 +0200244
245 if (likely(t->nice)) {
246 int offset;
247
Willy Tarreau4781b152021-04-06 13:53:36 +0200248 _HA_ATOMIC_INC(&niced_tasks);
Willy Tarreau2d1fd0a2019-04-15 09:18:31 +0200249 offset = t->nice * (int)global.tune.runqueue_depth;
Willy Tarreau4726f532009-03-07 17:25:21 +0100250 t->rq.key += offset;
Willy Tarreau91e99932008-06-30 07:51:00 +0200251 }
252
Willy Tarreau680ed5f2022-06-13 15:59:39 +0200253 if (th_ctx->flags & TH_FL_TASK_PROFILING)
Willy Tarreau9efd7452018-05-31 14:48:54 +0200254 t->call_date = now_mono_time();
255
Willy Tarreau319d1362022-06-16 16:28:01 +0200256 eb32_insert(root, &t->rq);
Willy Tarreau018564e2021-02-24 16:41:11 +0100257
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200258#ifdef USE_THREAD
Willy Tarreau29ffe262022-06-15 14:31:38 +0200259 if (thr != tid) {
Willy Tarreaub17dd6c2022-06-16 16:58:17 +0200260 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &ha_thread_ctx[thr].rqsh_lock);
Willy Tarreau2c41d772021-02-24 16:13:03 +0100261
Willy Tarreaueeffb3d2021-02-24 16:44:51 +0100262 /* If all threads that are supposed to handle this task are sleeping,
263 * wake one.
264 */
Willy Tarreauc44d08e2022-06-15 15:44:00 +0200265 if (sleeping_thread_mask & (1UL << thr)) {
266 unsigned long m = 1UL << thr;
Olivier Houchard1b327902019-03-15 00:23:10 +0100267
Willy Tarreaueeffb3d2021-02-24 16:44:51 +0100268 _HA_ATOMIC_AND(&sleeping_thread_mask, ~m);
Willy Tarreau29ffe262022-06-15 14:31:38 +0200269 wake_thread(thr);
Willy Tarreaueeffb3d2021-02-24 16:44:51 +0100270 }
Olivier Houchard1b327902019-03-15 00:23:10 +0100271 }
Willy Tarreau85d9b842018-07-27 17:14:41 +0200272#endif
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200273 return;
Willy Tarreaue33aece2007-04-30 13:15:14 +0200274}
Willy Tarreaud825eef2007-05-12 22:35:00 +0200275
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200276/*
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100277 * __task_queue()
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200278 *
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200279 * Inserts a task into wait queue <wq> at the position given by its expiration
Willy Tarreau4726f532009-03-07 17:25:21 +0100280 * date. It does not matter if the task was already in the wait queue or not,
Willy Tarreau7a969992021-09-30 16:38:09 +0200281 * as it will be unlinked. The task MUST NOT have an infinite expiration timer.
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100282 * Last, tasks must not be queued further than the end of the tree, which is
283 * between <now_ms> and <now_ms> + 2^31 ms (now+24days in 32bit).
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100284 *
285 * This function should not be used directly, it is meant to be called by the
286 * inline version of task_queue() which performs a few cheap preliminary tests
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200287 * before deciding to call __task_queue(). Moreover this function doesn't care
288 * at all about locking so the caller must be careful when deciding whether to
289 * lock or not around this call.
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200290 */
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200291void __task_queue(struct task *task, struct eb_root *wq)
Willy Tarreau964c9362007-01-07 00:38:00 +0100292{
Willy Tarreaue5d79bc2020-07-22 14:29:42 +0200293#ifdef USE_THREAD
Willy Tarreau159e3ac2022-06-15 16:48:45 +0200294 BUG_ON((wq == &timers && task->tid >= 0) ||
295 (wq == &th_ctx->timers && task->tid < 0) ||
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200296 (wq != &timers && wq != &th_ctx->timers));
Willy Tarreaue5d79bc2020-07-22 14:29:42 +0200297#endif
Willy Tarreau7a969992021-09-30 16:38:09 +0200298 /* if this happens the process is doomed anyway, so better catch it now
299 * so that we have the caller in the stack.
300 */
301 BUG_ON(task->expire == TICK_ETERNITY);
Willy Tarreaue5d79bc2020-07-22 14:29:42 +0200302
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100303 if (likely(task_in_wq(task)))
Willy Tarreau4726f532009-03-07 17:25:21 +0100304 __task_unlink_wq(task);
Willy Tarreau4726f532009-03-07 17:25:21 +0100305
306 /* the task is not in the queue now */
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100307 task->wq.key = task->expire;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200308#ifdef DEBUG_CHECK_INVALID_EXPIRATION_DATES
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100309 if (tick_is_lt(task->wq.key, now_ms))
Willy Tarreau28c41a42008-06-29 17:00:59 +0200310 /* we're queuing too far away or in the past (most likely) */
Willy Tarreau4726f532009-03-07 17:25:21 +0100311 return;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200312#endif
Willy Tarreauce44f122008-07-05 18:16:19 +0200313
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200314 eb32_insert(wq, &task->wq);
Willy Tarreau964c9362007-01-07 00:38:00 +0100315}
316
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200317/*
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200318 * Extract all expired timers from the timer queue, and wakes up all
Willy Tarreauc49ba522019-12-11 08:12:23 +0100319 * associated tasks.
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200320 */
Willy Tarreauc49ba522019-12-11 08:12:23 +0100321void wake_expired_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200322{
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200323 struct thread_ctx * const tt = th_ctx; // thread's tasks
Willy Tarreau3cfaa8d2020-10-16 09:26:22 +0200324 int max_processed = global.tune.runqueue_depth;
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200325 struct task *task;
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200326 struct eb32_node *eb;
Willy Tarreauaf613e82020-06-05 08:40:51 +0200327 __decl_thread(int key);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200328
Willy Tarreauf5aef022022-06-14 15:04:34 +0200329 while (1) {
330 if (max_processed-- <= 0)
331 goto leave;
332
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200333 eb = eb32_lookup_ge(&tt->timers, now_ms - TIMER_LOOK_BACK);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200334 if (!eb) {
335 /* we might have reached the end of the tree, typically because
336 * <now_ms> is in the first half and we're first scanning the last
337 * half. Let's loop back to the beginning of the tree now.
338 */
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200339 eb = eb32_first(&tt->timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200340 if (likely(!eb))
341 break;
342 }
343
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200344 /* It is possible that this task was left at an earlier place in the
345 * tree because a recent call to task_queue() has not moved it. This
346 * happens when the new expiration date is later than the old one.
347 * Since it is very unlikely that we reach a timeout anyway, it's a
348 * lot cheaper to proceed like this because we almost never update
349 * the tree. We may also find disabled expiration dates there. Since
350 * we have detached the task from the tree, we simply call task_queue
351 * to take care of this. Note that we might occasionally requeue it at
352 * the same place, before <eb>, so we have to check if this happens,
353 * and adjust <eb>, otherwise we may skip it which is not what we want.
354 * We may also not requeue the task (and not point eb at it) if its
Willy Tarreau77015ab2020-06-19 11:50:27 +0200355 * expiration time is not set. We also make sure we leave the real
356 * expiration date for the next task in the queue so that when calling
357 * next_timer_expiry() we're guaranteed to see the next real date and
358 * not the next apparent date. This is in order to avoid useless
359 * wakeups.
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200360 */
Willy Tarreau77015ab2020-06-19 11:50:27 +0200361
362 task = eb32_entry(eb, struct task, wq);
363 if (tick_is_expired(task->expire, now_ms)) {
364 /* expired task, wake it up */
365 __task_unlink_wq(task);
366 task_wakeup(task, TASK_WOKEN_TIMER);
367 }
368 else if (task->expire != eb->key) {
369 /* task is not expired but its key doesn't match so let's
370 * update it and skip to next apparently expired task.
371 */
372 __task_unlink_wq(task);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200373 if (tick_isset(task->expire))
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200374 __task_queue(task, &tt->timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200375 }
Willy Tarreau77015ab2020-06-19 11:50:27 +0200376 else {
Willy Tarreau7a969992021-09-30 16:38:09 +0200377 /* task not expired and correctly placed. It may not be eternal. */
378 BUG_ON(task->expire == TICK_ETERNITY);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200379 break;
380 }
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200381 }
382
383#ifdef USE_THREAD
Willy Tarreau1e928c02019-05-28 18:57:25 +0200384 if (eb_is_empty(&timers))
385 goto leave;
386
387 HA_RWLOCK_RDLOCK(TASK_WQ_LOCK, &wq_lock);
388 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
389 if (!eb) {
390 eb = eb32_first(&timers);
391 if (likely(!eb)) {
392 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
393 goto leave;
394 }
395 }
396 key = eb->key;
Willy Tarreau1e928c02019-05-28 18:57:25 +0200397
Willy Tarreaud48ed662020-10-16 09:31:41 +0200398 if (tick_is_lt(now_ms, key)) {
399 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau1e928c02019-05-28 18:57:25 +0200400 goto leave;
Willy Tarreaud48ed662020-10-16 09:31:41 +0200401 }
Willy Tarreau1e928c02019-05-28 18:57:25 +0200402
403 /* There's really something of interest here, let's visit the queue */
404
Willy Tarreaud48ed662020-10-16 09:31:41 +0200405 if (HA_RWLOCK_TRYRDTOSK(TASK_WQ_LOCK, &wq_lock)) {
406 /* if we failed to grab the lock it means another thread is
407 * already doing the same here, so let it do the job.
408 */
409 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
410 goto leave;
411 }
412
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200413 while (1) {
Emeric Brunc60def82017-09-27 14:59:38 +0200414 lookup_next:
Willy Tarreau3cfaa8d2020-10-16 09:26:22 +0200415 if (max_processed-- <= 0)
416 break;
Emeric Brun01948972017-03-30 15:37:25 +0200417 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
Emeric Brunc60def82017-09-27 14:59:38 +0200418 if (!eb) {
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100419 /* we might have reached the end of the tree, typically because
420 * <now_ms> is in the first half and we're first scanning the last
421 * half. Let's loop back to the beginning of the tree now.
422 */
423 eb = eb32_first(&timers);
Willy Tarreaub992ba12017-11-05 19:09:27 +0100424 if (likely(!eb))
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100425 break;
426 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200427
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100428 task = eb32_entry(eb, struct task, wq);
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100429
430 /* Check for any competing run of the task (quite rare but may
431 * involve a dangerous concurrent access on task->expire). In
432 * order to protect against this, we'll take an exclusive access
433 * on TASK_RUNNING before checking/touching task->expire. If the
434 * task is already RUNNING on another thread, it will deal by
435 * itself with the requeuing so we must not do anything and
436 * simply quit the loop for now, because we cannot wait with the
437 * WQ lock held as this would prevent the running thread from
438 * requeuing the task. One annoying effect of holding RUNNING
439 * here is that a concurrent task_wakeup() will refrain from
440 * waking it up. This forces us to check for a wakeup after
441 * releasing the flag.
442 */
443 if (HA_ATOMIC_FETCH_OR(&task->state, TASK_RUNNING) & TASK_RUNNING)
444 break;
445
Willy Tarreau77015ab2020-06-19 11:50:27 +0200446 if (tick_is_expired(task->expire, now_ms)) {
447 /* expired task, wake it up */
Willy Tarreaud48ed662020-10-16 09:31:41 +0200448 HA_RWLOCK_SKTOWR(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200449 __task_unlink_wq(task);
Willy Tarreaud48ed662020-10-16 09:31:41 +0200450 HA_RWLOCK_WRTOSK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100451 task_drop_running(task, TASK_WOKEN_TIMER);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200452 }
453 else if (task->expire != eb->key) {
454 /* task is not expired but its key doesn't match so let's
455 * update it and skip to next apparently expired task.
456 */
Willy Tarreaud48ed662020-10-16 09:31:41 +0200457 HA_RWLOCK_SKTOWR(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200458 __task_unlink_wq(task);
Willy Tarreaub992ba12017-11-05 19:09:27 +0100459 if (tick_isset(task->expire))
Willy Tarreau783afbe2020-07-22 14:12:45 +0200460 __task_queue(task, &timers);
Willy Tarreaud48ed662020-10-16 09:31:41 +0200461 HA_RWLOCK_WRTOSK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100462 task_drop_running(task, 0);
Emeric Brunc60def82017-09-27 14:59:38 +0200463 goto lookup_next;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200464 }
Willy Tarreau77015ab2020-06-19 11:50:27 +0200465 else {
Willy Tarreau7a969992021-09-30 16:38:09 +0200466 /* task not expired and correctly placed. It may not be eternal. */
467 BUG_ON(task->expire == TICK_ETERNITY);
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100468 task_drop_running(task, 0);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200469 break;
470 }
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100471 }
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200472
Willy Tarreaud48ed662020-10-16 09:31:41 +0200473 HA_RWLOCK_SKUNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200474#endif
Willy Tarreau1e928c02019-05-28 18:57:25 +0200475leave:
Willy Tarreauc49ba522019-12-11 08:12:23 +0100476 return;
477}
478
479/* Checks the next timer for the current thread by looking into its own timer
480 * list and the global one. It may return TICK_ETERNITY if no timer is present.
Ilya Shipitsin856aabc2020-04-16 23:51:34 +0500481 * Note that the next timer might very well be slightly in the past.
Willy Tarreauc49ba522019-12-11 08:12:23 +0100482 */
483int next_timer_expiry()
484{
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200485 struct thread_ctx * const tt = th_ctx; // thread's tasks
Willy Tarreauc49ba522019-12-11 08:12:23 +0100486 struct eb32_node *eb;
487 int ret = TICK_ETERNITY;
Willy Tarreau6ce02322020-08-21 05:48:34 +0200488 __decl_thread(int key = TICK_ETERNITY);
Willy Tarreauc49ba522019-12-11 08:12:23 +0100489
490 /* first check in the thread-local timers */
491 eb = eb32_lookup_ge(&tt->timers, now_ms - TIMER_LOOK_BACK);
492 if (!eb) {
493 /* we might have reached the end of the tree, typically because
494 * <now_ms> is in the first half and we're first scanning the last
495 * half. Let's loop back to the beginning of the tree now.
496 */
497 eb = eb32_first(&tt->timers);
498 }
499
500 if (eb)
501 ret = eb->key;
502
503#ifdef USE_THREAD
504 if (!eb_is_empty(&timers)) {
505 HA_RWLOCK_RDLOCK(TASK_WQ_LOCK, &wq_lock);
506 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
507 if (!eb)
508 eb = eb32_first(&timers);
509 if (eb)
510 key = eb->key;
511 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
512 if (eb)
513 ret = tick_first(ret, key);
514 }
515#endif
Willy Tarreaub992ba12017-11-05 19:09:27 +0100516 return ret;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200517}
518
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200519/* Walks over tasklet lists th_ctx->tasklets[0..TL_CLASSES-1] and run at most
Willy Tarreau59153fe2020-06-24 10:17:29 +0200520 * budget[TL_*] of them. Returns the number of entries effectively processed
521 * (tasks and tasklets merged). The count of tasks in the list for the current
522 * thread is adjusted.
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100523 */
Willy Tarreau59153fe2020-06-24 10:17:29 +0200524unsigned int run_tasks_from_lists(unsigned int budgets[])
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100525{
Willy Tarreau144f84a2021-03-02 16:09:26 +0100526 struct task *(*process)(struct task *t, void *ctx, unsigned int state);
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200527 struct list *tl_queues = th_ctx->tasklets;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100528 struct task *t;
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200529 uint8_t budget_mask = (1 << TL_CLASSES) - 1;
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100530 struct sched_activity *profile_entry = NULL;
Willy Tarreau59153fe2020-06-24 10:17:29 +0200531 unsigned int done = 0;
532 unsigned int queue;
Willy Tarreau144f84a2021-03-02 16:09:26 +0100533 unsigned int state;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100534 void *ctx;
Willy Tarreau59153fe2020-06-24 10:17:29 +0200535
536 for (queue = 0; queue < TL_CLASSES;) {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200537 th_ctx->current_queue = queue;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100538
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200539 /* global.tune.sched.low-latency is set */
540 if (global.tune.options & GTUNE_SCHED_LOW_LATENCY) {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200541 if (unlikely(th_ctx->tl_class_mask & budget_mask & ((1 << queue) - 1))) {
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200542 /* a lower queue index has tasks again and still has a
543 * budget to run them. Let's switch to it now.
544 */
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200545 queue = (th_ctx->tl_class_mask & 1) ? 0 :
546 (th_ctx->tl_class_mask & 2) ? 1 : 2;
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200547 continue;
548 }
549
550 if (unlikely(queue > TL_URGENT &&
551 budget_mask & (1 << TL_URGENT) &&
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200552 !MT_LIST_ISEMPTY(&th_ctx->shared_tasklet_list))) {
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200553 /* an urgent tasklet arrived from another thread */
554 break;
555 }
556
557 if (unlikely(queue > TL_NORMAL &&
558 budget_mask & (1 << TL_NORMAL) &&
Willy Tarreauc958c702022-06-16 15:59:36 +0200559 (!eb_is_empty(&th_ctx->rqueue) || !eb_is_empty(&th_ctx->rqueue_shared)))) {
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200560 /* a task was woken up by a bulk tasklet or another thread */
561 break;
562 }
563 }
564
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200565 if (LIST_ISEMPTY(&tl_queues[queue])) {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200566 th_ctx->tl_class_mask &= ~(1 << queue);
Willy Tarreau59153fe2020-06-24 10:17:29 +0200567 queue++;
568 continue;
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200569 }
570
Willy Tarreau59153fe2020-06-24 10:17:29 +0200571 if (!budgets[queue]) {
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200572 budget_mask &= ~(1 << queue);
Willy Tarreau59153fe2020-06-24 10:17:29 +0200573 queue++;
574 continue;
575 }
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200576
Willy Tarreau59153fe2020-06-24 10:17:29 +0200577 budgets[queue]--;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100578 activity[tid].ctxsw++;
Willy Tarreau3193eb92021-10-21 16:17:29 +0200579
580 t = (struct task *)LIST_ELEM(tl_queues[queue].n, struct tasklet *, list);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100581 ctx = t->context;
582 process = t->process;
583 t->calls++;
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200584 th_ctx->current = t;
Willy Tarreau3193eb92021-10-21 16:17:29 +0200585 th_ctx->flags &= ~TH_FL_STUCK; // this thread is still running
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100586
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200587 _HA_ATOMIC_DEC(&th_ctx->rq_total);
Willy Tarreau2da4c312020-11-30 14:52:11 +0100588
Willy Tarreau3193eb92021-10-21 16:17:29 +0200589 if (t->state & TASK_F_TASKLET) {
Willy Tarreau2a54ffb2021-02-25 09:32:58 +0100590 uint64_t before = 0;
591
Willy Tarreau4d6c5942020-11-30 14:58:53 +0100592 LIST_DEL_INIT(&((struct tasklet *)t)->list);
593 __ha_barrier_store();
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100594
Willy Tarreau680ed5f2022-06-13 15:59:39 +0200595 if (unlikely(th_ctx->flags & TH_FL_TASK_PROFILING)) {
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100596 profile_entry = sched_activity_entry(sched_activity, t->process);
597 before = now_mono_time();
Willy Tarreaub2285de2021-02-25 08:39:07 +0100598#ifdef DEBUG_TASK
Willy Tarreau2a54ffb2021-02-25 09:32:58 +0100599 if (((struct tasklet *)t)->call_date) {
600 HA_ATOMIC_ADD(&profile_entry->lat_time, before - ((struct tasklet *)t)->call_date);
601 ((struct tasklet *)t)->call_date = 0;
602 }
Willy Tarreaub2285de2021-02-25 08:39:07 +0100603#endif
Willy Tarreau2a54ffb2021-02-25 09:32:58 +0100604 }
605
Willy Tarreau3193eb92021-10-21 16:17:29 +0200606 state = _HA_ATOMIC_FETCH_AND(&t->state, TASK_PERSISTENT);
Willy Tarreau2a54ffb2021-02-25 09:32:58 +0100607 __ha_barrier_atomic_store();
608
Amaury Denoyelle7b368332021-07-28 16:12:57 +0200609 if (likely(!(state & TASK_KILLED))) {
610 process(t, ctx, state);
611 }
612 else {
613 done++;
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200614 th_ctx->current = NULL;
Amaury Denoyelle7b368332021-07-28 16:12:57 +0200615 pool_free(pool_head_tasklet, t);
616 __ha_barrier_store();
617 continue;
618 }
Willy Tarreau2a54ffb2021-02-25 09:32:58 +0100619
Willy Tarreau680ed5f2022-06-13 15:59:39 +0200620 if (unlikely(th_ctx->flags & TH_FL_TASK_PROFILING)) {
Willy Tarreau4781b152021-04-06 13:53:36 +0200621 HA_ATOMIC_INC(&profile_entry->calls);
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100622 HA_ATOMIC_ADD(&profile_entry->cpu_time, now_mono_time() - before);
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100623 }
Willy Tarreau2a54ffb2021-02-25 09:32:58 +0100624
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100625 done++;
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200626 th_ctx->current = NULL;
Willy Tarreaud23d4132020-01-31 10:39:03 +0100627 __ha_barrier_store();
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100628 continue;
629 }
630
Willy Tarreau4d6c5942020-11-30 14:58:53 +0100631 LIST_DEL_INIT(&((struct tasklet *)t)->list);
632 __ha_barrier_store();
Willy Tarreau3193eb92021-10-21 16:17:29 +0200633
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100634 /* We must be the exclusive owner of the TASK_RUNNING bit, and
635 * have to be careful that the task is not being manipulated on
636 * another thread finding it expired in wake_expired_tasks().
637 * The TASK_RUNNING bit will be set during these operations,
638 * they are extremely rare and do not last long so the best to
639 * do here is to wait.
640 */
641 state = _HA_ATOMIC_LOAD(&t->state);
642 do {
643 while (unlikely(state & TASK_RUNNING)) {
644 __ha_cpu_relax();
645 state = _HA_ATOMIC_LOAD(&t->state);
646 }
647 } while (!_HA_ATOMIC_CAS(&t->state, &state, (state & TASK_PERSISTENT) | TASK_RUNNING));
Willy Tarreau3193eb92021-10-21 16:17:29 +0200648
Willy Tarreau952c2642020-01-31 16:39:30 +0100649 __ha_barrier_atomic_store();
Willy Tarreau952c2642020-01-31 16:39:30 +0100650
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100651 /* OK then this is a regular task */
652
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200653 _HA_ATOMIC_DEC(&ha_thread_ctx[tid].tasks_in_list);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100654 if (unlikely(t->call_date)) {
655 uint64_t now_ns = now_mono_time();
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100656 uint64_t lat = now_ns - t->call_date;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100657
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100658 t->lat_time += lat;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100659 t->call_date = now_ns;
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100660 profile_entry = sched_activity_entry(sched_activity, t->process);
661 HA_ATOMIC_ADD(&profile_entry->lat_time, lat);
Willy Tarreau4781b152021-04-06 13:53:36 +0200662 HA_ATOMIC_INC(&profile_entry->calls);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100663 }
664
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100665 __ha_barrier_store();
Willy Tarreau8a6049c2020-06-30 11:48:48 +0200666
667 /* Note for below: if TASK_KILLED arrived before we've read the state, we
668 * directly free the task. Otherwise it will be seen after processing and
669 * it's freed on the exit path.
670 */
671 if (likely(!(state & TASK_KILLED) && process == process_stream))
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100672 t = process_stream(t, ctx, state);
Willy Tarreau8a6049c2020-06-30 11:48:48 +0200673 else if (!(state & TASK_KILLED) && process != NULL)
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100674 t = process(t, ctx, state);
675 else {
Willy Tarreau273aea42020-07-17 14:37:51 +0200676 task_unlink_wq(t);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100677 __task_free(t);
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200678 th_ctx->current = NULL;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100679 __ha_barrier_store();
680 /* We don't want max_processed to be decremented if
681 * we're just freeing a destroyed task, we should only
682 * do so if we really ran a task.
683 */
684 continue;
685 }
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200686 th_ctx->current = NULL;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100687 __ha_barrier_store();
688 /* If there is a pending state we have to wake up the task
689 * immediately, else we defer it into wait queue
690 */
691 if (t != NULL) {
692 if (unlikely(t->call_date)) {
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100693 uint64_t cpu = now_mono_time() - t->call_date;
694
695 t->cpu_time += cpu;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100696 t->call_date = 0;
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100697 HA_ATOMIC_ADD(&profile_entry->cpu_time, cpu);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100698 }
699
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100700 state = _HA_ATOMIC_LOAD(&t->state);
Willy Tarreau8a6049c2020-06-30 11:48:48 +0200701 if (unlikely(state & TASK_KILLED)) {
Willy Tarreau273aea42020-07-17 14:37:51 +0200702 task_unlink_wq(t);
Willy Tarreau8a6049c2020-06-30 11:48:48 +0200703 __task_free(t);
704 }
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100705 else {
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100706 task_queue(t);
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100707 task_drop_running(t, 0);
708 }
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100709 }
710 done++;
711 }
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200712 th_ctx->current_queue = -1;
Willy Tarreau116ef222020-06-23 16:35:38 +0200713
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100714 return done;
715}
716
Willy Tarreau58b458d2008-06-29 22:40:23 +0200717/* The run queue is chronologically sorted in a tree. An insertion counter is
718 * used to assign a position to each task. This counter may be combined with
719 * other variables (eg: nice value) to set the final position in the tree. The
720 * counter may wrap without a problem, of course. We then limit the number of
Christopher Faulet8a48f672017-11-14 10:38:36 +0100721 * tasks processed to 200 in any case, so that general latency remains low and
Willy Tarreaucde79022019-04-12 18:03:41 +0200722 * so that task positions have a chance to be considered. The function scans
723 * both the global and local run queues and picks the most urgent task between
724 * the two. We need to grab the global runqueue lock to touch it so it's taken
725 * on the very first access to the global run queue and is released as soon as
726 * it reaches the end.
Willy Tarreau58b458d2008-06-29 22:40:23 +0200727 *
728 * The function adjusts <next> if a new event is closer.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200729 */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100730void process_runnable_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200731{
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200732 struct thread_ctx * const tt = th_ctx;
Willy Tarreau319d1362022-06-16 16:28:01 +0200733 struct eb32_node *lrq; // next local run queue entry
734 struct eb32_node *grq; // next global run queue entry
Willy Tarreau964c9362007-01-07 00:38:00 +0100735 struct task *t;
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200736 const unsigned int default_weights[TL_CLASSES] = {
737 [TL_URGENT] = 64, // ~50% of CPU bandwidth for I/O
738 [TL_NORMAL] = 48, // ~37% of CPU bandwidth for tasks
739 [TL_BULK] = 16, // ~13% of CPU bandwidth for self-wakers
Willy Tarreau401135c2021-02-26 09:16:22 +0100740 [TL_HEAVY] = 1, // never more than 1 heavy task at once
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200741 };
742 unsigned int max[TL_CLASSES]; // max to be run per class
743 unsigned int max_total; // sum of max above
Olivier Houchard06910462019-10-11 16:35:01 +0200744 struct mt_list *tmp_list;
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200745 unsigned int queue;
746 int max_processed;
Willy Tarreaue7923c12021-02-25 07:09:08 +0100747 int lpicked, gpicked;
Willy Tarreau76390da2021-02-26 10:18:11 +0100748 int heavy_queued = 0;
Willy Tarreauc309dbd2020-11-30 15:39:00 +0100749 int budget;
Christopher Faulet3911ee82017-11-14 10:26:53 +0100750
Willy Tarreaua0b99532021-09-30 18:48:37 +0200751 th_ctx->flags &= ~TH_FL_STUCK; // this thread is still running
Willy Tarreaue6a02fa2019-05-22 07:06:44 +0200752
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200753 if (!thread_has_tasks()) {
754 activity[tid].empty_rq++;
755 return;
756 }
757
Willy Tarreau5c8be272020-06-19 12:17:55 +0200758 max_processed = global.tune.runqueue_depth;
759
760 if (likely(niced_tasks))
761 max_processed = (max_processed + 3) / 4;
762
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200763 if (max_processed < th_ctx->rq_total && th_ctx->rq_total <= 2*max_processed) {
Willy Tarreau1691ba32021-03-10 09:26:24 +0100764 /* If the run queue exceeds the budget by up to 50%, let's cut it
765 * into two identical halves to improve latency.
766 */
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200767 max_processed = th_ctx->rq_total / 2;
Willy Tarreau1691ba32021-03-10 09:26:24 +0100768 }
769
Willy Tarreau5c8be272020-06-19 12:17:55 +0200770 not_done_yet:
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200771 max[TL_URGENT] = max[TL_NORMAL] = max[TL_BULK] = 0;
Willy Tarreaucde79022019-04-12 18:03:41 +0200772
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200773 /* urgent tasklets list gets a default weight of ~50% */
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200774 if ((tt->tl_class_mask & (1 << TL_URGENT)) ||
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200775 !MT_LIST_ISEMPTY(&tt->shared_tasklet_list))
776 max[TL_URGENT] = default_weights[TL_URGENT];
Willy Tarreaua62917b2020-01-30 18:37:28 +0100777
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200778 /* normal tasklets list gets a default weight of ~37% */
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200779 if ((tt->tl_class_mask & (1 << TL_NORMAL)) ||
Willy Tarreauc958c702022-06-16 15:59:36 +0200780 !eb_is_empty(&th_ctx->rqueue) || !eb_is_empty(&th_ctx->rqueue_shared))
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200781 max[TL_NORMAL] = default_weights[TL_NORMAL];
Willy Tarreaua62917b2020-01-30 18:37:28 +0100782
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200783 /* bulk tasklets list gets a default weight of ~13% */
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200784 if ((tt->tl_class_mask & (1 << TL_BULK)))
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200785 max[TL_BULK] = default_weights[TL_BULK];
786
Willy Tarreau401135c2021-02-26 09:16:22 +0100787 /* heavy tasks are processed only once and never refilled in a
Willy Tarreau76390da2021-02-26 10:18:11 +0100788 * call round. That budget is not lost either as we don't reset
789 * it unless consumed.
Willy Tarreau401135c2021-02-26 09:16:22 +0100790 */
Willy Tarreau76390da2021-02-26 10:18:11 +0100791 if (!heavy_queued) {
792 if ((tt->tl_class_mask & (1 << TL_HEAVY)))
793 max[TL_HEAVY] = default_weights[TL_HEAVY];
794 else
795 max[TL_HEAVY] = 0;
796 heavy_queued = 1;
797 }
Willy Tarreau401135c2021-02-26 09:16:22 +0100798
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200799 /* Now compute a fair share of the weights. Total may slightly exceed
Willy Tarreau1553b662020-06-30 13:46:21 +0200800 * 100% due to rounding, this is not a problem. Note that while in
801 * theory the sum cannot be NULL as we cannot get there without tasklets
802 * to process, in practice it seldom happens when multiple writers
Willy Tarreau2b718102021-04-21 07:32:39 +0200803 * conflict and rollback on MT_LIST_TRY_APPEND(shared_tasklet_list), causing
Willy Tarreau1553b662020-06-30 13:46:21 +0200804 * a first MT_LIST_ISEMPTY() to succeed for thread_has_task() and the
805 * one above to finally fail. This is extremely rare and not a problem.
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200806 */
Willy Tarreau401135c2021-02-26 09:16:22 +0100807 max_total = max[TL_URGENT] + max[TL_NORMAL] + max[TL_BULK] + max[TL_HEAVY];
Willy Tarreau1553b662020-06-30 13:46:21 +0200808 if (!max_total)
809 return;
810
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200811 for (queue = 0; queue < TL_CLASSES; queue++)
812 max[queue] = ((unsigned)max_processed * max[queue] + max_total - 1) / max_total;
813
Willy Tarreau76390da2021-02-26 10:18:11 +0100814 /* The heavy queue must never process more than one task at once
815 * anyway.
816 */
817 if (max[TL_HEAVY] > 1)
818 max[TL_HEAVY] = 1;
819
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200820 lrq = grq = NULL;
Christopher Faulet8a48f672017-11-14 10:38:36 +0100821
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200822 /* pick up to max[TL_NORMAL] regular tasks from prio-ordered run queues */
823 /* Note: the grq lock is always held when grq is not null */
Willy Tarreaue7923c12021-02-25 07:09:08 +0100824 lpicked = gpicked = 0;
Willy Tarreau1f3b1412021-02-24 14:13:40 +0100825 budget = max[TL_NORMAL] - tt->tasks_in_list;
Willy Tarreaue7923c12021-02-25 07:09:08 +0100826 while (lpicked + gpicked < budget) {
Willy Tarreauc958c702022-06-16 15:59:36 +0200827 if (!eb_is_empty(&th_ctx->rqueue_shared) && !grq) {
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200828#ifdef USE_THREAD
Willy Tarreaub17dd6c2022-06-16 16:58:17 +0200829 HA_SPIN_LOCK(TASK_RQ_LOCK, &th_ctx->rqsh_lock);
Willy Tarreau319d1362022-06-16 16:28:01 +0200830 grq = eb32_lookup_ge(&th_ctx->rqueue_shared, _HA_ATOMIC_LOAD(&tt->rqueue_ticks) - TIMER_LOOK_BACK);
Willy Tarreaucde79022019-04-12 18:03:41 +0200831 if (unlikely(!grq)) {
Willy Tarreau319d1362022-06-16 16:28:01 +0200832 grq = eb32_first(&th_ctx->rqueue_shared);
Willy Tarreauc958c702022-06-16 15:59:36 +0200833 if (!grq)
Willy Tarreaub17dd6c2022-06-16 16:58:17 +0200834 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &th_ctx->rqsh_lock);
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100835 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200836#endif
Willy Tarreaucde79022019-04-12 18:03:41 +0200837 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100838
Willy Tarreaucde79022019-04-12 18:03:41 +0200839 /* If a global task is available for this thread, it's in grq
840 * now and the global RQ is locked.
841 */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200842
Willy Tarreaucde79022019-04-12 18:03:41 +0200843 if (!lrq) {
Willy Tarreau319d1362022-06-16 16:28:01 +0200844 lrq = eb32_lookup_ge(&tt->rqueue, _HA_ATOMIC_LOAD(&tt->rqueue_ticks) - TIMER_LOOK_BACK);
Willy Tarreaucde79022019-04-12 18:03:41 +0200845 if (unlikely(!lrq))
Willy Tarreau319d1362022-06-16 16:28:01 +0200846 lrq = eb32_first(&tt->rqueue);
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100847 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100848
Willy Tarreaucde79022019-04-12 18:03:41 +0200849 if (!lrq && !grq)
850 break;
851
852 if (likely(!grq || (lrq && (int)(lrq->key - grq->key) <= 0))) {
Willy Tarreau319d1362022-06-16 16:28:01 +0200853 t = eb32_entry(lrq, struct task, rq);
854 lrq = eb32_next(lrq);
855 eb32_delete(&t->rq);
Willy Tarreaue7923c12021-02-25 07:09:08 +0100856 lpicked++;
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200857 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200858#ifdef USE_THREAD
Willy Tarreaucde79022019-04-12 18:03:41 +0200859 else {
Willy Tarreau319d1362022-06-16 16:28:01 +0200860 t = eb32_entry(grq, struct task, rq);
861 grq = eb32_next(grq);
862 eb32_delete(&t->rq);
Willy Tarreau2b363ac2021-02-25 07:14:58 +0100863
Willy Tarreaucde79022019-04-12 18:03:41 +0200864 if (unlikely(!grq)) {
Willy Tarreau319d1362022-06-16 16:28:01 +0200865 grq = eb32_first(&th_ctx->rqueue_shared);
Willy Tarreauc958c702022-06-16 15:59:36 +0200866 if (!grq)
Willy Tarreaub17dd6c2022-06-16 16:58:17 +0200867 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &th_ctx->rqsh_lock);
Willy Tarreaucde79022019-04-12 18:03:41 +0200868 }
Willy Tarreaue7923c12021-02-25 07:09:08 +0100869 gpicked++;
Emeric Brun01948972017-03-30 15:37:25 +0200870 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200871#endif
Willy Tarreau2b363ac2021-02-25 07:14:58 +0100872 if (t->nice)
Willy Tarreau4781b152021-04-06 13:53:36 +0200873 _HA_ATOMIC_DEC(&niced_tasks);
Willy Tarreaucde79022019-04-12 18:03:41 +0200874
Willy Tarreaua868c292020-11-30 15:30:22 +0100875 /* Add it to the local task list */
Willy Tarreau2b718102021-04-21 07:32:39 +0200876 LIST_APPEND(&tt->tasklets[TL_NORMAL], &((struct tasklet *)t)->list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200877 }
Willy Tarreaucde79022019-04-12 18:03:41 +0200878
879 /* release the rqueue lock */
880 if (grq) {
Willy Tarreaub17dd6c2022-06-16 16:58:17 +0200881 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &th_ctx->rqsh_lock);
Willy Tarreaucde79022019-04-12 18:03:41 +0200882 grq = NULL;
883 }
884
Willy Tarreaue7923c12021-02-25 07:09:08 +0100885 if (lpicked + gpicked) {
Willy Tarreauc309dbd2020-11-30 15:39:00 +0100886 tt->tl_class_mask |= 1 << TL_NORMAL;
Willy Tarreaue7923c12021-02-25 07:09:08 +0100887 _HA_ATOMIC_ADD(&tt->tasks_in_list, lpicked + gpicked);
Willy Tarreaue7923c12021-02-25 07:09:08 +0100888 activity[tid].tasksw += lpicked + gpicked;
Willy Tarreauc309dbd2020-11-30 15:39:00 +0100889 }
890
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200891 /* Merge the list of tasklets waken up by other threads to the
892 * main list.
893 */
894 tmp_list = MT_LIST_BEHEAD(&tt->shared_tasklet_list);
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200895 if (tmp_list) {
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200896 LIST_SPLICE_END_DETACHED(&tt->tasklets[TL_URGENT], (struct list *)tmp_list);
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200897 if (!LIST_ISEMPTY(&tt->tasklets[TL_URGENT]))
898 tt->tl_class_mask |= 1 << TL_URGENT;
899 }
Willy Tarreaucde79022019-04-12 18:03:41 +0200900
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200901 /* execute tasklets in each queue */
Willy Tarreau59153fe2020-06-24 10:17:29 +0200902 max_processed -= run_tasks_from_lists(max);
Willy Tarreaua62917b2020-01-30 18:37:28 +0100903
Willy Tarreau5c8be272020-06-19 12:17:55 +0200904 /* some tasks may have woken other ones up */
Willy Tarreau0c0c85e2020-06-23 11:32:35 +0200905 if (max_processed > 0 && thread_has_tasks())
Willy Tarreau5c8be272020-06-19 12:17:55 +0200906 goto not_done_yet;
907
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200908 if (tt->tl_class_mask)
Willy Tarreaucde79022019-04-12 18:03:41 +0200909 activity[tid].long_rq++;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200910}
911
William Lallemand27f3fa52018-12-06 14:05:20 +0100912/*
913 * Delete every tasks before running the master polling loop
914 */
915void mworker_cleantasks()
916{
917 struct task *t;
918 int i;
William Lallemandb5823392018-12-06 15:14:37 +0100919 struct eb32_node *tmp_wq = NULL;
Willy Tarreau319d1362022-06-16 16:28:01 +0200920 struct eb32_node *tmp_rq = NULL;
William Lallemand27f3fa52018-12-06 14:05:20 +0100921
922#ifdef USE_THREAD
923 /* cleanup the global run queue */
Willy Tarreau319d1362022-06-16 16:28:01 +0200924 tmp_rq = eb32_first(&th_ctx->rqueue_shared);
William Lallemandb5823392018-12-06 15:14:37 +0100925 while (tmp_rq) {
Willy Tarreau319d1362022-06-16 16:28:01 +0200926 t = eb32_entry(tmp_rq, struct task, rq);
927 tmp_rq = eb32_next(tmp_rq);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200928 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100929 }
930 /* cleanup the timers queue */
William Lallemandb5823392018-12-06 15:14:37 +0100931 tmp_wq = eb32_first(&timers);
932 while (tmp_wq) {
933 t = eb32_entry(tmp_wq, struct task, wq);
934 tmp_wq = eb32_next(tmp_wq);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200935 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100936 }
937#endif
938 /* clean the per thread run queue */
939 for (i = 0; i < global.nbthread; i++) {
Willy Tarreau319d1362022-06-16 16:28:01 +0200940 tmp_rq = eb32_first(&ha_thread_ctx[i].rqueue);
William Lallemandb5823392018-12-06 15:14:37 +0100941 while (tmp_rq) {
Willy Tarreau319d1362022-06-16 16:28:01 +0200942 t = eb32_entry(tmp_rq, struct task, rq);
943 tmp_rq = eb32_next(tmp_rq);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200944 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100945 }
946 /* cleanup the per thread timers queue */
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200947 tmp_wq = eb32_first(&ha_thread_ctx[i].timers);
William Lallemandb5823392018-12-06 15:14:37 +0100948 while (tmp_wq) {
949 t = eb32_entry(tmp_wq, struct task, wq);
950 tmp_wq = eb32_next(tmp_wq);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200951 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100952 }
953 }
954}
955
Willy Tarreaub6b3df32018-11-26 16:31:20 +0100956/* perform minimal intializations */
957static void init_task()
Willy Tarreau4726f532009-03-07 17:25:21 +0100958{
Willy Tarreau401135c2021-02-26 09:16:22 +0100959 int i, q;
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200960
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200961#ifdef USE_THREAD
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200962 memset(&timers, 0, sizeof(timers));
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200963#endif
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200964 for (i = 0; i < MAX_THREADS; i++) {
Willy Tarreau401135c2021-02-26 09:16:22 +0100965 for (q = 0; q < TL_CLASSES; q++)
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200966 LIST_INIT(&ha_thread_ctx[i].tasklets[q]);
967 MT_LIST_INIT(&ha_thread_ctx[i].shared_tasklet_list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200968 }
Willy Tarreau4726f532009-03-07 17:25:21 +0100969}
970
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200971/* config parser for global "tune.sched.low-latency", accepts "on" or "off" */
972static int cfg_parse_tune_sched_low_latency(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +0100973 const struct proxy *defpx, const char *file, int line,
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200974 char **err)
975{
976 if (too_many_args(1, args, err, NULL))
977 return -1;
978
979 if (strcmp(args[1], "on") == 0)
980 global.tune.options |= GTUNE_SCHED_LOW_LATENCY;
981 else if (strcmp(args[1], "off") == 0)
982 global.tune.options &= ~GTUNE_SCHED_LOW_LATENCY;
983 else {
984 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
985 return -1;
986 }
987 return 0;
988}
989
990/* config keyword parsers */
991static struct cfg_kw_list cfg_kws = {ILH, {
992 { CFG_GLOBAL, "tune.sched.low-latency", cfg_parse_tune_sched_low_latency },
993 { 0, NULL, NULL }
994}};
995
996INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreaub6b3df32018-11-26 16:31:20 +0100997INITCALL0(STG_PREPARE, init_task);
998
Willy Tarreaubaaee002006-06-26 02:48:02 +0200999/*
1000 * Local variables:
1001 * c-indent-level: 8
1002 * c-basic-offset: 8
1003 * End:
1004 */