blob: 515a43d6575da7ff80ba11db4bef472b1e61b72d [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
Olivier Houchardeba0c0b2018-07-26 18:53:28 +020038volatile unsigned long global_tasks_mask = 0; /* Mask of threads with tasks in the global runqueue */
Willy Tarreaue35c94a2009-03-21 10:01:42 +010039unsigned int niced_tasks = 0; /* number of niced tasks in the run queue */
Emeric Brun01948972017-03-30 15:37:25 +020040
Willy Tarreau86abe442018-11-25 20:12:18 +010041__decl_aligned_spinlock(rq_lock); /* spin lock related to run queue */
Willy Tarreauef28dc12019-05-28 18:48:07 +020042__decl_aligned_rwlock(wq_lock); /* RW lock related to the wait queue */
Willy Tarreau964c9362007-01-07 00:38:00 +010043
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020044#ifdef USE_THREAD
Willy Tarreauc6ba9a02021-02-20 12:49:54 +010045struct eb_root timers; /* sorted timers tree, global, accessed under wq_lock */
46struct eb_root rqueue; /* tree constituting the global run queue, accessed under rq_lock */
Willy Tarreau45499c52021-02-25 07:51:18 +010047unsigned int grq_total; /* total number of entries in the global run queue, atomic */
Willy Tarreauc6ba9a02021-02-20 12:49:54 +010048static unsigned int global_rqueue_ticks; /* insertion count in the grq, use rq_lock */
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020049#endif
Willy Tarreaub20aa9e2018-10-15 14:52:21 +020050
Willy Tarreau8d8747a2018-10-15 16:12:48 +020051
Willy Tarreaueb8c2c62020-06-30 11:48:48 +020052
53/* Flags the task <t> for immediate destruction and puts it into its first
54 * thread's shared tasklet list if not yet queued/running. This will bypass
55 * the priority scheduling and make the task show up as fast as possible in
56 * the other thread's queue. Note that this operation isn't idempotent and is
57 * not supposed to be run on the same task from multiple threads at once. It's
58 * the caller's responsibility to make sure it is the only one able to kill the
59 * task.
60 */
61void task_kill(struct task *t)
62{
Willy Tarreau144f84a2021-03-02 16:09:26 +010063 unsigned int state = t->state;
Willy Tarreaueb8c2c62020-06-30 11:48:48 +020064 unsigned int thr;
65
66 BUG_ON(state & TASK_KILLED);
67
68 while (1) {
69 while (state & (TASK_RUNNING | TASK_QUEUED)) {
70 /* task already in the queue and about to be executed,
71 * or even currently running. Just add the flag and be
72 * done with it, the process loop will detect it and kill
73 * it. The CAS will fail if we arrive too late.
74 */
75 if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_KILLED))
76 return;
77 }
78
79 /* We'll have to wake it up, but we must also secure it so that
80 * it doesn't vanish under us. TASK_QUEUED guarantees nobody will
81 * add past us.
82 */
83 if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_QUEUED | TASK_KILLED)) {
84 /* Bypass the tree and go directly into the shared tasklet list.
85 * Note: that's a task so it must be accounted for as such. Pick
86 * the task's first thread for the job.
87 */
88 thr = my_ffsl(t->thread_mask) - 1;
Willy Tarreau54d31172020-07-02 14:14:00 +020089
90 /* Beware: tasks that have never run don't have their ->list empty yet! */
Willy Tarreau1a9c9222021-10-01 11:30:33 +020091 MT_LIST_APPEND(&ha_thread_ctx[thr].shared_tasklet_list,
Willy Tarreaucc5cd5b2022-01-28 09:48:12 +010092 list_to_mt_list(&((struct tasklet *)t)->list));
Willy Tarreau1a9c9222021-10-01 11:30:33 +020093 _HA_ATOMIC_INC(&ha_thread_ctx[thr].rq_total);
94 _HA_ATOMIC_INC(&ha_thread_ctx[thr].tasks_in_list);
Willy Tarreau54d31172020-07-02 14:14:00 +020095 if (sleeping_thread_mask & (1UL << thr)) {
96 _HA_ATOMIC_AND(&sleeping_thread_mask, ~(1UL << thr));
97 wake_thread(thr);
Willy Tarreaueb8c2c62020-06-30 11:48:48 +020098 }
Willy Tarreau54d31172020-07-02 14:14:00 +020099 return;
Willy Tarreaueb8c2c62020-06-30 11:48:48 +0200100 }
101 }
102}
103
Amaury Denoyelle7b368332021-07-28 16:12:57 +0200104/* Equivalent of task_kill for tasklets. Mark the tasklet <t> for destruction.
105 * It will be deleted on the next scheduler invocation. This function is
106 * thread-safe : a thread can kill a tasklet of another thread.
107 */
108void tasklet_kill(struct tasklet *t)
109{
110 unsigned int state = t->state;
111 unsigned int thr;
112
113 BUG_ON(state & TASK_KILLED);
114
115 while (1) {
116 while (state & (TASK_IN_LIST)) {
117 /* Tasklet already in the list ready to be executed. Add
118 * the killed flag and wait for the process loop to
119 * detect it.
120 */
121 if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_KILLED))
122 return;
123 }
124
125 /* Mark the tasklet as killed and wake the thread to process it
126 * as soon as possible.
127 */
128 if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_IN_LIST | TASK_KILLED)) {
Willy Tarreau9b3aa632022-06-15 15:54:56 +0200129 thr = t->tid >= 0 ? t->tid : tid;
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200130 MT_LIST_APPEND(&ha_thread_ctx[thr].shared_tasklet_list,
Willy Tarreaucc5cd5b2022-01-28 09:48:12 +0100131 list_to_mt_list(&t->list));
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200132 _HA_ATOMIC_INC(&ha_thread_ctx[thr].rq_total);
Amaury Denoyelle7b368332021-07-28 16:12:57 +0200133 if (sleeping_thread_mask & (1UL << thr)) {
134 _HA_ATOMIC_AND(&sleeping_thread_mask, ~(1UL << thr));
135 wake_thread(thr);
136 }
137 return;
138 }
139 }
140}
141
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100142/* Do not call this one, please use tasklet_wakeup_on() instead, as this one is
143 * the slow path of tasklet_wakeup_on() which performs some preliminary checks
144 * and sets TASK_IN_LIST before calling this one. A negative <thr> designates
145 * the current thread.
146 */
147void __tasklet_wakeup_on(struct tasklet *tl, int thr)
148{
149 if (likely(thr < 0)) {
150 /* this tasklet runs on the caller thread */
Willy Tarreau826fa872021-02-26 10:13:40 +0100151 if (tl->state & TASK_HEAVY) {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200152 LIST_APPEND(&th_ctx->tasklets[TL_HEAVY], &tl->list);
153 th_ctx->tl_class_mask |= 1 << TL_HEAVY;
Willy Tarreau826fa872021-02-26 10:13:40 +0100154 }
155 else if (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 ((struct task *)tl == th_ctx->current) {
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100160 _HA_ATOMIC_OR(&tl->state, TASK_SELF_WAKING);
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200161 LIST_APPEND(&th_ctx->tasklets[TL_BULK], &tl->list);
162 th_ctx->tl_class_mask |= 1 << TL_BULK;
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100163 }
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200164 else if (th_ctx->current_queue < 0) {
165 LIST_APPEND(&th_ctx->tasklets[TL_URGENT], &tl->list);
166 th_ctx->tl_class_mask |= 1 << TL_URGENT;
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100167 }
168 else {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200169 LIST_APPEND(&th_ctx->tasklets[th_ctx->current_queue], &tl->list);
170 th_ctx->tl_class_mask |= 1 << th_ctx->current_queue;
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100171 }
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200172 _HA_ATOMIC_INC(&th_ctx->rq_total);
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100173 } else {
174 /* this tasklet runs on a specific thread. */
Willy Tarreaucc5cd5b2022-01-28 09:48:12 +0100175 MT_LIST_APPEND(&ha_thread_ctx[thr].shared_tasklet_list, list_to_mt_list(&tl->list));
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200176 _HA_ATOMIC_INC(&ha_thread_ctx[thr].rq_total);
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100177 if (sleeping_thread_mask & (1UL << thr)) {
178 _HA_ATOMIC_AND(&sleeping_thread_mask, ~(1UL << thr));
179 wake_thread(thr);
180 }
181 }
182}
183
Willy Tarreau4726f532009-03-07 17:25:21 +0100184/* Puts the task <t> in run queue at a position depending on t->nice. <t> is
185 * returned. The nice value assigns boosts in 32th of the run queue size. A
Christopher Faulet34c5cc92016-12-06 09:15:30 +0100186 * nice value of -1024 sets the task to -tasks_run_queue*32, while a nice value
187 * of 1024 sets the task to tasks_run_queue*32. The state flags are cleared, so
188 * the caller will have to set its flags after this call.
Willy Tarreau4726f532009-03-07 17:25:21 +0100189 * The task must not already be in the run queue. If unsure, use the safer
190 * task_wakeup() function.
Willy Tarreau91e99932008-06-30 07:51:00 +0200191 */
Willy Tarreau018564e2021-02-24 16:41:11 +0100192void __task_wakeup(struct task *t)
Willy Tarreaue33aece2007-04-30 13:15:14 +0200193{
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200194 struct eb_root *root = &th_ctx->rqueue;
Willy Tarreau018564e2021-02-24 16:41:11 +0100195
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200196#ifdef USE_THREAD
Willy Tarreau018564e2021-02-24 16:41:11 +0100197 if (t->thread_mask != tid_bit && global.nbthread != 1) {
198 root = &rqueue;
199
Willy Tarreau4781b152021-04-06 13:53:36 +0200200 _HA_ATOMIC_INC(&grq_total);
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200201 HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreau9c7b8082021-02-24 15:10:07 +0100202
Olivier Houchardde82aea2019-04-17 19:10:22 +0200203 global_tasks_mask |= t->thread_mask;
Willy Tarreauc6ba9a02021-02-20 12:49:54 +0100204 t->rq.key = ++global_rqueue_ticks;
Olivier Houcharded1a6a02019-04-18 14:12:51 +0200205 __ha_barrier_store();
Willy Tarreauc6ba9a02021-02-20 12:49:54 +0100206 } else
Olivier Houchardc4aac9e2018-07-26 15:25:49 +0200207#endif
Willy Tarreau9c7b8082021-02-24 15:10:07 +0100208 {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200209 _HA_ATOMIC_INC(&th_ctx->rq_total);
210 t->rq.key = ++th_ctx->rqueue_ticks;
Willy Tarreau9c7b8082021-02-24 15:10:07 +0100211 }
Willy Tarreau91e99932008-06-30 07:51:00 +0200212
213 if (likely(t->nice)) {
214 int offset;
215
Willy Tarreau4781b152021-04-06 13:53:36 +0200216 _HA_ATOMIC_INC(&niced_tasks);
Willy Tarreau2d1fd0a2019-04-15 09:18:31 +0200217 offset = t->nice * (int)global.tune.runqueue_depth;
Willy Tarreau4726f532009-03-07 17:25:21 +0100218 t->rq.key += offset;
Willy Tarreau91e99932008-06-30 07:51:00 +0200219 }
220
Willy Tarreau680ed5f2022-06-13 15:59:39 +0200221 if (th_ctx->flags & TH_FL_TASK_PROFILING)
Willy Tarreau9efd7452018-05-31 14:48:54 +0200222 t->call_date = now_mono_time();
223
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200224 eb32sc_insert(root, &t->rq, t->thread_mask);
Willy Tarreau018564e2021-02-24 16:41:11 +0100225
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200226#ifdef USE_THREAD
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200227 if (root == &rqueue) {
Olivier Houchard4c2832852019-03-08 18:48:47 +0100228 _HA_ATOMIC_OR(&t->state, TASK_GLOBAL);
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200229 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreau2c41d772021-02-24 16:13:03 +0100230
Willy Tarreaueeffb3d2021-02-24 16:44:51 +0100231 /* If all threads that are supposed to handle this task are sleeping,
232 * wake one.
233 */
234 if ((((t->thread_mask & all_threads_mask) & sleeping_thread_mask) ==
235 (t->thread_mask & all_threads_mask))) {
236 unsigned long m = (t->thread_mask & all_threads_mask) &~ tid_bit;
Olivier Houchard1b327902019-03-15 00:23:10 +0100237
Willy Tarreaueeffb3d2021-02-24 16:44:51 +0100238 m = (m & (m - 1)) ^ m; // keep lowest bit set
239 _HA_ATOMIC_AND(&sleeping_thread_mask, ~m);
240 wake_thread(my_ffsl(m) - 1);
241 }
Olivier Houchard1b327902019-03-15 00:23:10 +0100242 }
Willy Tarreau85d9b842018-07-27 17:14:41 +0200243#endif
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200244 return;
Willy Tarreaue33aece2007-04-30 13:15:14 +0200245}
Willy Tarreaud825eef2007-05-12 22:35:00 +0200246
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200247/*
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100248 * __task_queue()
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200249 *
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200250 * Inserts a task into wait queue <wq> at the position given by its expiration
Willy Tarreau4726f532009-03-07 17:25:21 +0100251 * date. It does not matter if the task was already in the wait queue or not,
Willy Tarreau7a969992021-09-30 16:38:09 +0200252 * as it will be unlinked. The task MUST NOT have an infinite expiration timer.
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100253 * Last, tasks must not be queued further than the end of the tree, which is
254 * between <now_ms> and <now_ms> + 2^31 ms (now+24days in 32bit).
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100255 *
256 * This function should not be used directly, it is meant to be called by the
257 * inline version of task_queue() which performs a few cheap preliminary tests
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200258 * before deciding to call __task_queue(). Moreover this function doesn't care
259 * at all about locking so the caller must be careful when deciding whether to
260 * lock or not around this call.
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200261 */
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200262void __task_queue(struct task *task, struct eb_root *wq)
Willy Tarreau964c9362007-01-07 00:38:00 +0100263{
Willy Tarreaue5d79bc2020-07-22 14:29:42 +0200264#ifdef USE_THREAD
265 BUG_ON((wq == &timers && !(task->state & TASK_SHARED_WQ)) ||
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200266 (wq == &th_ctx->timers && (task->state & TASK_SHARED_WQ)) ||
267 (wq != &timers && wq != &th_ctx->timers));
Willy Tarreaue5d79bc2020-07-22 14:29:42 +0200268#endif
Willy Tarreau7a969992021-09-30 16:38:09 +0200269 /* if this happens the process is doomed anyway, so better catch it now
270 * so that we have the caller in the stack.
271 */
272 BUG_ON(task->expire == TICK_ETERNITY);
Willy Tarreaue5d79bc2020-07-22 14:29:42 +0200273
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100274 if (likely(task_in_wq(task)))
Willy Tarreau4726f532009-03-07 17:25:21 +0100275 __task_unlink_wq(task);
Willy Tarreau4726f532009-03-07 17:25:21 +0100276
277 /* the task is not in the queue now */
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100278 task->wq.key = task->expire;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200279#ifdef DEBUG_CHECK_INVALID_EXPIRATION_DATES
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100280 if (tick_is_lt(task->wq.key, now_ms))
Willy Tarreau28c41a42008-06-29 17:00:59 +0200281 /* we're queuing too far away or in the past (most likely) */
Willy Tarreau4726f532009-03-07 17:25:21 +0100282 return;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200283#endif
Willy Tarreauce44f122008-07-05 18:16:19 +0200284
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200285 eb32_insert(wq, &task->wq);
Willy Tarreau964c9362007-01-07 00:38:00 +0100286}
287
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200288/*
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200289 * Extract all expired timers from the timer queue, and wakes up all
Willy Tarreauc49ba522019-12-11 08:12:23 +0100290 * associated tasks.
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200291 */
Willy Tarreauc49ba522019-12-11 08:12:23 +0100292void wake_expired_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200293{
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200294 struct thread_ctx * const tt = th_ctx; // thread's tasks
Willy Tarreau3cfaa8d2020-10-16 09:26:22 +0200295 int max_processed = global.tune.runqueue_depth;
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200296 struct task *task;
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200297 struct eb32_node *eb;
Willy Tarreauaf613e82020-06-05 08:40:51 +0200298 __decl_thread(int key);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200299
Willy Tarreauf5aef022022-06-14 15:04:34 +0200300 while (1) {
301 if (max_processed-- <= 0)
302 goto leave;
303
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200304 eb = eb32_lookup_ge(&tt->timers, now_ms - TIMER_LOOK_BACK);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200305 if (!eb) {
306 /* we might have reached the end of the tree, typically because
307 * <now_ms> is in the first half and we're first scanning the last
308 * half. Let's loop back to the beginning of the tree now.
309 */
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200310 eb = eb32_first(&tt->timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200311 if (likely(!eb))
312 break;
313 }
314
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200315 /* It is possible that this task was left at an earlier place in the
316 * tree because a recent call to task_queue() has not moved it. This
317 * happens when the new expiration date is later than the old one.
318 * Since it is very unlikely that we reach a timeout anyway, it's a
319 * lot cheaper to proceed like this because we almost never update
320 * the tree. We may also find disabled expiration dates there. Since
321 * we have detached the task from the tree, we simply call task_queue
322 * to take care of this. Note that we might occasionally requeue it at
323 * the same place, before <eb>, so we have to check if this happens,
324 * and adjust <eb>, otherwise we may skip it which is not what we want.
325 * We may also not requeue the task (and not point eb at it) if its
Willy Tarreau77015ab2020-06-19 11:50:27 +0200326 * expiration time is not set. We also make sure we leave the real
327 * expiration date for the next task in the queue so that when calling
328 * next_timer_expiry() we're guaranteed to see the next real date and
329 * not the next apparent date. This is in order to avoid useless
330 * wakeups.
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200331 */
Willy Tarreau77015ab2020-06-19 11:50:27 +0200332
333 task = eb32_entry(eb, struct task, wq);
334 if (tick_is_expired(task->expire, now_ms)) {
335 /* expired task, wake it up */
336 __task_unlink_wq(task);
337 task_wakeup(task, TASK_WOKEN_TIMER);
338 }
339 else if (task->expire != eb->key) {
340 /* task is not expired but its key doesn't match so let's
341 * update it and skip to next apparently expired task.
342 */
343 __task_unlink_wq(task);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200344 if (tick_isset(task->expire))
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200345 __task_queue(task, &tt->timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200346 }
Willy Tarreau77015ab2020-06-19 11:50:27 +0200347 else {
Willy Tarreau7a969992021-09-30 16:38:09 +0200348 /* task not expired and correctly placed. It may not be eternal. */
349 BUG_ON(task->expire == TICK_ETERNITY);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200350 break;
351 }
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200352 }
353
354#ifdef USE_THREAD
Willy Tarreau1e928c02019-05-28 18:57:25 +0200355 if (eb_is_empty(&timers))
356 goto leave;
357
358 HA_RWLOCK_RDLOCK(TASK_WQ_LOCK, &wq_lock);
359 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
360 if (!eb) {
361 eb = eb32_first(&timers);
362 if (likely(!eb)) {
363 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
364 goto leave;
365 }
366 }
367 key = eb->key;
Willy Tarreau1e928c02019-05-28 18:57:25 +0200368
Willy Tarreaud48ed662020-10-16 09:31:41 +0200369 if (tick_is_lt(now_ms, key)) {
370 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau1e928c02019-05-28 18:57:25 +0200371 goto leave;
Willy Tarreaud48ed662020-10-16 09:31:41 +0200372 }
Willy Tarreau1e928c02019-05-28 18:57:25 +0200373
374 /* There's really something of interest here, let's visit the queue */
375
Willy Tarreaud48ed662020-10-16 09:31:41 +0200376 if (HA_RWLOCK_TRYRDTOSK(TASK_WQ_LOCK, &wq_lock)) {
377 /* if we failed to grab the lock it means another thread is
378 * already doing the same here, so let it do the job.
379 */
380 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
381 goto leave;
382 }
383
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200384 while (1) {
Emeric Brunc60def82017-09-27 14:59:38 +0200385 lookup_next:
Willy Tarreau3cfaa8d2020-10-16 09:26:22 +0200386 if (max_processed-- <= 0)
387 break;
Emeric Brun01948972017-03-30 15:37:25 +0200388 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
Emeric Brunc60def82017-09-27 14:59:38 +0200389 if (!eb) {
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100390 /* we might have reached the end of the tree, typically because
391 * <now_ms> is in the first half and we're first scanning the last
392 * half. Let's loop back to the beginning of the tree now.
393 */
394 eb = eb32_first(&timers);
Willy Tarreaub992ba12017-11-05 19:09:27 +0100395 if (likely(!eb))
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100396 break;
397 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200398
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100399 task = eb32_entry(eb, struct task, wq);
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100400
401 /* Check for any competing run of the task (quite rare but may
402 * involve a dangerous concurrent access on task->expire). In
403 * order to protect against this, we'll take an exclusive access
404 * on TASK_RUNNING before checking/touching task->expire. If the
405 * task is already RUNNING on another thread, it will deal by
406 * itself with the requeuing so we must not do anything and
407 * simply quit the loop for now, because we cannot wait with the
408 * WQ lock held as this would prevent the running thread from
409 * requeuing the task. One annoying effect of holding RUNNING
410 * here is that a concurrent task_wakeup() will refrain from
411 * waking it up. This forces us to check for a wakeup after
412 * releasing the flag.
413 */
414 if (HA_ATOMIC_FETCH_OR(&task->state, TASK_RUNNING) & TASK_RUNNING)
415 break;
416
Willy Tarreau77015ab2020-06-19 11:50:27 +0200417 if (tick_is_expired(task->expire, now_ms)) {
418 /* expired task, wake it up */
Willy Tarreaud48ed662020-10-16 09:31:41 +0200419 HA_RWLOCK_SKTOWR(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200420 __task_unlink_wq(task);
Willy Tarreaud48ed662020-10-16 09:31:41 +0200421 HA_RWLOCK_WRTOSK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100422 task_drop_running(task, TASK_WOKEN_TIMER);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200423 }
424 else if (task->expire != eb->key) {
425 /* task is not expired but its key doesn't match so let's
426 * update it and skip to next apparently expired task.
427 */
Willy Tarreaud48ed662020-10-16 09:31:41 +0200428 HA_RWLOCK_SKTOWR(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200429 __task_unlink_wq(task);
Willy Tarreaub992ba12017-11-05 19:09:27 +0100430 if (tick_isset(task->expire))
Willy Tarreau783afbe2020-07-22 14:12:45 +0200431 __task_queue(task, &timers);
Willy Tarreaud48ed662020-10-16 09:31:41 +0200432 HA_RWLOCK_WRTOSK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100433 task_drop_running(task, 0);
Emeric Brunc60def82017-09-27 14:59:38 +0200434 goto lookup_next;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200435 }
Willy Tarreau77015ab2020-06-19 11:50:27 +0200436 else {
Willy Tarreau7a969992021-09-30 16:38:09 +0200437 /* task not expired and correctly placed. It may not be eternal. */
438 BUG_ON(task->expire == TICK_ETERNITY);
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100439 task_drop_running(task, 0);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200440 break;
441 }
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100442 }
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200443
Willy Tarreaud48ed662020-10-16 09:31:41 +0200444 HA_RWLOCK_SKUNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200445#endif
Willy Tarreau1e928c02019-05-28 18:57:25 +0200446leave:
Willy Tarreauc49ba522019-12-11 08:12:23 +0100447 return;
448}
449
450/* Checks the next timer for the current thread by looking into its own timer
451 * list and the global one. It may return TICK_ETERNITY if no timer is present.
Ilya Shipitsin856aabc2020-04-16 23:51:34 +0500452 * Note that the next timer might very well be slightly in the past.
Willy Tarreauc49ba522019-12-11 08:12:23 +0100453 */
454int next_timer_expiry()
455{
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200456 struct thread_ctx * const tt = th_ctx; // thread's tasks
Willy Tarreauc49ba522019-12-11 08:12:23 +0100457 struct eb32_node *eb;
458 int ret = TICK_ETERNITY;
Willy Tarreau6ce02322020-08-21 05:48:34 +0200459 __decl_thread(int key = TICK_ETERNITY);
Willy Tarreauc49ba522019-12-11 08:12:23 +0100460
461 /* first check in the thread-local timers */
462 eb = eb32_lookup_ge(&tt->timers, now_ms - TIMER_LOOK_BACK);
463 if (!eb) {
464 /* we might have reached the end of the tree, typically because
465 * <now_ms> is in the first half and we're first scanning the last
466 * half. Let's loop back to the beginning of the tree now.
467 */
468 eb = eb32_first(&tt->timers);
469 }
470
471 if (eb)
472 ret = eb->key;
473
474#ifdef USE_THREAD
475 if (!eb_is_empty(&timers)) {
476 HA_RWLOCK_RDLOCK(TASK_WQ_LOCK, &wq_lock);
477 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
478 if (!eb)
479 eb = eb32_first(&timers);
480 if (eb)
481 key = eb->key;
482 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
483 if (eb)
484 ret = tick_first(ret, key);
485 }
486#endif
Willy Tarreaub992ba12017-11-05 19:09:27 +0100487 return ret;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200488}
489
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200490/* Walks over tasklet lists th_ctx->tasklets[0..TL_CLASSES-1] and run at most
Willy Tarreau59153fe2020-06-24 10:17:29 +0200491 * budget[TL_*] of them. Returns the number of entries effectively processed
492 * (tasks and tasklets merged). The count of tasks in the list for the current
493 * thread is adjusted.
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100494 */
Willy Tarreau59153fe2020-06-24 10:17:29 +0200495unsigned int run_tasks_from_lists(unsigned int budgets[])
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100496{
Willy Tarreau144f84a2021-03-02 16:09:26 +0100497 struct task *(*process)(struct task *t, void *ctx, unsigned int state);
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200498 struct list *tl_queues = th_ctx->tasklets;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100499 struct task *t;
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200500 uint8_t budget_mask = (1 << TL_CLASSES) - 1;
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100501 struct sched_activity *profile_entry = NULL;
Willy Tarreau59153fe2020-06-24 10:17:29 +0200502 unsigned int done = 0;
503 unsigned int queue;
Willy Tarreau144f84a2021-03-02 16:09:26 +0100504 unsigned int state;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100505 void *ctx;
Willy Tarreau59153fe2020-06-24 10:17:29 +0200506
507 for (queue = 0; queue < TL_CLASSES;) {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200508 th_ctx->current_queue = queue;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100509
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200510 /* global.tune.sched.low-latency is set */
511 if (global.tune.options & GTUNE_SCHED_LOW_LATENCY) {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200512 if (unlikely(th_ctx->tl_class_mask & budget_mask & ((1 << queue) - 1))) {
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200513 /* a lower queue index has tasks again and still has a
514 * budget to run them. Let's switch to it now.
515 */
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200516 queue = (th_ctx->tl_class_mask & 1) ? 0 :
517 (th_ctx->tl_class_mask & 2) ? 1 : 2;
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200518 continue;
519 }
520
521 if (unlikely(queue > TL_URGENT &&
522 budget_mask & (1 << TL_URGENT) &&
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200523 !MT_LIST_ISEMPTY(&th_ctx->shared_tasklet_list))) {
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200524 /* an urgent tasklet arrived from another thread */
525 break;
526 }
527
528 if (unlikely(queue > TL_NORMAL &&
529 budget_mask & (1 << TL_NORMAL) &&
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200530 (!eb_is_empty(&th_ctx->rqueue) ||
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200531 (global_tasks_mask & tid_bit)))) {
532 /* a task was woken up by a bulk tasklet or another thread */
533 break;
534 }
535 }
536
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200537 if (LIST_ISEMPTY(&tl_queues[queue])) {
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200538 th_ctx->tl_class_mask &= ~(1 << queue);
Willy Tarreau59153fe2020-06-24 10:17:29 +0200539 queue++;
540 continue;
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200541 }
542
Willy Tarreau59153fe2020-06-24 10:17:29 +0200543 if (!budgets[queue]) {
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200544 budget_mask &= ~(1 << queue);
Willy Tarreau59153fe2020-06-24 10:17:29 +0200545 queue++;
546 continue;
547 }
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200548
Willy Tarreau59153fe2020-06-24 10:17:29 +0200549 budgets[queue]--;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100550 activity[tid].ctxsw++;
Willy Tarreau3193eb92021-10-21 16:17:29 +0200551
552 t = (struct task *)LIST_ELEM(tl_queues[queue].n, struct tasklet *, list);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100553 ctx = t->context;
554 process = t->process;
555 t->calls++;
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200556 th_ctx->current = t;
Willy Tarreau3193eb92021-10-21 16:17:29 +0200557 th_ctx->flags &= ~TH_FL_STUCK; // this thread is still running
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100558
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200559 _HA_ATOMIC_DEC(&th_ctx->rq_total);
Willy Tarreau2da4c312020-11-30 14:52:11 +0100560
Willy Tarreau3193eb92021-10-21 16:17:29 +0200561 if (t->state & TASK_F_TASKLET) {
Willy Tarreau2a54ffb2021-02-25 09:32:58 +0100562 uint64_t before = 0;
563
Willy Tarreau4d6c5942020-11-30 14:58:53 +0100564 LIST_DEL_INIT(&((struct tasklet *)t)->list);
565 __ha_barrier_store();
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100566
Willy Tarreau680ed5f2022-06-13 15:59:39 +0200567 if (unlikely(th_ctx->flags & TH_FL_TASK_PROFILING)) {
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100568 profile_entry = sched_activity_entry(sched_activity, t->process);
569 before = now_mono_time();
Willy Tarreaub2285de2021-02-25 08:39:07 +0100570#ifdef DEBUG_TASK
Willy Tarreau2a54ffb2021-02-25 09:32:58 +0100571 if (((struct tasklet *)t)->call_date) {
572 HA_ATOMIC_ADD(&profile_entry->lat_time, before - ((struct tasklet *)t)->call_date);
573 ((struct tasklet *)t)->call_date = 0;
574 }
Willy Tarreaub2285de2021-02-25 08:39:07 +0100575#endif
Willy Tarreau2a54ffb2021-02-25 09:32:58 +0100576 }
577
Willy Tarreau3193eb92021-10-21 16:17:29 +0200578 state = _HA_ATOMIC_FETCH_AND(&t->state, TASK_PERSISTENT);
Willy Tarreau2a54ffb2021-02-25 09:32:58 +0100579 __ha_barrier_atomic_store();
580
Amaury Denoyelle7b368332021-07-28 16:12:57 +0200581 if (likely(!(state & TASK_KILLED))) {
582 process(t, ctx, state);
583 }
584 else {
585 done++;
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200586 th_ctx->current = NULL;
Amaury Denoyelle7b368332021-07-28 16:12:57 +0200587 pool_free(pool_head_tasklet, t);
588 __ha_barrier_store();
589 continue;
590 }
Willy Tarreau2a54ffb2021-02-25 09:32:58 +0100591
Willy Tarreau680ed5f2022-06-13 15:59:39 +0200592 if (unlikely(th_ctx->flags & TH_FL_TASK_PROFILING)) {
Willy Tarreau4781b152021-04-06 13:53:36 +0200593 HA_ATOMIC_INC(&profile_entry->calls);
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100594 HA_ATOMIC_ADD(&profile_entry->cpu_time, now_mono_time() - before);
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100595 }
Willy Tarreau2a54ffb2021-02-25 09:32:58 +0100596
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100597 done++;
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200598 th_ctx->current = NULL;
Willy Tarreaud23d4132020-01-31 10:39:03 +0100599 __ha_barrier_store();
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100600 continue;
601 }
602
Willy Tarreau4d6c5942020-11-30 14:58:53 +0100603 LIST_DEL_INIT(&((struct tasklet *)t)->list);
604 __ha_barrier_store();
Willy Tarreau3193eb92021-10-21 16:17:29 +0200605
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100606 /* We must be the exclusive owner of the TASK_RUNNING bit, and
607 * have to be careful that the task is not being manipulated on
608 * another thread finding it expired in wake_expired_tasks().
609 * The TASK_RUNNING bit will be set during these operations,
610 * they are extremely rare and do not last long so the best to
611 * do here is to wait.
612 */
613 state = _HA_ATOMIC_LOAD(&t->state);
614 do {
615 while (unlikely(state & TASK_RUNNING)) {
616 __ha_cpu_relax();
617 state = _HA_ATOMIC_LOAD(&t->state);
618 }
619 } while (!_HA_ATOMIC_CAS(&t->state, &state, (state & TASK_PERSISTENT) | TASK_RUNNING));
Willy Tarreau3193eb92021-10-21 16:17:29 +0200620
Willy Tarreau952c2642020-01-31 16:39:30 +0100621 __ha_barrier_atomic_store();
Willy Tarreau952c2642020-01-31 16:39:30 +0100622
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100623 /* OK then this is a regular task */
624
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200625 _HA_ATOMIC_DEC(&ha_thread_ctx[tid].tasks_in_list);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100626 if (unlikely(t->call_date)) {
627 uint64_t now_ns = now_mono_time();
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100628 uint64_t lat = now_ns - t->call_date;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100629
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100630 t->lat_time += lat;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100631 t->call_date = now_ns;
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100632 profile_entry = sched_activity_entry(sched_activity, t->process);
633 HA_ATOMIC_ADD(&profile_entry->lat_time, lat);
Willy Tarreau4781b152021-04-06 13:53:36 +0200634 HA_ATOMIC_INC(&profile_entry->calls);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100635 }
636
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100637 __ha_barrier_store();
Willy Tarreau8a6049c2020-06-30 11:48:48 +0200638
639 /* Note for below: if TASK_KILLED arrived before we've read the state, we
640 * directly free the task. Otherwise it will be seen after processing and
641 * it's freed on the exit path.
642 */
643 if (likely(!(state & TASK_KILLED) && process == process_stream))
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100644 t = process_stream(t, ctx, state);
Willy Tarreau8a6049c2020-06-30 11:48:48 +0200645 else if (!(state & TASK_KILLED) && process != NULL)
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100646 t = process(t, ctx, state);
647 else {
Willy Tarreau273aea42020-07-17 14:37:51 +0200648 task_unlink_wq(t);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100649 __task_free(t);
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200650 th_ctx->current = NULL;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100651 __ha_barrier_store();
652 /* We don't want max_processed to be decremented if
653 * we're just freeing a destroyed task, we should only
654 * do so if we really ran a task.
655 */
656 continue;
657 }
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200658 th_ctx->current = NULL;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100659 __ha_barrier_store();
660 /* If there is a pending state we have to wake up the task
661 * immediately, else we defer it into wait queue
662 */
663 if (t != NULL) {
664 if (unlikely(t->call_date)) {
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100665 uint64_t cpu = now_mono_time() - t->call_date;
666
667 t->cpu_time += cpu;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100668 t->call_date = 0;
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100669 HA_ATOMIC_ADD(&profile_entry->cpu_time, cpu);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100670 }
671
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100672 state = _HA_ATOMIC_LOAD(&t->state);
Willy Tarreau8a6049c2020-06-30 11:48:48 +0200673 if (unlikely(state & TASK_KILLED)) {
Willy Tarreau273aea42020-07-17 14:37:51 +0200674 task_unlink_wq(t);
Willy Tarreau8a6049c2020-06-30 11:48:48 +0200675 __task_free(t);
676 }
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100677 else {
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100678 task_queue(t);
Willy Tarreau6c8babf2022-02-14 10:18:51 +0100679 task_drop_running(t, 0);
680 }
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100681 }
682 done++;
683 }
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200684 th_ctx->current_queue = -1;
Willy Tarreau116ef222020-06-23 16:35:38 +0200685
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100686 return done;
687}
688
Willy Tarreau58b458d2008-06-29 22:40:23 +0200689/* The run queue is chronologically sorted in a tree. An insertion counter is
690 * used to assign a position to each task. This counter may be combined with
691 * other variables (eg: nice value) to set the final position in the tree. The
692 * counter may wrap without a problem, of course. We then limit the number of
Christopher Faulet8a48f672017-11-14 10:38:36 +0100693 * tasks processed to 200 in any case, so that general latency remains low and
Willy Tarreaucde79022019-04-12 18:03:41 +0200694 * so that task positions have a chance to be considered. The function scans
695 * both the global and local run queues and picks the most urgent task between
696 * the two. We need to grab the global runqueue lock to touch it so it's taken
697 * on the very first access to the global run queue and is released as soon as
698 * it reaches the end.
Willy Tarreau58b458d2008-06-29 22:40:23 +0200699 *
700 * The function adjusts <next> if a new event is closer.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200701 */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100702void process_runnable_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200703{
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200704 struct thread_ctx * const tt = th_ctx;
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200705 struct eb32sc_node *lrq; // next local run queue entry
706 struct eb32sc_node *grq; // next global run queue entry
Willy Tarreau964c9362007-01-07 00:38:00 +0100707 struct task *t;
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200708 const unsigned int default_weights[TL_CLASSES] = {
709 [TL_URGENT] = 64, // ~50% of CPU bandwidth for I/O
710 [TL_NORMAL] = 48, // ~37% of CPU bandwidth for tasks
711 [TL_BULK] = 16, // ~13% of CPU bandwidth for self-wakers
Willy Tarreau401135c2021-02-26 09:16:22 +0100712 [TL_HEAVY] = 1, // never more than 1 heavy task at once
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200713 };
714 unsigned int max[TL_CLASSES]; // max to be run per class
715 unsigned int max_total; // sum of max above
Olivier Houchard06910462019-10-11 16:35:01 +0200716 struct mt_list *tmp_list;
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200717 unsigned int queue;
718 int max_processed;
Willy Tarreaue7923c12021-02-25 07:09:08 +0100719 int lpicked, gpicked;
Willy Tarreau76390da2021-02-26 10:18:11 +0100720 int heavy_queued = 0;
Willy Tarreauc309dbd2020-11-30 15:39:00 +0100721 int budget;
Christopher Faulet3911ee82017-11-14 10:26:53 +0100722
Willy Tarreaua0b99532021-09-30 18:48:37 +0200723 th_ctx->flags &= ~TH_FL_STUCK; // this thread is still running
Willy Tarreaue6a02fa2019-05-22 07:06:44 +0200724
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200725 if (!thread_has_tasks()) {
726 activity[tid].empty_rq++;
727 return;
728 }
729
Willy Tarreau5c8be272020-06-19 12:17:55 +0200730 max_processed = global.tune.runqueue_depth;
731
732 if (likely(niced_tasks))
733 max_processed = (max_processed + 3) / 4;
734
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200735 if (max_processed < th_ctx->rq_total && th_ctx->rq_total <= 2*max_processed) {
Willy Tarreau1691ba32021-03-10 09:26:24 +0100736 /* If the run queue exceeds the budget by up to 50%, let's cut it
737 * into two identical halves to improve latency.
738 */
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200739 max_processed = th_ctx->rq_total / 2;
Willy Tarreau1691ba32021-03-10 09:26:24 +0100740 }
741
Willy Tarreau5c8be272020-06-19 12:17:55 +0200742 not_done_yet:
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200743 max[TL_URGENT] = max[TL_NORMAL] = max[TL_BULK] = 0;
Willy Tarreaucde79022019-04-12 18:03:41 +0200744
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200745 /* urgent tasklets list gets a default weight of ~50% */
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200746 if ((tt->tl_class_mask & (1 << TL_URGENT)) ||
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200747 !MT_LIST_ISEMPTY(&tt->shared_tasklet_list))
748 max[TL_URGENT] = default_weights[TL_URGENT];
Willy Tarreaua62917b2020-01-30 18:37:28 +0100749
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200750 /* normal tasklets list gets a default weight of ~37% */
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200751 if ((tt->tl_class_mask & (1 << TL_NORMAL)) ||
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200752 !eb_is_empty(&th_ctx->rqueue) || (global_tasks_mask & tid_bit))
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200753 max[TL_NORMAL] = default_weights[TL_NORMAL];
Willy Tarreaua62917b2020-01-30 18:37:28 +0100754
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200755 /* bulk tasklets list gets a default weight of ~13% */
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200756 if ((tt->tl_class_mask & (1 << TL_BULK)))
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200757 max[TL_BULK] = default_weights[TL_BULK];
758
Willy Tarreau401135c2021-02-26 09:16:22 +0100759 /* heavy tasks are processed only once and never refilled in a
Willy Tarreau76390da2021-02-26 10:18:11 +0100760 * call round. That budget is not lost either as we don't reset
761 * it unless consumed.
Willy Tarreau401135c2021-02-26 09:16:22 +0100762 */
Willy Tarreau76390da2021-02-26 10:18:11 +0100763 if (!heavy_queued) {
764 if ((tt->tl_class_mask & (1 << TL_HEAVY)))
765 max[TL_HEAVY] = default_weights[TL_HEAVY];
766 else
767 max[TL_HEAVY] = 0;
768 heavy_queued = 1;
769 }
Willy Tarreau401135c2021-02-26 09:16:22 +0100770
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200771 /* Now compute a fair share of the weights. Total may slightly exceed
Willy Tarreau1553b662020-06-30 13:46:21 +0200772 * 100% due to rounding, this is not a problem. Note that while in
773 * theory the sum cannot be NULL as we cannot get there without tasklets
774 * to process, in practice it seldom happens when multiple writers
Willy Tarreau2b718102021-04-21 07:32:39 +0200775 * conflict and rollback on MT_LIST_TRY_APPEND(shared_tasklet_list), causing
Willy Tarreau1553b662020-06-30 13:46:21 +0200776 * a first MT_LIST_ISEMPTY() to succeed for thread_has_task() and the
777 * one above to finally fail. This is extremely rare and not a problem.
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200778 */
Willy Tarreau401135c2021-02-26 09:16:22 +0100779 max_total = max[TL_URGENT] + max[TL_NORMAL] + max[TL_BULK] + max[TL_HEAVY];
Willy Tarreau1553b662020-06-30 13:46:21 +0200780 if (!max_total)
781 return;
782
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200783 for (queue = 0; queue < TL_CLASSES; queue++)
784 max[queue] = ((unsigned)max_processed * max[queue] + max_total - 1) / max_total;
785
Willy Tarreau76390da2021-02-26 10:18:11 +0100786 /* The heavy queue must never process more than one task at once
787 * anyway.
788 */
789 if (max[TL_HEAVY] > 1)
790 max[TL_HEAVY] = 1;
791
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200792 lrq = grq = NULL;
Christopher Faulet8a48f672017-11-14 10:38:36 +0100793
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200794 /* pick up to max[TL_NORMAL] regular tasks from prio-ordered run queues */
795 /* Note: the grq lock is always held when grq is not null */
Willy Tarreaue7923c12021-02-25 07:09:08 +0100796 lpicked = gpicked = 0;
Willy Tarreau1f3b1412021-02-24 14:13:40 +0100797 budget = max[TL_NORMAL] - tt->tasks_in_list;
Willy Tarreaue7923c12021-02-25 07:09:08 +0100798 while (lpicked + gpicked < budget) {
Willy Tarreaucde79022019-04-12 18:03:41 +0200799 if ((global_tasks_mask & tid_bit) && !grq) {
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200800#ifdef USE_THREAD
Willy Tarreaucde79022019-04-12 18:03:41 +0200801 HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreauc6ba9a02021-02-20 12:49:54 +0100802 grq = eb32sc_lookup_ge(&rqueue, global_rqueue_ticks - TIMER_LOOK_BACK, tid_bit);
Willy Tarreaucde79022019-04-12 18:03:41 +0200803 if (unlikely(!grq)) {
804 grq = eb32sc_first(&rqueue, tid_bit);
805 if (!grq) {
Olivier Houchardde82aea2019-04-17 19:10:22 +0200806 global_tasks_mask &= ~tid_bit;
Willy Tarreaucde79022019-04-12 18:03:41 +0200807 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Olivier Houchardc4aac9e2018-07-26 15:25:49 +0200808 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100809 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200810#endif
Willy Tarreaucde79022019-04-12 18:03:41 +0200811 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100812
Willy Tarreaucde79022019-04-12 18:03:41 +0200813 /* If a global task is available for this thread, it's in grq
814 * now and the global RQ is locked.
815 */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200816
Willy Tarreaucde79022019-04-12 18:03:41 +0200817 if (!lrq) {
Willy Tarreauc6ba9a02021-02-20 12:49:54 +0100818 lrq = eb32sc_lookup_ge(&tt->rqueue, tt->rqueue_ticks - TIMER_LOOK_BACK, tid_bit);
Willy Tarreaucde79022019-04-12 18:03:41 +0200819 if (unlikely(!lrq))
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200820 lrq = eb32sc_first(&tt->rqueue, tid_bit);
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100821 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100822
Willy Tarreaucde79022019-04-12 18:03:41 +0200823 if (!lrq && !grq)
824 break;
825
826 if (likely(!grq || (lrq && (int)(lrq->key - grq->key) <= 0))) {
827 t = eb32sc_entry(lrq, struct task, rq);
828 lrq = eb32sc_next(lrq, tid_bit);
Willy Tarreau2b363ac2021-02-25 07:14:58 +0100829 eb32sc_delete(&t->rq);
Willy Tarreaue7923c12021-02-25 07:09:08 +0100830 lpicked++;
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200831 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200832#ifdef USE_THREAD
Willy Tarreaucde79022019-04-12 18:03:41 +0200833 else {
834 t = eb32sc_entry(grq, struct task, rq);
835 grq = eb32sc_next(grq, tid_bit);
Willy Tarreau2b363ac2021-02-25 07:14:58 +0100836 _HA_ATOMIC_AND(&t->state, ~TASK_GLOBAL);
837 eb32sc_delete(&t->rq);
838
Willy Tarreaucde79022019-04-12 18:03:41 +0200839 if (unlikely(!grq)) {
840 grq = eb32sc_first(&rqueue, tid_bit);
841 if (!grq) {
Olivier Houchardde82aea2019-04-17 19:10:22 +0200842 global_tasks_mask &= ~tid_bit;
Willy Tarreaucde79022019-04-12 18:03:41 +0200843 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreaucde79022019-04-12 18:03:41 +0200844 }
845 }
Willy Tarreaue7923c12021-02-25 07:09:08 +0100846 gpicked++;
Emeric Brun01948972017-03-30 15:37:25 +0200847 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200848#endif
Willy Tarreau2b363ac2021-02-25 07:14:58 +0100849 if (t->nice)
Willy Tarreau4781b152021-04-06 13:53:36 +0200850 _HA_ATOMIC_DEC(&niced_tasks);
Willy Tarreaucde79022019-04-12 18:03:41 +0200851
Willy Tarreaua868c292020-11-30 15:30:22 +0100852 /* Add it to the local task list */
Willy Tarreau2b718102021-04-21 07:32:39 +0200853 LIST_APPEND(&tt->tasklets[TL_NORMAL], &((struct tasklet *)t)->list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200854 }
Willy Tarreaucde79022019-04-12 18:03:41 +0200855
856 /* release the rqueue lock */
857 if (grq) {
858 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
859 grq = NULL;
860 }
861
Willy Tarreaue7923c12021-02-25 07:09:08 +0100862 if (lpicked + gpicked) {
Willy Tarreauc309dbd2020-11-30 15:39:00 +0100863 tt->tl_class_mask |= 1 << TL_NORMAL;
Willy Tarreaue7923c12021-02-25 07:09:08 +0100864 _HA_ATOMIC_ADD(&tt->tasks_in_list, lpicked + gpicked);
Willy Tarreaub7e0c632021-03-09 09:59:50 +0100865#ifdef USE_THREAD
Willy Tarreau45499c52021-02-25 07:51:18 +0100866 if (gpicked) {
867 _HA_ATOMIC_SUB(&grq_total, gpicked);
Willy Tarreauc9afbb12021-02-25 07:19:45 +0100868 _HA_ATOMIC_ADD(&tt->rq_total, gpicked);
Willy Tarreau45499c52021-02-25 07:51:18 +0100869 }
Willy Tarreaub7e0c632021-03-09 09:59:50 +0100870#endif
Willy Tarreaue7923c12021-02-25 07:09:08 +0100871 activity[tid].tasksw += lpicked + gpicked;
Willy Tarreauc309dbd2020-11-30 15:39:00 +0100872 }
873
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200874 /* Merge the list of tasklets waken up by other threads to the
875 * main list.
876 */
877 tmp_list = MT_LIST_BEHEAD(&tt->shared_tasklet_list);
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200878 if (tmp_list) {
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200879 LIST_SPLICE_END_DETACHED(&tt->tasklets[TL_URGENT], (struct list *)tmp_list);
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200880 if (!LIST_ISEMPTY(&tt->tasklets[TL_URGENT]))
881 tt->tl_class_mask |= 1 << TL_URGENT;
882 }
Willy Tarreaucde79022019-04-12 18:03:41 +0200883
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200884 /* execute tasklets in each queue */
Willy Tarreau59153fe2020-06-24 10:17:29 +0200885 max_processed -= run_tasks_from_lists(max);
Willy Tarreaua62917b2020-01-30 18:37:28 +0100886
Willy Tarreau5c8be272020-06-19 12:17:55 +0200887 /* some tasks may have woken other ones up */
Willy Tarreau0c0c85e2020-06-23 11:32:35 +0200888 if (max_processed > 0 && thread_has_tasks())
Willy Tarreau5c8be272020-06-19 12:17:55 +0200889 goto not_done_yet;
890
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200891 if (tt->tl_class_mask)
Willy Tarreaucde79022019-04-12 18:03:41 +0200892 activity[tid].long_rq++;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200893}
894
William Lallemand27f3fa52018-12-06 14:05:20 +0100895/*
896 * Delete every tasks before running the master polling loop
897 */
898void mworker_cleantasks()
899{
900 struct task *t;
901 int i;
William Lallemandb5823392018-12-06 15:14:37 +0100902 struct eb32_node *tmp_wq = NULL;
903 struct eb32sc_node *tmp_rq = NULL;
William Lallemand27f3fa52018-12-06 14:05:20 +0100904
905#ifdef USE_THREAD
906 /* cleanup the global run queue */
Willy Tarreau3ccb14d2022-06-14 11:18:40 +0200907 tmp_rq = eb32sc_first(&rqueue, ~0UL);
William Lallemandb5823392018-12-06 15:14:37 +0100908 while (tmp_rq) {
909 t = eb32sc_entry(tmp_rq, struct task, rq);
Willy Tarreau3ccb14d2022-06-14 11:18:40 +0200910 tmp_rq = eb32sc_next(tmp_rq, ~0UL);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200911 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100912 }
913 /* cleanup the timers queue */
William Lallemandb5823392018-12-06 15:14:37 +0100914 tmp_wq = eb32_first(&timers);
915 while (tmp_wq) {
916 t = eb32_entry(tmp_wq, struct task, wq);
917 tmp_wq = eb32_next(tmp_wq);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200918 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100919 }
920#endif
921 /* clean the per thread run queue */
922 for (i = 0; i < global.nbthread; i++) {
Willy Tarreau3ccb14d2022-06-14 11:18:40 +0200923 tmp_rq = eb32sc_first(&ha_thread_ctx[i].rqueue, ~0UL);
William Lallemandb5823392018-12-06 15:14:37 +0100924 while (tmp_rq) {
925 t = eb32sc_entry(tmp_rq, struct task, rq);
Willy Tarreau3ccb14d2022-06-14 11:18:40 +0200926 tmp_rq = eb32sc_next(tmp_rq, ~0UL);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200927 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100928 }
929 /* cleanup the per thread timers queue */
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200930 tmp_wq = eb32_first(&ha_thread_ctx[i].timers);
William Lallemandb5823392018-12-06 15:14:37 +0100931 while (tmp_wq) {
932 t = eb32_entry(tmp_wq, struct task, wq);
933 tmp_wq = eb32_next(tmp_wq);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200934 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100935 }
936 }
937}
938
Willy Tarreaub6b3df32018-11-26 16:31:20 +0100939/* perform minimal intializations */
940static void init_task()
Willy Tarreau4726f532009-03-07 17:25:21 +0100941{
Willy Tarreau401135c2021-02-26 09:16:22 +0100942 int i, q;
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200943
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200944#ifdef USE_THREAD
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200945 memset(&timers, 0, sizeof(timers));
Willy Tarreau4726f532009-03-07 17:25:21 +0100946 memset(&rqueue, 0, sizeof(rqueue));
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200947#endif
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200948 for (i = 0; i < MAX_THREADS; i++) {
Willy Tarreau401135c2021-02-26 09:16:22 +0100949 for (q = 0; q < TL_CLASSES; q++)
Willy Tarreau1a9c9222021-10-01 11:30:33 +0200950 LIST_INIT(&ha_thread_ctx[i].tasklets[q]);
951 MT_LIST_INIT(&ha_thread_ctx[i].shared_tasklet_list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200952 }
Willy Tarreau4726f532009-03-07 17:25:21 +0100953}
954
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200955/* config parser for global "tune.sched.low-latency", accepts "on" or "off" */
956static int cfg_parse_tune_sched_low_latency(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +0100957 const struct proxy *defpx, const char *file, int line,
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200958 char **err)
959{
960 if (too_many_args(1, args, err, NULL))
961 return -1;
962
963 if (strcmp(args[1], "on") == 0)
964 global.tune.options |= GTUNE_SCHED_LOW_LATENCY;
965 else if (strcmp(args[1], "off") == 0)
966 global.tune.options &= ~GTUNE_SCHED_LOW_LATENCY;
967 else {
968 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
969 return -1;
970 }
971 return 0;
972}
973
974/* config keyword parsers */
975static struct cfg_kw_list cfg_kws = {ILH, {
976 { CFG_GLOBAL, "tune.sched.low-latency", cfg_parse_tune_sched_low_latency },
977 { 0, NULL, NULL }
978}};
979
980INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreaub6b3df32018-11-26 16:31:20 +0100981INITCALL0(STG_PREPARE, init_task);
982
Willy Tarreaubaaee002006-06-26 02:48:02 +0200983/*
984 * Local variables:
985 * c-indent-level: 8
986 * c-basic-offset: 8
987 * End:
988 */