blob: 29505b9bf258537d1fa151faff2fc9abf63e67b6 [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/eb32sctree.h>
16#include <import/eb32tree.h>
17
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020018#include <haproxy/api.h>
Willy Tarreau5d9ddc52021-10-06 19:54:09 +020019#include <haproxy/activity.h>
Willy Tarreaue7723bd2020-06-24 11:11:02 +020020#include <haproxy/cfgparse.h>
Willy Tarreau55542642021-10-08 09:33:24 +020021#include <haproxy/clock.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020022#include <haproxy/fd.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020023#include <haproxy/list.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020024#include <haproxy/pool.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020025#include <haproxy/task.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020026#include <haproxy/tools.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020027
Willy Tarreaue08f4bf2021-05-08 20:10:13 +020028extern struct task *process_stream(struct task *t, void *context, unsigned int state);
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 Tarreaue35c94a2009-03-21 10:01:42 +010038unsigned int niced_tasks = 0; /* number of niced tasks in the run queue */
Emeric Brun01948972017-03-30 15:37:25 +020039
Willy Tarreauef28dc12019-05-28 18:48:07 +020040__decl_aligned_rwlock(wq_lock); /* RW lock related to the wait queue */
Willy Tarreau964c9362007-01-07 00:38:00 +010041
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020042#ifdef USE_THREAD
Willy Tarreauc6ba9a02021-02-20 12:49:54 +010043struct eb_root timers; /* sorted timers tree, global, accessed under wq_lock */
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020044#endif
Willy Tarreaub20aa9e2018-10-15 14:52:21 +020045
Willy Tarreau8d8747a2018-10-15 16:12:48 +020046
Willy Tarreaueb8c2c62020-06-30 11:48:48 +020047
48/* Flags the task <t> for immediate destruction and puts it into its first
49 * thread's shared tasklet list if not yet queued/running. This will bypass
50 * the priority scheduling and make the task show up as fast as possible in
51 * the other thread's queue. Note that this operation isn't idempotent and is
52 * not supposed to be run on the same task from multiple threads at once. It's
53 * the caller's responsibility to make sure it is the only one able to kill the
54 * task.
55 */
56void task_kill(struct task *t)
57{
Willy Tarreau144f84a2021-03-02 16:09:26 +010058 unsigned int state = t->state;
Willy Tarreaueb8c2c62020-06-30 11:48:48 +020059 unsigned int thr;
60
61 BUG_ON(state & TASK_KILLED);
62
63 while (1) {
64 while (state & (TASK_RUNNING | TASK_QUEUED)) {
65 /* task already in the queue and about to be executed,
66 * or even currently running. Just add the flag and be
67 * done with it, the process loop will detect it and kill
68 * it. The CAS will fail if we arrive too late.
69 */
70 if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_KILLED))
71 return;
72 }
73
74 /* We'll have to wake it up, but we must also secure it so that
75 * it doesn't vanish under us. TASK_QUEUED guarantees nobody will
76 * add past us.
77 */
78 if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_QUEUED | TASK_KILLED)) {
79 /* Bypass the tree and go directly into the shared tasklet list.
80 * Note: that's a task so it must be accounted for as such. Pick
81 * the task's first thread for the job.
82 */
Willy Tarreau29ffe262022-06-15 14:31:38 +020083 thr = t->tid >= 0 ? t->tid : tid;
Willy Tarreau54d31172020-07-02 14:14:00 +020084
85 /* Beware: tasks that have never run don't have their ->list empty yet! */
Willy Tarreau1a9c9222021-10-01 11:30:33 +020086 MT_LIST_APPEND(&ha_thread_ctx[thr].shared_tasklet_list,
Willy Tarreaucc5cd5b2022-01-28 09:48:12 +010087 list_to_mt_list(&((struct tasklet *)t)->list));
Willy Tarreau1a9c9222021-10-01 11:30:33 +020088 _HA_ATOMIC_INC(&ha_thread_ctx[thr].rq_total);
89 _HA_ATOMIC_INC(&ha_thread_ctx[thr].tasks_in_list);
Willy Tarreau54d31172020-07-02 14:14:00 +020090 if (sleeping_thread_mask & (1UL << thr)) {
91 _HA_ATOMIC_AND(&sleeping_thread_mask, ~(1UL << thr));
92 wake_thread(thr);
Willy Tarreaueb8c2c62020-06-30 11:48:48 +020093 }
Willy Tarreau54d31172020-07-02 14:14:00 +020094 return;
Willy Tarreaueb8c2c62020-06-30 11:48:48 +020095 }
96 }
97}
98
Amaury Denoyelle7b368332021-07-28 16:12:57 +020099/* Equivalent of task_kill for tasklets. Mark the tasklet <t> for destruction.
100 * It will be deleted on the next scheduler invocation. This function is
101 * thread-safe : a thread can kill a tasklet of another thread.
102 */
103void tasklet_kill(struct tasklet *t)
104{
105 unsigned int state = t->state;
106 unsigned int thr;
107
108 BUG_ON(state & TASK_KILLED);
109
110 while (1) {
111 while (state & (TASK_IN_LIST)) {
112 /* Tasklet already in the list ready to be executed. Add
113 * the killed flag and wait for the process loop to
114 * detect it.
115 */
116 if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_KILLED))
117 return;
118 }
119
120 /* Mark the tasklet as killed and wake the thread to process it
121 * as soon as possible.
122 */
123 if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_IN_LIST | TASK_KILLED)) {
Willy Tarreau9b3aa632022-06-15 15:54:56 +0200124 thr = t->tid >= 0 ? t->tid : tid;
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200125 MT_LIST_APPEND(&ha_thread_ctx[thr].shared_tasklet_list,
Willy Tarreaucc5cd5b2022-01-28 09:48:12 +0100126 list_to_mt_list(&t->list));
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200127 _HA_ATOMIC_INC(&ha_thread_ctx[thr].rq_total);
Amaury Denoyelle7b368332021-07-28 16:12:57 +0200128 if (sleeping_thread_mask & (1UL << thr)) {
129 _HA_ATOMIC_AND(&sleeping_thread_mask, ~(1UL << thr));
130 wake_thread(thr);
131 }
132 return;
133 }
134 }
135}
136
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100137/* Do not call this one, please use tasklet_wakeup_on() instead, as this one is
138 * the slow path of tasklet_wakeup_on() which performs some preliminary checks
139 * and sets TASK_IN_LIST before calling this one. A negative <thr> designates
140 * the current thread.
141 */
142void __tasklet_wakeup_on(struct tasklet *tl, int thr)
143{
144 if (likely(thr < 0)) {
145 /* this tasklet runs on the caller thread */
Willy Tarreau826fa872021-02-26 10:13:40 +0100146 if (tl->state & TASK_HEAVY) {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200147 LIST_APPEND(&th_ctx->tasklets[TL_HEAVY], &tl->list);
148 th_ctx->tl_class_mask |= 1 << TL_HEAVY;
Willy Tarreau826fa872021-02-26 10:13:40 +0100149 }
150 else if (tl->state & TASK_SELF_WAKING) {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200151 LIST_APPEND(&th_ctx->tasklets[TL_BULK], &tl->list);
152 th_ctx->tl_class_mask |= 1 << TL_BULK;
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100153 }
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200154 else if ((struct task *)tl == th_ctx->current) {
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100155 _HA_ATOMIC_OR(&tl->state, TASK_SELF_WAKING);
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200156 LIST_APPEND(&th_ctx->tasklets[TL_BULK], &tl->list);
157 th_ctx->tl_class_mask |= 1 << TL_BULK;
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100158 }
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200159 else if (th_ctx->current_queue < 0) {
160 LIST_APPEND(&th_ctx->tasklets[TL_URGENT], &tl->list);
161 th_ctx->tl_class_mask |= 1 << TL_URGENT;
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100162 }
163 else {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200164 LIST_APPEND(&th_ctx->tasklets[th_ctx->current_queue], &tl->list);
165 th_ctx->tl_class_mask |= 1 << th_ctx->current_queue;
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100166 }
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200167 _HA_ATOMIC_INC(&th_ctx->rq_total);
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100168 } else {
169 /* this tasklet runs on a specific thread. */
Willy Tarreaucc5cd5b2022-01-28 09:48:12 +0100170 MT_LIST_APPEND(&ha_thread_ctx[thr].shared_tasklet_list, list_to_mt_list(&tl->list));
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200171 _HA_ATOMIC_INC(&ha_thread_ctx[thr].rq_total);
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100172 if (sleeping_thread_mask & (1UL << thr)) {
173 _HA_ATOMIC_AND(&sleeping_thread_mask, ~(1UL << thr));
174 wake_thread(thr);
175 }
176 }
177}
178
Frédéric Lécaillead548b52022-06-29 10:53:03 +0200179/* Do not call this one, please use tasklet_wakeup_after_on() instead, as this one is
180 * the slow path of tasklet_wakeup_after() which performs some preliminary checks
181 * and sets TASK_IN_LIST before calling this one.
182 */
183struct list *__tasklet_wakeup_after(struct list *head, struct tasklet *tl)
184{
185 BUG_ON(tid != tl->tid);
186 /* this tasklet runs on the caller thread */
187 if (!head) {
188 if (tl->state & TASK_HEAVY) {
189 LIST_INSERT(&th_ctx->tasklets[TL_HEAVY], &tl->list);
190 th_ctx->tl_class_mask |= 1 << TL_HEAVY;
191 }
192 else if (tl->state & TASK_SELF_WAKING) {
193 LIST_INSERT(&th_ctx->tasklets[TL_BULK], &tl->list);
194 th_ctx->tl_class_mask |= 1 << TL_BULK;
195 }
196 else if ((struct task *)tl == th_ctx->current) {
197 _HA_ATOMIC_OR(&tl->state, TASK_SELF_WAKING);
198 LIST_INSERT(&th_ctx->tasklets[TL_BULK], &tl->list);
199 th_ctx->tl_class_mask |= 1 << TL_BULK;
200 }
201 else if (th_ctx->current_queue < 0) {
202 LIST_INSERT(&th_ctx->tasklets[TL_URGENT], &tl->list);
203 th_ctx->tl_class_mask |= 1 << TL_URGENT;
204 }
205 else {
206 LIST_INSERT(&th_ctx->tasklets[th_ctx->current_queue], &tl->list);
207 th_ctx->tl_class_mask |= 1 << th_ctx->current_queue;
208 }
209 }
210 else {
211 LIST_APPEND(head, &tl->list);
212 }
213 _HA_ATOMIC_INC(&th_ctx->rq_total);
214 return &tl->list;
215}
216
Willy Tarreau4726f532009-03-07 17:25:21 +0100217/* Puts the task <t> in run queue at a position depending on t->nice. <t> is
218 * returned. The nice value assigns boosts in 32th of the run queue size. A
Christopher Faulet34c5cc92016-12-06 09:15:30 +0100219 * nice value of -1024 sets the task to -tasks_run_queue*32, while a nice value
220 * of 1024 sets the task to tasks_run_queue*32. The state flags are cleared, so
221 * the caller will have to set its flags after this call.
Willy Tarreau4726f532009-03-07 17:25:21 +0100222 * The task must not already be in the run queue. If unsure, use the safer
223 * task_wakeup() function.
Willy Tarreau91e99932008-06-30 07:51:00 +0200224 */
Willy Tarreau018564e2021-02-24 16:41:11 +0100225void __task_wakeup(struct task *t)
Willy Tarreaue33aece2007-04-30 13:15:14 +0200226{
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200227 struct eb_root *root = &th_ctx->rqueue;
Willy Tarreau29ffe262022-06-15 14:31:38 +0200228 int thr __maybe_unused = t->tid >= 0 ? t->tid : tid;
Willy Tarreau018564e2021-02-24 16:41:11 +0100229
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200230#ifdef USE_THREAD
Willy Tarreau29ffe262022-06-15 14:31:38 +0200231 if (thr != tid) {
Willy Tarreau6f780382022-06-16 15:30:50 +0200232 root = &ha_thread_ctx[thr].rqueue_shared;
Willy Tarreau018564e2021-02-24 16:41:11 +0100233
Willy Tarreauda195e82022-06-16 15:52:49 +0200234 _HA_ATOMIC_INC(&ha_thread_ctx[thr].rq_total);
Willy Tarreaub17dd6c2022-06-16 16:58:17 +0200235 HA_SPIN_LOCK(TASK_RQ_LOCK, &ha_thread_ctx[thr].rqsh_lock);
Willy Tarreau9c7b8082021-02-24 15:10:07 +0100236
Willy Tarreau6f780382022-06-16 15:30:50 +0200237 t->rq.key = _HA_ATOMIC_ADD_FETCH(&ha_thread_ctx[thr].rqueue_ticks, 1);
Olivier Houcharded1a6a02019-04-18 14:12:51 +0200238 __ha_barrier_store();
Willy Tarreauc6ba9a02021-02-20 12:49:54 +0100239 } else
Olivier Houchardc4aac9e2018-07-26 15:25:49 +0200240#endif
Willy Tarreau9c7b8082021-02-24 15:10:07 +0100241 {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200242 _HA_ATOMIC_INC(&th_ctx->rq_total);
Willy Tarreaua4fb79b2022-06-16 15:44:35 +0200243 t->rq.key = _HA_ATOMIC_ADD_FETCH(&th_ctx->rqueue_ticks, 1);
Willy Tarreau9c7b8082021-02-24 15:10:07 +0100244 }
Willy Tarreau91e99932008-06-30 07:51:00 +0200245
246 if (likely(t->nice)) {
247 int offset;
248
Willy Tarreau4781b152021-04-06 13:53:36 +0200249 _HA_ATOMIC_INC(&niced_tasks);
Willy Tarreau2d1fd0a2019-04-15 09:18:31 +0200250 offset = t->nice * (int)global.tune.runqueue_depth;
Willy Tarreau4726f532009-03-07 17:25:21 +0100251 t->rq.key += offset;
Willy Tarreau91e99932008-06-30 07:51:00 +0200252 }
253
Willy Tarreau680ed5f2022-06-13 15:59:39 +0200254 if (th_ctx->flags & TH_FL_TASK_PROFILING)
Willy Tarreau9efd7452018-05-31 14:48:54 +0200255 t->call_date = now_mono_time();
256
Willy Tarreauc44d08e2022-06-15 15:44:00 +0200257 eb32sc_insert(root, &t->rq, 1UL << thr);
Willy Tarreau018564e2021-02-24 16:41:11 +0100258
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200259#ifdef USE_THREAD
Willy Tarreau29ffe262022-06-15 14:31:38 +0200260 if (thr != tid) {
Willy Tarreaub17dd6c2022-06-16 16:58:17 +0200261 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &ha_thread_ctx[thr].rqsh_lock);
Willy Tarreau2c41d772021-02-24 16:13:03 +0100262
Willy Tarreaueeffb3d2021-02-24 16:44:51 +0100263 /* If all threads that are supposed to handle this task are sleeping,
264 * wake one.
265 */
Willy Tarreauc44d08e2022-06-15 15:44:00 +0200266 if (sleeping_thread_mask & (1UL << thr)) {
267 unsigned long m = 1UL << thr;
Olivier Houchard1b327902019-03-15 00:23:10 +0100268
Willy Tarreaueeffb3d2021-02-24 16:44:51 +0100269 _HA_ATOMIC_AND(&sleeping_thread_mask, ~m);
Willy Tarreau29ffe262022-06-15 14:31:38 +0200270 wake_thread(thr);
Willy Tarreaueeffb3d2021-02-24 16:44:51 +0100271 }
Olivier Houchard1b327902019-03-15 00:23:10 +0100272 }
Willy Tarreau85d9b842018-07-27 17:14:41 +0200273#endif
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200274 return;
Willy Tarreaue33aece2007-04-30 13:15:14 +0200275}
Willy Tarreaud825eef2007-05-12 22:35:00 +0200276
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200277/*
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100278 * __task_queue()
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200279 *
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200280 * Inserts a task into wait queue <wq> at the position given by its expiration
Willy Tarreau4726f532009-03-07 17:25:21 +0100281 * date. It does not matter if the task was already in the wait queue or not,
Willy Tarreau7a969992021-09-30 16:38:09 +0200282 * as it will be unlinked. The task MUST NOT have an infinite expiration timer.
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100283 * Last, tasks must not be queued further than the end of the tree, which is
284 * between <now_ms> and <now_ms> + 2^31 ms (now+24days in 32bit).
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100285 *
286 * This function should not be used directly, it is meant to be called by the
287 * inline version of task_queue() which performs a few cheap preliminary tests
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200288 * before deciding to call __task_queue(). Moreover this function doesn't care
289 * at all about locking so the caller must be careful when deciding whether to
290 * lock or not around this call.
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200291 */
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200292void __task_queue(struct task *task, struct eb_root *wq)
Willy Tarreau964c9362007-01-07 00:38:00 +0100293{
Willy Tarreaue5d79bc2020-07-22 14:29:42 +0200294#ifdef USE_THREAD
Willy Tarreau159e3ac2022-06-15 16:48:45 +0200295 BUG_ON((wq == &timers && task->tid >= 0) ||
296 (wq == &th_ctx->timers && task->tid < 0) ||
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200297 (wq != &timers && wq != &th_ctx->timers));
Willy Tarreaue5d79bc2020-07-22 14:29:42 +0200298#endif
Willy Tarreau7a969992021-09-30 16:38:09 +0200299 /* if this happens the process is doomed anyway, so better catch it now
300 * so that we have the caller in the stack.
301 */
302 BUG_ON(task->expire == TICK_ETERNITY);
Willy Tarreaue5d79bc2020-07-22 14:29:42 +0200303
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100304 if (likely(task_in_wq(task)))
Willy Tarreau4726f532009-03-07 17:25:21 +0100305 __task_unlink_wq(task);
Willy Tarreau4726f532009-03-07 17:25:21 +0100306
307 /* the task is not in the queue now */
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100308 task->wq.key = task->expire;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200309#ifdef DEBUG_CHECK_INVALID_EXPIRATION_DATES
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100310 if (tick_is_lt(task->wq.key, now_ms))
Willy Tarreau28c41a42008-06-29 17:00:59 +0200311 /* we're queuing too far away or in the past (most likely) */
Willy Tarreau4726f532009-03-07 17:25:21 +0100312 return;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200313#endif
Willy Tarreauce44f122008-07-05 18:16:19 +0200314
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200315 eb32_insert(wq, &task->wq);
Willy Tarreau964c9362007-01-07 00:38:00 +0100316}
317
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200318/*
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200319 * Extract all expired timers from the timer queue, and wakes up all
Willy Tarreauc49ba522019-12-11 08:12:23 +0100320 * associated tasks.
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200321 */
Willy Tarreauc49ba522019-12-11 08:12:23 +0100322void wake_expired_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200323{
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200324 struct thread_ctx * const tt = th_ctx; // thread's tasks
Willy Tarreau3cfaa8d2020-10-16 09:26:22 +0200325 int max_processed = global.tune.runqueue_depth;
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200326 struct task *task;
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200327 struct eb32_node *eb;
Willy Tarreauaf613e82020-06-05 08:40:51 +0200328 __decl_thread(int key);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200329
Willy Tarreauf5aef022022-06-14 15:04:34 +0200330 while (1) {
331 if (max_processed-- <= 0)
332 goto leave;
333
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200334 eb = eb32_lookup_ge(&tt->timers, now_ms - TIMER_LOOK_BACK);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200335 if (!eb) {
336 /* we might have reached the end of the tree, typically because
337 * <now_ms> is in the first half and we're first scanning the last
338 * half. Let's loop back to the beginning of the tree now.
339 */
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200340 eb = eb32_first(&tt->timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200341 if (likely(!eb))
342 break;
343 }
344
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200345 /* It is possible that this task was left at an earlier place in the
346 * tree because a recent call to task_queue() has not moved it. This
347 * happens when the new expiration date is later than the old one.
348 * Since it is very unlikely that we reach a timeout anyway, it's a
349 * lot cheaper to proceed like this because we almost never update
350 * the tree. We may also find disabled expiration dates there. Since
351 * we have detached the task from the tree, we simply call task_queue
352 * to take care of this. Note that we might occasionally requeue it at
353 * the same place, before <eb>, so we have to check if this happens,
354 * and adjust <eb>, otherwise we may skip it which is not what we want.
355 * We may also not requeue the task (and not point eb at it) if its
Willy Tarreau77015ab2020-06-19 11:50:27 +0200356 * expiration time is not set. We also make sure we leave the real
357 * expiration date for the next task in the queue so that when calling
358 * next_timer_expiry() we're guaranteed to see the next real date and
359 * not the next apparent date. This is in order to avoid useless
360 * wakeups.
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200361 */
Willy Tarreau77015ab2020-06-19 11:50:27 +0200362
363 task = eb32_entry(eb, struct task, wq);
364 if (tick_is_expired(task->expire, now_ms)) {
365 /* expired task, wake it up */
366 __task_unlink_wq(task);
367 task_wakeup(task, TASK_WOKEN_TIMER);
368 }
369 else if (task->expire != eb->key) {
370 /* task is not expired but its key doesn't match so let's
371 * update it and skip to next apparently expired task.
372 */
373 __task_unlink_wq(task);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200374 if (tick_isset(task->expire))
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200375 __task_queue(task, &tt->timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200376 }
Willy Tarreau77015ab2020-06-19 11:50:27 +0200377 else {
Willy Tarreau7a969992021-09-30 16:38:09 +0200378 /* task not expired and correctly placed. It may not be eternal. */
379 BUG_ON(task->expire == TICK_ETERNITY);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200380 break;
381 }
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200382 }
383
384#ifdef USE_THREAD
Willy Tarreau1e928c02019-05-28 18:57:25 +0200385 if (eb_is_empty(&timers))
386 goto leave;
387
388 HA_RWLOCK_RDLOCK(TASK_WQ_LOCK, &wq_lock);
389 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
390 if (!eb) {
391 eb = eb32_first(&timers);
392 if (likely(!eb)) {
393 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
394 goto leave;
395 }
396 }
397 key = eb->key;
Willy Tarreau1e928c02019-05-28 18:57:25 +0200398
Willy Tarreaud48ed662020-10-16 09:31:41 +0200399 if (tick_is_lt(now_ms, key)) {
400 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau1e928c02019-05-28 18:57:25 +0200401 goto leave;
Willy Tarreaud48ed662020-10-16 09:31:41 +0200402 }
Willy Tarreau1e928c02019-05-28 18:57:25 +0200403
404 /* There's really something of interest here, let's visit the queue */
405
Willy Tarreaud48ed662020-10-16 09:31:41 +0200406 if (HA_RWLOCK_TRYRDTOSK(TASK_WQ_LOCK, &wq_lock)) {
407 /* if we failed to grab the lock it means another thread is
408 * already doing the same here, so let it do the job.
409 */
410 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
411 goto leave;
412 }
413
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200414 while (1) {
Emeric Brunc60def82017-09-27 14:59:38 +0200415 lookup_next:
Willy Tarreau3cfaa8d2020-10-16 09:26:22 +0200416 if (max_processed-- <= 0)
417 break;
Emeric Brun01948972017-03-30 15:37:25 +0200418 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
Emeric Brunc60def82017-09-27 14:59:38 +0200419 if (!eb) {
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100420 /* we might have reached the end of the tree, typically because
421 * <now_ms> is in the first half and we're first scanning the last
422 * half. Let's loop back to the beginning of the tree now.
423 */
424 eb = eb32_first(&timers);
Willy Tarreaub992ba12017-11-05 19:09:27 +0100425 if (likely(!eb))
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100426 break;
427 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200428
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100429 task = eb32_entry(eb, struct task, wq);
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100430
431 /* Check for any competing run of the task (quite rare but may
432 * involve a dangerous concurrent access on task->expire). In
433 * order to protect against this, we'll take an exclusive access
434 * on TASK_RUNNING before checking/touching task->expire. If the
435 * task is already RUNNING on another thread, it will deal by
436 * itself with the requeuing so we must not do anything and
437 * simply quit the loop for now, because we cannot wait with the
438 * WQ lock held as this would prevent the running thread from
439 * requeuing the task. One annoying effect of holding RUNNING
440 * here is that a concurrent task_wakeup() will refrain from
441 * waking it up. This forces us to check for a wakeup after
442 * releasing the flag.
443 */
444 if (HA_ATOMIC_FETCH_OR(&task->state, TASK_RUNNING) & TASK_RUNNING)
445 break;
446
Willy Tarreau77015ab2020-06-19 11:50:27 +0200447 if (tick_is_expired(task->expire, now_ms)) {
448 /* expired task, wake it up */
Willy Tarreaud48ed662020-10-16 09:31:41 +0200449 HA_RWLOCK_SKTOWR(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200450 __task_unlink_wq(task);
Willy Tarreaud48ed662020-10-16 09:31:41 +0200451 HA_RWLOCK_WRTOSK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100452 task_drop_running(task, TASK_WOKEN_TIMER);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200453 }
454 else if (task->expire != eb->key) {
455 /* task is not expired but its key doesn't match so let's
456 * update it and skip to next apparently expired task.
457 */
Willy Tarreaud48ed662020-10-16 09:31:41 +0200458 HA_RWLOCK_SKTOWR(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200459 __task_unlink_wq(task);
Willy Tarreaub992ba12017-11-05 19:09:27 +0100460 if (tick_isset(task->expire))
Willy Tarreau783afbe2020-07-22 14:12:45 +0200461 __task_queue(task, &timers);
Willy Tarreaud48ed662020-10-16 09:31:41 +0200462 HA_RWLOCK_WRTOSK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100463 task_drop_running(task, 0);
Emeric Brunc60def82017-09-27 14:59:38 +0200464 goto lookup_next;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200465 }
Willy Tarreau77015ab2020-06-19 11:50:27 +0200466 else {
Willy Tarreau7a969992021-09-30 16:38:09 +0200467 /* task not expired and correctly placed. It may not be eternal. */
468 BUG_ON(task->expire == TICK_ETERNITY);
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100469 task_drop_running(task, 0);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200470 break;
471 }
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100472 }
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200473
Willy Tarreaud48ed662020-10-16 09:31:41 +0200474 HA_RWLOCK_SKUNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200475#endif
Willy Tarreau1e928c02019-05-28 18:57:25 +0200476leave:
Willy Tarreauc49ba522019-12-11 08:12:23 +0100477 return;
478}
479
480/* Checks the next timer for the current thread by looking into its own timer
481 * list and the global one. It may return TICK_ETERNITY if no timer is present.
Ilya Shipitsin856aabc2020-04-16 23:51:34 +0500482 * Note that the next timer might very well be slightly in the past.
Willy Tarreauc49ba522019-12-11 08:12:23 +0100483 */
484int next_timer_expiry()
485{
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200486 struct thread_ctx * const tt = th_ctx; // thread's tasks
Willy Tarreauc49ba522019-12-11 08:12:23 +0100487 struct eb32_node *eb;
488 int ret = TICK_ETERNITY;
Willy Tarreau6ce02322020-08-21 05:48:34 +0200489 __decl_thread(int key = TICK_ETERNITY);
Willy Tarreauc49ba522019-12-11 08:12:23 +0100490
491 /* first check in the thread-local timers */
492 eb = eb32_lookup_ge(&tt->timers, now_ms - TIMER_LOOK_BACK);
493 if (!eb) {
494 /* we might have reached the end of the tree, typically because
495 * <now_ms> is in the first half and we're first scanning the last
496 * half. Let's loop back to the beginning of the tree now.
497 */
498 eb = eb32_first(&tt->timers);
499 }
500
501 if (eb)
502 ret = eb->key;
503
504#ifdef USE_THREAD
505 if (!eb_is_empty(&timers)) {
506 HA_RWLOCK_RDLOCK(TASK_WQ_LOCK, &wq_lock);
507 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
508 if (!eb)
509 eb = eb32_first(&timers);
510 if (eb)
511 key = eb->key;
512 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
513 if (eb)
514 ret = tick_first(ret, key);
515 }
516#endif
Willy Tarreaub992ba12017-11-05 19:09:27 +0100517 return ret;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200518}
519
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200520/* Walks over tasklet lists th_ctx->tasklets[0..TL_CLASSES-1] and run at most
Willy Tarreau59153fe2020-06-24 10:17:29 +0200521 * budget[TL_*] of them. Returns the number of entries effectively processed
522 * (tasks and tasklets merged). The count of tasks in the list for the current
523 * thread is adjusted.
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100524 */
Willy Tarreau59153fe2020-06-24 10:17:29 +0200525unsigned int run_tasks_from_lists(unsigned int budgets[])
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100526{
Willy Tarreau144f84a2021-03-02 16:09:26 +0100527 struct task *(*process)(struct task *t, void *ctx, unsigned int state);
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200528 struct list *tl_queues = th_ctx->tasklets;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100529 struct task *t;
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200530 uint8_t budget_mask = (1 << TL_CLASSES) - 1;
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100531 struct sched_activity *profile_entry = NULL;
Willy Tarreau59153fe2020-06-24 10:17:29 +0200532 unsigned int done = 0;
533 unsigned int queue;
Willy Tarreau144f84a2021-03-02 16:09:26 +0100534 unsigned int state;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100535 void *ctx;
Willy Tarreau59153fe2020-06-24 10:17:29 +0200536
537 for (queue = 0; queue < TL_CLASSES;) {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200538 th_ctx->current_queue = queue;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100539
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200540 /* global.tune.sched.low-latency is set */
541 if (global.tune.options & GTUNE_SCHED_LOW_LATENCY) {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200542 if (unlikely(th_ctx->tl_class_mask & budget_mask & ((1 << queue) - 1))) {
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200543 /* a lower queue index has tasks again and still has a
544 * budget to run them. Let's switch to it now.
545 */
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200546 queue = (th_ctx->tl_class_mask & 1) ? 0 :
547 (th_ctx->tl_class_mask & 2) ? 1 : 2;
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200548 continue;
549 }
550
551 if (unlikely(queue > TL_URGENT &&
552 budget_mask & (1 << TL_URGENT) &&
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200553 !MT_LIST_ISEMPTY(&th_ctx->shared_tasklet_list))) {
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200554 /* an urgent tasklet arrived from another thread */
555 break;
556 }
557
558 if (unlikely(queue > TL_NORMAL &&
559 budget_mask & (1 << TL_NORMAL) &&
Willy Tarreauc958c702022-06-16 15:59:36 +0200560 (!eb_is_empty(&th_ctx->rqueue) || !eb_is_empty(&th_ctx->rqueue_shared)))) {
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200561 /* a task was woken up by a bulk tasklet or another thread */
562 break;
563 }
564 }
565
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200566 if (LIST_ISEMPTY(&tl_queues[queue])) {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200567 th_ctx->tl_class_mask &= ~(1 << queue);
Willy Tarreau59153fe2020-06-24 10:17:29 +0200568 queue++;
569 continue;
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200570 }
571
Willy Tarreau59153fe2020-06-24 10:17:29 +0200572 if (!budgets[queue]) {
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200573 budget_mask &= ~(1 << queue);
Willy Tarreau59153fe2020-06-24 10:17:29 +0200574 queue++;
575 continue;
576 }
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200577
Willy Tarreau59153fe2020-06-24 10:17:29 +0200578 budgets[queue]--;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100579 activity[tid].ctxsw++;
Willy Tarreau3193eb92021-10-21 16:17:29 +0200580
581 t = (struct task *)LIST_ELEM(tl_queues[queue].n, struct tasklet *, list);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100582 ctx = t->context;
583 process = t->process;
584 t->calls++;
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200585 th_ctx->current = t;
Willy Tarreau3193eb92021-10-21 16:17:29 +0200586 th_ctx->flags &= ~TH_FL_STUCK; // this thread is still running
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100587
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200588 _HA_ATOMIC_DEC(&th_ctx->rq_total);
Willy Tarreau2da4c312020-11-30 14:52:11 +0100589
Willy Tarreau3193eb92021-10-21 16:17:29 +0200590 if (t->state & TASK_F_TASKLET) {
Willy Tarreau2a54ffb2021-02-25 09:32:58 +0100591 uint64_t before = 0;
592
Willy Tarreau4d6c5942020-11-30 14:58:53 +0100593 LIST_DEL_INIT(&((struct tasklet *)t)->list);
594 __ha_barrier_store();
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100595
Willy Tarreau680ed5f2022-06-13 15:59:39 +0200596 if (unlikely(th_ctx->flags & TH_FL_TASK_PROFILING)) {
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100597 profile_entry = sched_activity_entry(sched_activity, t->process);
598 before = now_mono_time();
Willy Tarreaub2285de2021-02-25 08:39:07 +0100599#ifdef DEBUG_TASK
Willy Tarreau2a54ffb2021-02-25 09:32:58 +0100600 if (((struct tasklet *)t)->call_date) {
601 HA_ATOMIC_ADD(&profile_entry->lat_time, before - ((struct tasklet *)t)->call_date);
602 ((struct tasklet *)t)->call_date = 0;
603 }
Willy Tarreaub2285de2021-02-25 08:39:07 +0100604#endif
Willy Tarreau2a54ffb2021-02-25 09:32:58 +0100605 }
606
Willy Tarreau3193eb92021-10-21 16:17:29 +0200607 state = _HA_ATOMIC_FETCH_AND(&t->state, TASK_PERSISTENT);
Willy Tarreau2a54ffb2021-02-25 09:32:58 +0100608 __ha_barrier_atomic_store();
609
Amaury Denoyelle7b368332021-07-28 16:12:57 +0200610 if (likely(!(state & TASK_KILLED))) {
611 process(t, ctx, state);
612 }
613 else {
614 done++;
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200615 th_ctx->current = NULL;
Amaury Denoyelle7b368332021-07-28 16:12:57 +0200616 pool_free(pool_head_tasklet, t);
617 __ha_barrier_store();
618 continue;
619 }
Willy Tarreau2a54ffb2021-02-25 09:32:58 +0100620
Willy Tarreau680ed5f2022-06-13 15:59:39 +0200621 if (unlikely(th_ctx->flags & TH_FL_TASK_PROFILING)) {
Willy Tarreau4781b152021-04-06 13:53:36 +0200622 HA_ATOMIC_INC(&profile_entry->calls);
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100623 HA_ATOMIC_ADD(&profile_entry->cpu_time, now_mono_time() - before);
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100624 }
Willy Tarreau2a54ffb2021-02-25 09:32:58 +0100625
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100626 done++;
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200627 th_ctx->current = NULL;
Willy Tarreaud23d4132020-01-31 10:39:03 +0100628 __ha_barrier_store();
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100629 continue;
630 }
631
Willy Tarreau4d6c5942020-11-30 14:58:53 +0100632 LIST_DEL_INIT(&((struct tasklet *)t)->list);
633 __ha_barrier_store();
Willy Tarreau3193eb92021-10-21 16:17:29 +0200634
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100635 /* We must be the exclusive owner of the TASK_RUNNING bit, and
636 * have to be careful that the task is not being manipulated on
637 * another thread finding it expired in wake_expired_tasks().
638 * The TASK_RUNNING bit will be set during these operations,
639 * they are extremely rare and do not last long so the best to
640 * do here is to wait.
641 */
642 state = _HA_ATOMIC_LOAD(&t->state);
643 do {
644 while (unlikely(state & TASK_RUNNING)) {
645 __ha_cpu_relax();
646 state = _HA_ATOMIC_LOAD(&t->state);
647 }
648 } while (!_HA_ATOMIC_CAS(&t->state, &state, (state & TASK_PERSISTENT) | TASK_RUNNING));
Willy Tarreau3193eb92021-10-21 16:17:29 +0200649
Willy Tarreau952c2642020-01-31 16:39:30 +0100650 __ha_barrier_atomic_store();
Willy Tarreau952c2642020-01-31 16:39:30 +0100651
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100652 /* OK then this is a regular task */
653
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200654 _HA_ATOMIC_DEC(&ha_thread_ctx[tid].tasks_in_list);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100655 if (unlikely(t->call_date)) {
656 uint64_t now_ns = now_mono_time();
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100657 uint64_t lat = now_ns - t->call_date;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100658
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100659 t->lat_time += lat;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100660 t->call_date = now_ns;
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100661 profile_entry = sched_activity_entry(sched_activity, t->process);
662 HA_ATOMIC_ADD(&profile_entry->lat_time, lat);
Willy Tarreau4781b152021-04-06 13:53:36 +0200663 HA_ATOMIC_INC(&profile_entry->calls);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100664 }
665
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100666 __ha_barrier_store();
Willy Tarreau8a6049c2020-06-30 11:48:48 +0200667
668 /* Note for below: if TASK_KILLED arrived before we've read the state, we
669 * directly free the task. Otherwise it will be seen after processing and
670 * it's freed on the exit path.
671 */
672 if (likely(!(state & TASK_KILLED) && process == process_stream))
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100673 t = process_stream(t, ctx, state);
Willy Tarreau8a6049c2020-06-30 11:48:48 +0200674 else if (!(state & TASK_KILLED) && process != NULL)
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100675 t = process(t, ctx, state);
676 else {
Willy Tarreau273aea42020-07-17 14:37:51 +0200677 task_unlink_wq(t);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100678 __task_free(t);
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200679 th_ctx->current = NULL;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100680 __ha_barrier_store();
681 /* We don't want max_processed to be decremented if
682 * we're just freeing a destroyed task, we should only
683 * do so if we really ran a task.
684 */
685 continue;
686 }
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200687 th_ctx->current = NULL;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100688 __ha_barrier_store();
689 /* If there is a pending state we have to wake up the task
690 * immediately, else we defer it into wait queue
691 */
692 if (t != NULL) {
693 if (unlikely(t->call_date)) {
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100694 uint64_t cpu = now_mono_time() - t->call_date;
695
696 t->cpu_time += cpu;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100697 t->call_date = 0;
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100698 HA_ATOMIC_ADD(&profile_entry->cpu_time, cpu);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100699 }
700
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100701 state = _HA_ATOMIC_LOAD(&t->state);
Willy Tarreau8a6049c2020-06-30 11:48:48 +0200702 if (unlikely(state & TASK_KILLED)) {
Willy Tarreau273aea42020-07-17 14:37:51 +0200703 task_unlink_wq(t);
Willy Tarreau8a6049c2020-06-30 11:48:48 +0200704 __task_free(t);
705 }
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100706 else {
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100707 task_queue(t);
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100708 task_drop_running(t, 0);
709 }
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100710 }
711 done++;
712 }
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200713 th_ctx->current_queue = -1;
Willy Tarreau116ef222020-06-23 16:35:38 +0200714
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100715 return done;
716}
717
Willy Tarreau58b458d2008-06-29 22:40:23 +0200718/* The run queue is chronologically sorted in a tree. An insertion counter is
719 * used to assign a position to each task. This counter may be combined with
720 * other variables (eg: nice value) to set the final position in the tree. The
721 * counter may wrap without a problem, of course. We then limit the number of
Christopher Faulet8a48f672017-11-14 10:38:36 +0100722 * tasks processed to 200 in any case, so that general latency remains low and
Willy Tarreaucde79022019-04-12 18:03:41 +0200723 * so that task positions have a chance to be considered. The function scans
724 * both the global and local run queues and picks the most urgent task between
725 * the two. We need to grab the global runqueue lock to touch it so it's taken
726 * on the very first access to the global run queue and is released as soon as
727 * it reaches the end.
Willy Tarreau58b458d2008-06-29 22:40:23 +0200728 *
729 * The function adjusts <next> if a new event is closer.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200730 */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100731void process_runnable_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200732{
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200733 struct thread_ctx * const tt = th_ctx;
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200734 struct eb32sc_node *lrq; // next local run queue entry
735 struct eb32sc_node *grq; // next global run queue entry
Willy Tarreau964c9362007-01-07 00:38:00 +0100736 struct task *t;
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200737 const unsigned int default_weights[TL_CLASSES] = {
738 [TL_URGENT] = 64, // ~50% of CPU bandwidth for I/O
739 [TL_NORMAL] = 48, // ~37% of CPU bandwidth for tasks
740 [TL_BULK] = 16, // ~13% of CPU bandwidth for self-wakers
Willy Tarreau401135c2021-02-26 09:16:22 +0100741 [TL_HEAVY] = 1, // never more than 1 heavy task at once
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200742 };
743 unsigned int max[TL_CLASSES]; // max to be run per class
744 unsigned int max_total; // sum of max above
Olivier Houchard06910462019-10-11 16:35:01 +0200745 struct mt_list *tmp_list;
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200746 unsigned int queue;
747 int max_processed;
Willy Tarreaue7923c12021-02-25 07:09:08 +0100748 int lpicked, gpicked;
Willy Tarreau76390da2021-02-26 10:18:11 +0100749 int heavy_queued = 0;
Willy Tarreauc309dbd2020-11-30 15:39:00 +0100750 int budget;
Christopher Faulet3911ee82017-11-14 10:26:53 +0100751
Willy Tarreaua0b99532021-09-30 18:48:37 +0200752 th_ctx->flags &= ~TH_FL_STUCK; // this thread is still running
Willy Tarreaue6a02fa2019-05-22 07:06:44 +0200753
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200754 if (!thread_has_tasks()) {
755 activity[tid].empty_rq++;
756 return;
757 }
758
Willy Tarreau5c8be272020-06-19 12:17:55 +0200759 max_processed = global.tune.runqueue_depth;
760
761 if (likely(niced_tasks))
762 max_processed = (max_processed + 3) / 4;
763
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200764 if (max_processed < th_ctx->rq_total && th_ctx->rq_total <= 2*max_processed) {
Willy Tarreau1691ba32021-03-10 09:26:24 +0100765 /* If the run queue exceeds the budget by up to 50%, let's cut it
766 * into two identical halves to improve latency.
767 */
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200768 max_processed = th_ctx->rq_total / 2;
Willy Tarreau1691ba32021-03-10 09:26:24 +0100769 }
770
Willy Tarreau5c8be272020-06-19 12:17:55 +0200771 not_done_yet:
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200772 max[TL_URGENT] = max[TL_NORMAL] = max[TL_BULK] = 0;
Willy Tarreaucde79022019-04-12 18:03:41 +0200773
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200774 /* urgent tasklets list gets a default weight of ~50% */
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200775 if ((tt->tl_class_mask & (1 << TL_URGENT)) ||
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200776 !MT_LIST_ISEMPTY(&tt->shared_tasklet_list))
777 max[TL_URGENT] = default_weights[TL_URGENT];
Willy Tarreaua62917b2020-01-30 18:37:28 +0100778
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200779 /* normal tasklets list gets a default weight of ~37% */
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200780 if ((tt->tl_class_mask & (1 << TL_NORMAL)) ||
Willy Tarreauc958c702022-06-16 15:59:36 +0200781 !eb_is_empty(&th_ctx->rqueue) || !eb_is_empty(&th_ctx->rqueue_shared))
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200782 max[TL_NORMAL] = default_weights[TL_NORMAL];
Willy Tarreaua62917b2020-01-30 18:37:28 +0100783
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200784 /* bulk tasklets list gets a default weight of ~13% */
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200785 if ((tt->tl_class_mask & (1 << TL_BULK)))
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200786 max[TL_BULK] = default_weights[TL_BULK];
787
Willy Tarreau401135c2021-02-26 09:16:22 +0100788 /* heavy tasks are processed only once and never refilled in a
Willy Tarreau76390da2021-02-26 10:18:11 +0100789 * call round. That budget is not lost either as we don't reset
790 * it unless consumed.
Willy Tarreau401135c2021-02-26 09:16:22 +0100791 */
Willy Tarreau76390da2021-02-26 10:18:11 +0100792 if (!heavy_queued) {
793 if ((tt->tl_class_mask & (1 << TL_HEAVY)))
794 max[TL_HEAVY] = default_weights[TL_HEAVY];
795 else
796 max[TL_HEAVY] = 0;
797 heavy_queued = 1;
798 }
Willy Tarreau401135c2021-02-26 09:16:22 +0100799
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200800 /* Now compute a fair share of the weights. Total may slightly exceed
Willy Tarreau1553b662020-06-30 13:46:21 +0200801 * 100% due to rounding, this is not a problem. Note that while in
802 * theory the sum cannot be NULL as we cannot get there without tasklets
803 * to process, in practice it seldom happens when multiple writers
Willy Tarreau2b718102021-04-21 07:32:39 +0200804 * conflict and rollback on MT_LIST_TRY_APPEND(shared_tasklet_list), causing
Willy Tarreau1553b662020-06-30 13:46:21 +0200805 * a first MT_LIST_ISEMPTY() to succeed for thread_has_task() and the
806 * one above to finally fail. This is extremely rare and not a problem.
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200807 */
Willy Tarreau401135c2021-02-26 09:16:22 +0100808 max_total = max[TL_URGENT] + max[TL_NORMAL] + max[TL_BULK] + max[TL_HEAVY];
Willy Tarreau1553b662020-06-30 13:46:21 +0200809 if (!max_total)
810 return;
811
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200812 for (queue = 0; queue < TL_CLASSES; queue++)
813 max[queue] = ((unsigned)max_processed * max[queue] + max_total - 1) / max_total;
814
Willy Tarreau76390da2021-02-26 10:18:11 +0100815 /* The heavy queue must never process more than one task at once
816 * anyway.
817 */
818 if (max[TL_HEAVY] > 1)
819 max[TL_HEAVY] = 1;
820
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200821 lrq = grq = NULL;
Christopher Faulet8a48f672017-11-14 10:38:36 +0100822
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200823 /* pick up to max[TL_NORMAL] regular tasks from prio-ordered run queues */
824 /* Note: the grq lock is always held when grq is not null */
Willy Tarreaue7923c12021-02-25 07:09:08 +0100825 lpicked = gpicked = 0;
Willy Tarreau1f3b1412021-02-24 14:13:40 +0100826 budget = max[TL_NORMAL] - tt->tasks_in_list;
Willy Tarreaue7923c12021-02-25 07:09:08 +0100827 while (lpicked + gpicked < budget) {
Willy Tarreauc958c702022-06-16 15:59:36 +0200828 if (!eb_is_empty(&th_ctx->rqueue_shared) && !grq) {
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200829#ifdef USE_THREAD
Willy Tarreaub17dd6c2022-06-16 16:58:17 +0200830 HA_SPIN_LOCK(TASK_RQ_LOCK, &th_ctx->rqsh_lock);
Willy Tarreau6f780382022-06-16 15:30:50 +0200831 grq = eb32sc_lookup_ge(&th_ctx->rqueue_shared, _HA_ATOMIC_LOAD(&tt->rqueue_ticks) - TIMER_LOOK_BACK, tid_bit);
Willy Tarreaucde79022019-04-12 18:03:41 +0200832 if (unlikely(!grq)) {
Willy Tarreau6f780382022-06-16 15:30:50 +0200833 grq = eb32sc_first(&th_ctx->rqueue_shared, tid_bit);
Willy Tarreauc958c702022-06-16 15:59:36 +0200834 if (!grq)
Willy Tarreaub17dd6c2022-06-16 16:58:17 +0200835 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &th_ctx->rqsh_lock);
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100836 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200837#endif
Willy Tarreaucde79022019-04-12 18:03:41 +0200838 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100839
Willy Tarreaucde79022019-04-12 18:03:41 +0200840 /* If a global task is available for this thread, it's in grq
841 * now and the global RQ is locked.
842 */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200843
Willy Tarreaucde79022019-04-12 18:03:41 +0200844 if (!lrq) {
Willy Tarreaua4fb79b2022-06-16 15:44:35 +0200845 lrq = eb32sc_lookup_ge(&tt->rqueue, _HA_ATOMIC_LOAD(&tt->rqueue_ticks) - TIMER_LOOK_BACK, tid_bit);
Willy Tarreaucde79022019-04-12 18:03:41 +0200846 if (unlikely(!lrq))
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200847 lrq = eb32sc_first(&tt->rqueue, tid_bit);
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100848 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100849
Willy Tarreaucde79022019-04-12 18:03:41 +0200850 if (!lrq && !grq)
851 break;
852
853 if (likely(!grq || (lrq && (int)(lrq->key - grq->key) <= 0))) {
854 t = eb32sc_entry(lrq, struct task, rq);
855 lrq = eb32sc_next(lrq, tid_bit);
Willy Tarreau2b363ac2021-02-25 07:14:58 +0100856 eb32sc_delete(&t->rq);
Willy Tarreaue7923c12021-02-25 07:09:08 +0100857 lpicked++;
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200858 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200859#ifdef USE_THREAD
Willy Tarreaucde79022019-04-12 18:03:41 +0200860 else {
861 t = eb32sc_entry(grq, struct task, rq);
862 grq = eb32sc_next(grq, tid_bit);
Willy Tarreau2b363ac2021-02-25 07:14:58 +0100863 eb32sc_delete(&t->rq);
864
Willy Tarreaucde79022019-04-12 18:03:41 +0200865 if (unlikely(!grq)) {
Willy Tarreau6f780382022-06-16 15:30:50 +0200866 grq = eb32sc_first(&th_ctx->rqueue_shared, tid_bit);
Willy Tarreauc958c702022-06-16 15:59:36 +0200867 if (!grq)
Willy Tarreaub17dd6c2022-06-16 16:58:17 +0200868 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &th_ctx->rqsh_lock);
Willy Tarreaucde79022019-04-12 18:03:41 +0200869 }
Willy Tarreaue7923c12021-02-25 07:09:08 +0100870 gpicked++;
Emeric Brun01948972017-03-30 15:37:25 +0200871 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200872#endif
Willy Tarreau2b363ac2021-02-25 07:14:58 +0100873 if (t->nice)
Willy Tarreau4781b152021-04-06 13:53:36 +0200874 _HA_ATOMIC_DEC(&niced_tasks);
Willy Tarreaucde79022019-04-12 18:03:41 +0200875
Willy Tarreaua868c292020-11-30 15:30:22 +0100876 /* Add it to the local task list */
Willy Tarreau2b718102021-04-21 07:32:39 +0200877 LIST_APPEND(&tt->tasklets[TL_NORMAL], &((struct tasklet *)t)->list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200878 }
Willy Tarreaucde79022019-04-12 18:03:41 +0200879
880 /* release the rqueue lock */
881 if (grq) {
Willy Tarreaub17dd6c2022-06-16 16:58:17 +0200882 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &th_ctx->rqsh_lock);
Willy Tarreaucde79022019-04-12 18:03:41 +0200883 grq = NULL;
884 }
885
Willy Tarreaue7923c12021-02-25 07:09:08 +0100886 if (lpicked + gpicked) {
Willy Tarreauc309dbd2020-11-30 15:39:00 +0100887 tt->tl_class_mask |= 1 << TL_NORMAL;
Willy Tarreaue7923c12021-02-25 07:09:08 +0100888 _HA_ATOMIC_ADD(&tt->tasks_in_list, lpicked + gpicked);
Willy Tarreaue7923c12021-02-25 07:09:08 +0100889 activity[tid].tasksw += lpicked + gpicked;
Willy Tarreauc309dbd2020-11-30 15:39:00 +0100890 }
891
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200892 /* Merge the list of tasklets waken up by other threads to the
893 * main list.
894 */
895 tmp_list = MT_LIST_BEHEAD(&tt->shared_tasklet_list);
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200896 if (tmp_list) {
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200897 LIST_SPLICE_END_DETACHED(&tt->tasklets[TL_URGENT], (struct list *)tmp_list);
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200898 if (!LIST_ISEMPTY(&tt->tasklets[TL_URGENT]))
899 tt->tl_class_mask |= 1 << TL_URGENT;
900 }
Willy Tarreaucde79022019-04-12 18:03:41 +0200901
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200902 /* execute tasklets in each queue */
Willy Tarreau59153fe2020-06-24 10:17:29 +0200903 max_processed -= run_tasks_from_lists(max);
Willy Tarreaua62917b2020-01-30 18:37:28 +0100904
Willy Tarreau5c8be272020-06-19 12:17:55 +0200905 /* some tasks may have woken other ones up */
Willy Tarreau0c0c85e2020-06-23 11:32:35 +0200906 if (max_processed > 0 && thread_has_tasks())
Willy Tarreau5c8be272020-06-19 12:17:55 +0200907 goto not_done_yet;
908
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200909 if (tt->tl_class_mask)
Willy Tarreaucde79022019-04-12 18:03:41 +0200910 activity[tid].long_rq++;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200911}
912
William Lallemand27f3fa52018-12-06 14:05:20 +0100913/*
914 * Delete every tasks before running the master polling loop
915 */
916void mworker_cleantasks()
917{
918 struct task *t;
919 int i;
William Lallemandb5823392018-12-06 15:14:37 +0100920 struct eb32_node *tmp_wq = NULL;
921 struct eb32sc_node *tmp_rq = NULL;
William Lallemand27f3fa52018-12-06 14:05:20 +0100922
923#ifdef USE_THREAD
924 /* cleanup the global run queue */
Willy Tarreau6f780382022-06-16 15:30:50 +0200925 tmp_rq = eb32sc_first(&th_ctx->rqueue_shared, ~0UL);
William Lallemandb5823392018-12-06 15:14:37 +0100926 while (tmp_rq) {
927 t = eb32sc_entry(tmp_rq, struct task, rq);
Willy Tarreau3ccb14d2022-06-14 11:18:40 +0200928 tmp_rq = eb32sc_next(tmp_rq, ~0UL);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200929 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100930 }
931 /* cleanup the timers queue */
William Lallemandb5823392018-12-06 15:14:37 +0100932 tmp_wq = eb32_first(&timers);
933 while (tmp_wq) {
934 t = eb32_entry(tmp_wq, struct task, wq);
935 tmp_wq = eb32_next(tmp_wq);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200936 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100937 }
938#endif
939 /* clean the per thread run queue */
940 for (i = 0; i < global.nbthread; i++) {
Willy Tarreau3ccb14d2022-06-14 11:18:40 +0200941 tmp_rq = eb32sc_first(&ha_thread_ctx[i].rqueue, ~0UL);
William Lallemandb5823392018-12-06 15:14:37 +0100942 while (tmp_rq) {
943 t = eb32sc_entry(tmp_rq, struct task, rq);
Willy Tarreau3ccb14d2022-06-14 11:18:40 +0200944 tmp_rq = eb32sc_next(tmp_rq, ~0UL);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200945 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100946 }
947 /* cleanup the per thread timers queue */
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200948 tmp_wq = eb32_first(&ha_thread_ctx[i].timers);
William Lallemandb5823392018-12-06 15:14:37 +0100949 while (tmp_wq) {
950 t = eb32_entry(tmp_wq, struct task, wq);
951 tmp_wq = eb32_next(tmp_wq);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200952 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100953 }
954 }
955}
956
Willy Tarreaub6b3df32018-11-26 16:31:20 +0100957/* perform minimal intializations */
958static void init_task()
Willy Tarreau4726f532009-03-07 17:25:21 +0100959{
Willy Tarreau401135c2021-02-26 09:16:22 +0100960 int i, q;
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200961
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200962#ifdef USE_THREAD
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200963 memset(&timers, 0, sizeof(timers));
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200964#endif
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200965 for (i = 0; i < MAX_THREADS; i++) {
Willy Tarreau401135c2021-02-26 09:16:22 +0100966 for (q = 0; q < TL_CLASSES; q++)
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200967 LIST_INIT(&ha_thread_ctx[i].tasklets[q]);
968 MT_LIST_INIT(&ha_thread_ctx[i].shared_tasklet_list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200969 }
Willy Tarreau4726f532009-03-07 17:25:21 +0100970}
971
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200972/* config parser for global "tune.sched.low-latency", accepts "on" or "off" */
973static int cfg_parse_tune_sched_low_latency(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +0100974 const struct proxy *defpx, const char *file, int line,
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200975 char **err)
976{
977 if (too_many_args(1, args, err, NULL))
978 return -1;
979
980 if (strcmp(args[1], "on") == 0)
981 global.tune.options |= GTUNE_SCHED_LOW_LATENCY;
982 else if (strcmp(args[1], "off") == 0)
983 global.tune.options &= ~GTUNE_SCHED_LOW_LATENCY;
984 else {
985 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
986 return -1;
987 }
988 return 0;
989}
990
991/* config keyword parsers */
992static struct cfg_kw_list cfg_kws = {ILH, {
993 { CFG_GLOBAL, "tune.sched.low-latency", cfg_parse_tune_sched_low_latency },
994 { 0, NULL, NULL }
995}};
996
997INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreaub6b3df32018-11-26 16:31:20 +0100998INITCALL0(STG_PREPARE, init_task);
999
Willy Tarreaubaaee002006-06-26 02:48:02 +02001000/*
1001 * Local variables:
1002 * c-indent-level: 8
1003 * c-basic-offset: 8
1004 * End:
1005 */