blob: 1b1738defda3f8605d19e019a4f6436f46dbbafc [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 Tarreaue7723bd2020-06-24 11:11:02 +020019#include <haproxy/cfgparse.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020020#include <haproxy/fd.h>
21#include <haproxy/freq_ctr.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020022#include <haproxy/list.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020023#include <haproxy/pool.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020024#include <haproxy/stream.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020025#include <haproxy/task.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020026#include <haproxy/time.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020027#include <haproxy/tools.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020028
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 Tarreaud022e9c2019-09-24 08:25:15 +020041THREAD_LOCAL struct task_per_thread *sched = &task_per_thread[0]; /* scheduler context for the current thread */
Willy Tarreau6d1222c2017-11-26 10:08:06 +010042
Willy Tarreau86abe442018-11-25 20:12:18 +010043__decl_aligned_spinlock(rq_lock); /* spin lock related to run queue */
Willy Tarreauef28dc12019-05-28 18:48:07 +020044__decl_aligned_rwlock(wq_lock); /* RW lock related to the wait queue */
Willy Tarreau964c9362007-01-07 00:38:00 +010045
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020046#ifdef USE_THREAD
Willy Tarreauc6ba9a02021-02-20 12:49:54 +010047struct eb_root timers; /* sorted timers tree, global, accessed under wq_lock */
48struct eb_root rqueue; /* tree constituting the global run queue, accessed under rq_lock */
Willy Tarreau45499c52021-02-25 07:51:18 +010049unsigned int grq_total; /* total number of entries in the global run queue, atomic */
Willy Tarreauc6ba9a02021-02-20 12:49:54 +010050static unsigned int global_rqueue_ticks; /* insertion count in the grq, use rq_lock */
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020051#endif
Willy Tarreaub20aa9e2018-10-15 14:52:21 +020052
Willy Tarreau8d8747a2018-10-15 16:12:48 +020053
54struct task_per_thread task_per_thread[MAX_THREADS];
Willy Tarreau9789f7b2008-06-24 08:17:16 +020055
Willy Tarreaueb8c2c62020-06-30 11:48:48 +020056
57/* Flags the task <t> for immediate destruction and puts it into its first
58 * thread's shared tasklet list if not yet queued/running. This will bypass
59 * the priority scheduling and make the task show up as fast as possible in
60 * the other thread's queue. Note that this operation isn't idempotent and is
61 * not supposed to be run on the same task from multiple threads at once. It's
62 * the caller's responsibility to make sure it is the only one able to kill the
63 * task.
64 */
65void task_kill(struct task *t)
66{
67 unsigned short state = t->state;
68 unsigned int thr;
69
70 BUG_ON(state & TASK_KILLED);
71
72 while (1) {
73 while (state & (TASK_RUNNING | TASK_QUEUED)) {
74 /* task already in the queue and about to be executed,
75 * or even currently running. Just add the flag and be
76 * done with it, the process loop will detect it and kill
77 * it. The CAS will fail if we arrive too late.
78 */
79 if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_KILLED))
80 return;
81 }
82
83 /* We'll have to wake it up, but we must also secure it so that
84 * it doesn't vanish under us. TASK_QUEUED guarantees nobody will
85 * add past us.
86 */
87 if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_QUEUED | TASK_KILLED)) {
88 /* Bypass the tree and go directly into the shared tasklet list.
89 * Note: that's a task so it must be accounted for as such. Pick
90 * the task's first thread for the job.
91 */
92 thr = my_ffsl(t->thread_mask) - 1;
Willy Tarreau54d31172020-07-02 14:14:00 +020093
94 /* Beware: tasks that have never run don't have their ->list empty yet! */
Willy Tarreau950954f2020-07-10 08:32:10 +020095 MT_LIST_ADDQ(&task_per_thread[thr].shared_tasklet_list,
Willy Tarreau4f589262020-07-02 17:17:42 +020096 (struct mt_list *)&((struct tasklet *)t)->list);
Willy Tarreau9c7b8082021-02-24 15:10:07 +010097 _HA_ATOMIC_ADD(&task_per_thread[thr].rq_total, 1);
Willy Tarreau1f3b1412021-02-24 14:13:40 +010098 _HA_ATOMIC_ADD(&task_per_thread[thr].tasks_in_list, 1);
Willy Tarreau54d31172020-07-02 14:14:00 +020099 if (sleeping_thread_mask & (1UL << thr)) {
100 _HA_ATOMIC_AND(&sleeping_thread_mask, ~(1UL << thr));
101 wake_thread(thr);
Willy Tarreaueb8c2c62020-06-30 11:48:48 +0200102 }
Willy Tarreau54d31172020-07-02 14:14:00 +0200103 return;
Willy Tarreaueb8c2c62020-06-30 11:48:48 +0200104 }
105 }
106}
107
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100108/* Do not call this one, please use tasklet_wakeup_on() instead, as this one is
109 * the slow path of tasklet_wakeup_on() which performs some preliminary checks
110 * and sets TASK_IN_LIST before calling this one. A negative <thr> designates
111 * the current thread.
112 */
113void __tasklet_wakeup_on(struct tasklet *tl, int thr)
114{
115 if (likely(thr < 0)) {
116 /* this tasklet runs on the caller thread */
Willy Tarreau74dea8c2021-02-26 00:25:51 +0100117 if (tl->state & (TASK_SELF_WAKING|TASK_HEAVY)) {
Willy Tarreau9c6dbf02021-02-24 17:51:38 +0100118 LIST_ADDQ(&sched->tasklets[TL_BULK], &tl->list);
119 sched->tl_class_mask |= 1 << TL_BULK;
120 }
121 else if ((struct task *)tl == sched->current) {
122 _HA_ATOMIC_OR(&tl->state, TASK_SELF_WAKING);
123 LIST_ADDQ(&sched->tasklets[TL_BULK], &tl->list);
124 sched->tl_class_mask |= 1 << TL_BULK;
125 }
126 else if (sched->current_queue < 0) {
127 LIST_ADDQ(&sched->tasklets[TL_URGENT], &tl->list);
128 sched->tl_class_mask |= 1 << TL_URGENT;
129 }
130 else {
131 LIST_ADDQ(&sched->tasklets[sched->current_queue], &tl->list);
132 sched->tl_class_mask |= 1 << sched->current_queue;
133 }
134 _HA_ATOMIC_ADD(&sched->rq_total, 1);
135 } else {
136 /* this tasklet runs on a specific thread. */
137 MT_LIST_ADDQ(&task_per_thread[thr].shared_tasklet_list, (struct mt_list *)&tl->list);
138 _HA_ATOMIC_ADD(&task_per_thread[thr].rq_total, 1);
139 if (sleeping_thread_mask & (1UL << thr)) {
140 _HA_ATOMIC_AND(&sleeping_thread_mask, ~(1UL << thr));
141 wake_thread(thr);
142 }
143 }
144}
145
Willy Tarreau4726f532009-03-07 17:25:21 +0100146/* Puts the task <t> in run queue at a position depending on t->nice. <t> is
147 * returned. The nice value assigns boosts in 32th of the run queue size. A
Christopher Faulet34c5cc92016-12-06 09:15:30 +0100148 * nice value of -1024 sets the task to -tasks_run_queue*32, while a nice value
149 * of 1024 sets the task to tasks_run_queue*32. The state flags are cleared, so
150 * the caller will have to set its flags after this call.
Willy Tarreau4726f532009-03-07 17:25:21 +0100151 * The task must not already be in the run queue. If unsure, use the safer
152 * task_wakeup() function.
Willy Tarreau91e99932008-06-30 07:51:00 +0200153 */
Willy Tarreau018564e2021-02-24 16:41:11 +0100154void __task_wakeup(struct task *t)
Willy Tarreaue33aece2007-04-30 13:15:14 +0200155{
Willy Tarreau018564e2021-02-24 16:41:11 +0100156 struct eb_root *root = &sched->rqueue;
157
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200158#ifdef USE_THREAD
Willy Tarreau018564e2021-02-24 16:41:11 +0100159 if (t->thread_mask != tid_bit && global.nbthread != 1) {
160 root = &rqueue;
161
Willy Tarreau45499c52021-02-25 07:51:18 +0100162 _HA_ATOMIC_ADD(&grq_total, 1);
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200163 HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreau9c7b8082021-02-24 15:10:07 +0100164
Olivier Houchardde82aea2019-04-17 19:10:22 +0200165 global_tasks_mask |= t->thread_mask;
Willy Tarreauc6ba9a02021-02-20 12:49:54 +0100166 t->rq.key = ++global_rqueue_ticks;
Olivier Houcharded1a6a02019-04-18 14:12:51 +0200167 __ha_barrier_store();
Willy Tarreauc6ba9a02021-02-20 12:49:54 +0100168 } else
Olivier Houchardc4aac9e2018-07-26 15:25:49 +0200169#endif
Willy Tarreau9c7b8082021-02-24 15:10:07 +0100170 {
171 _HA_ATOMIC_ADD(&sched->rq_total, 1);
Willy Tarreauc6ba9a02021-02-20 12:49:54 +0100172 t->rq.key = ++sched->rqueue_ticks;
Willy Tarreau9c7b8082021-02-24 15:10:07 +0100173 }
Willy Tarreau91e99932008-06-30 07:51:00 +0200174
175 if (likely(t->nice)) {
176 int offset;
177
Olivier Houchard4c2832852019-03-08 18:48:47 +0100178 _HA_ATOMIC_ADD(&niced_tasks, 1);
Willy Tarreau2d1fd0a2019-04-15 09:18:31 +0200179 offset = t->nice * (int)global.tune.runqueue_depth;
Willy Tarreau4726f532009-03-07 17:25:21 +0100180 t->rq.key += offset;
Willy Tarreau91e99932008-06-30 07:51:00 +0200181 }
182
Willy Tarreaud9add3a2019-04-25 08:57:41 +0200183 if (task_profiling_mask & tid_bit)
Willy Tarreau9efd7452018-05-31 14:48:54 +0200184 t->call_date = now_mono_time();
185
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200186 eb32sc_insert(root, &t->rq, t->thread_mask);
Willy Tarreau018564e2021-02-24 16:41:11 +0100187
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200188#ifdef USE_THREAD
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200189 if (root == &rqueue) {
Olivier Houchard4c2832852019-03-08 18:48:47 +0100190 _HA_ATOMIC_OR(&t->state, TASK_GLOBAL);
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200191 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreau2c41d772021-02-24 16:13:03 +0100192
Willy Tarreaueeffb3d2021-02-24 16:44:51 +0100193 /* If all threads that are supposed to handle this task are sleeping,
194 * wake one.
195 */
196 if ((((t->thread_mask & all_threads_mask) & sleeping_thread_mask) ==
197 (t->thread_mask & all_threads_mask))) {
198 unsigned long m = (t->thread_mask & all_threads_mask) &~ tid_bit;
Olivier Houchard1b327902019-03-15 00:23:10 +0100199
Willy Tarreaueeffb3d2021-02-24 16:44:51 +0100200 m = (m & (m - 1)) ^ m; // keep lowest bit set
201 _HA_ATOMIC_AND(&sleeping_thread_mask, ~m);
202 wake_thread(my_ffsl(m) - 1);
203 }
Olivier Houchard1b327902019-03-15 00:23:10 +0100204 }
Willy Tarreau85d9b842018-07-27 17:14:41 +0200205#endif
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200206 return;
Willy Tarreaue33aece2007-04-30 13:15:14 +0200207}
Willy Tarreaud825eef2007-05-12 22:35:00 +0200208
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200209/*
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100210 * __task_queue()
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200211 *
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200212 * Inserts a task into wait queue <wq> at the position given by its expiration
Willy Tarreau4726f532009-03-07 17:25:21 +0100213 * date. It does not matter if the task was already in the wait queue or not,
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100214 * as it will be unlinked. The task must not have an infinite expiration timer.
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100215 * Last, tasks must not be queued further than the end of the tree, which is
216 * between <now_ms> and <now_ms> + 2^31 ms (now+24days in 32bit).
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100217 *
218 * This function should not be used directly, it is meant to be called by the
219 * inline version of task_queue() which performs a few cheap preliminary tests
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200220 * before deciding to call __task_queue(). Moreover this function doesn't care
221 * at all about locking so the caller must be careful when deciding whether to
222 * lock or not around this call.
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200223 */
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200224void __task_queue(struct task *task, struct eb_root *wq)
Willy Tarreau964c9362007-01-07 00:38:00 +0100225{
Willy Tarreaue5d79bc2020-07-22 14:29:42 +0200226#ifdef USE_THREAD
227 BUG_ON((wq == &timers && !(task->state & TASK_SHARED_WQ)) ||
228 (wq == &sched->timers && (task->state & TASK_SHARED_WQ)) ||
229 (wq != &timers && wq != &sched->timers));
230#endif
231
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100232 if (likely(task_in_wq(task)))
Willy Tarreau4726f532009-03-07 17:25:21 +0100233 __task_unlink_wq(task);
Willy Tarreau4726f532009-03-07 17:25:21 +0100234
235 /* the task is not in the queue now */
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100236 task->wq.key = task->expire;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200237#ifdef DEBUG_CHECK_INVALID_EXPIRATION_DATES
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100238 if (tick_is_lt(task->wq.key, now_ms))
Willy Tarreau28c41a42008-06-29 17:00:59 +0200239 /* we're queuing too far away or in the past (most likely) */
Willy Tarreau4726f532009-03-07 17:25:21 +0100240 return;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200241#endif
Willy Tarreauce44f122008-07-05 18:16:19 +0200242
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200243 eb32_insert(wq, &task->wq);
Willy Tarreau964c9362007-01-07 00:38:00 +0100244}
245
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200246/*
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200247 * Extract all expired timers from the timer queue, and wakes up all
Willy Tarreauc49ba522019-12-11 08:12:23 +0100248 * associated tasks.
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200249 */
Willy Tarreauc49ba522019-12-11 08:12:23 +0100250void wake_expired_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200251{
Willy Tarreaud022e9c2019-09-24 08:25:15 +0200252 struct task_per_thread * const tt = sched; // thread's tasks
Willy Tarreau3cfaa8d2020-10-16 09:26:22 +0200253 int max_processed = global.tune.runqueue_depth;
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200254 struct task *task;
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200255 struct eb32_node *eb;
Willy Tarreauaf613e82020-06-05 08:40:51 +0200256 __decl_thread(int key);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200257
Willy Tarreau3cfaa8d2020-10-16 09:26:22 +0200258 while (max_processed-- > 0) {
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200259 lookup_next_local:
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200260 eb = eb32_lookup_ge(&tt->timers, now_ms - TIMER_LOOK_BACK);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200261 if (!eb) {
262 /* we might have reached the end of the tree, typically because
263 * <now_ms> is in the first half and we're first scanning the last
264 * half. Let's loop back to the beginning of the tree now.
265 */
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200266 eb = eb32_first(&tt->timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200267 if (likely(!eb))
268 break;
269 }
270
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200271 /* It is possible that this task was left at an earlier place in the
272 * tree because a recent call to task_queue() has not moved it. This
273 * happens when the new expiration date is later than the old one.
274 * Since it is very unlikely that we reach a timeout anyway, it's a
275 * lot cheaper to proceed like this because we almost never update
276 * the tree. We may also find disabled expiration dates there. Since
277 * we have detached the task from the tree, we simply call task_queue
278 * to take care of this. Note that we might occasionally requeue it at
279 * the same place, before <eb>, so we have to check if this happens,
280 * and adjust <eb>, otherwise we may skip it which is not what we want.
281 * We may also not requeue the task (and not point eb at it) if its
Willy Tarreau77015ab2020-06-19 11:50:27 +0200282 * expiration time is not set. We also make sure we leave the real
283 * expiration date for the next task in the queue so that when calling
284 * next_timer_expiry() we're guaranteed to see the next real date and
285 * not the next apparent date. This is in order to avoid useless
286 * wakeups.
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200287 */
Willy Tarreau77015ab2020-06-19 11:50:27 +0200288
289 task = eb32_entry(eb, struct task, wq);
290 if (tick_is_expired(task->expire, now_ms)) {
291 /* expired task, wake it up */
292 __task_unlink_wq(task);
293 task_wakeup(task, TASK_WOKEN_TIMER);
294 }
295 else if (task->expire != eb->key) {
296 /* task is not expired but its key doesn't match so let's
297 * update it and skip to next apparently expired task.
298 */
299 __task_unlink_wq(task);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200300 if (tick_isset(task->expire))
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200301 __task_queue(task, &tt->timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200302 }
Willy Tarreau77015ab2020-06-19 11:50:27 +0200303 else {
304 /* task not expired and correctly placed */
305 break;
306 }
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200307 }
308
309#ifdef USE_THREAD
Willy Tarreau1e928c02019-05-28 18:57:25 +0200310 if (eb_is_empty(&timers))
311 goto leave;
312
313 HA_RWLOCK_RDLOCK(TASK_WQ_LOCK, &wq_lock);
314 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
315 if (!eb) {
316 eb = eb32_first(&timers);
317 if (likely(!eb)) {
318 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
319 goto leave;
320 }
321 }
322 key = eb->key;
Willy Tarreau1e928c02019-05-28 18:57:25 +0200323
Willy Tarreaud48ed662020-10-16 09:31:41 +0200324 if (tick_is_lt(now_ms, key)) {
325 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau1e928c02019-05-28 18:57:25 +0200326 goto leave;
Willy Tarreaud48ed662020-10-16 09:31:41 +0200327 }
Willy Tarreau1e928c02019-05-28 18:57:25 +0200328
329 /* There's really something of interest here, let's visit the queue */
330
Willy Tarreaud48ed662020-10-16 09:31:41 +0200331 if (HA_RWLOCK_TRYRDTOSK(TASK_WQ_LOCK, &wq_lock)) {
332 /* if we failed to grab the lock it means another thread is
333 * already doing the same here, so let it do the job.
334 */
335 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
336 goto leave;
337 }
338
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200339 while (1) {
Emeric Brunc60def82017-09-27 14:59:38 +0200340 lookup_next:
Willy Tarreau3cfaa8d2020-10-16 09:26:22 +0200341 if (max_processed-- <= 0)
342 break;
Emeric Brun01948972017-03-30 15:37:25 +0200343 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
Emeric Brunc60def82017-09-27 14:59:38 +0200344 if (!eb) {
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100345 /* we might have reached the end of the tree, typically because
346 * <now_ms> is in the first half and we're first scanning the last
347 * half. Let's loop back to the beginning of the tree now.
348 */
349 eb = eb32_first(&timers);
Willy Tarreaub992ba12017-11-05 19:09:27 +0100350 if (likely(!eb))
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100351 break;
352 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200353
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100354 task = eb32_entry(eb, struct task, wq);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200355 if (tick_is_expired(task->expire, now_ms)) {
356 /* expired task, wake it up */
Willy Tarreaud48ed662020-10-16 09:31:41 +0200357 HA_RWLOCK_SKTOWR(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200358 __task_unlink_wq(task);
Willy Tarreaud48ed662020-10-16 09:31:41 +0200359 HA_RWLOCK_WRTOSK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200360 task_wakeup(task, TASK_WOKEN_TIMER);
361 }
362 else if (task->expire != eb->key) {
363 /* task is not expired but its key doesn't match so let's
364 * update it and skip to next apparently expired task.
365 */
Willy Tarreaud48ed662020-10-16 09:31:41 +0200366 HA_RWLOCK_SKTOWR(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200367 __task_unlink_wq(task);
Willy Tarreaub992ba12017-11-05 19:09:27 +0100368 if (tick_isset(task->expire))
Willy Tarreau783afbe2020-07-22 14:12:45 +0200369 __task_queue(task, &timers);
Willy Tarreaud48ed662020-10-16 09:31:41 +0200370 HA_RWLOCK_WRTOSK(TASK_WQ_LOCK, &wq_lock);
Emeric Brunc60def82017-09-27 14:59:38 +0200371 goto lookup_next;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200372 }
Willy Tarreau77015ab2020-06-19 11:50:27 +0200373 else {
374 /* task not expired and correctly placed */
375 break;
376 }
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100377 }
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200378
Willy Tarreaud48ed662020-10-16 09:31:41 +0200379 HA_RWLOCK_SKUNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200380#endif
Willy Tarreau1e928c02019-05-28 18:57:25 +0200381leave:
Willy Tarreauc49ba522019-12-11 08:12:23 +0100382 return;
383}
384
385/* Checks the next timer for the current thread by looking into its own timer
386 * list and the global one. It may return TICK_ETERNITY if no timer is present.
Ilya Shipitsin856aabc2020-04-16 23:51:34 +0500387 * Note that the next timer might very well be slightly in the past.
Willy Tarreauc49ba522019-12-11 08:12:23 +0100388 */
389int next_timer_expiry()
390{
391 struct task_per_thread * const tt = sched; // thread's tasks
392 struct eb32_node *eb;
393 int ret = TICK_ETERNITY;
Willy Tarreau6ce02322020-08-21 05:48:34 +0200394 __decl_thread(int key = TICK_ETERNITY);
Willy Tarreauc49ba522019-12-11 08:12:23 +0100395
396 /* first check in the thread-local timers */
397 eb = eb32_lookup_ge(&tt->timers, now_ms - TIMER_LOOK_BACK);
398 if (!eb) {
399 /* we might have reached the end of the tree, typically because
400 * <now_ms> is in the first half and we're first scanning the last
401 * half. Let's loop back to the beginning of the tree now.
402 */
403 eb = eb32_first(&tt->timers);
404 }
405
406 if (eb)
407 ret = eb->key;
408
409#ifdef USE_THREAD
410 if (!eb_is_empty(&timers)) {
411 HA_RWLOCK_RDLOCK(TASK_WQ_LOCK, &wq_lock);
412 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
413 if (!eb)
414 eb = eb32_first(&timers);
415 if (eb)
416 key = eb->key;
417 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
418 if (eb)
419 ret = tick_first(ret, key);
420 }
421#endif
Willy Tarreaub992ba12017-11-05 19:09:27 +0100422 return ret;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200423}
424
Willy Tarreau59153fe2020-06-24 10:17:29 +0200425/* Walks over tasklet lists sched->tasklets[0..TL_CLASSES-1] and run at most
426 * budget[TL_*] of them. Returns the number of entries effectively processed
427 * (tasks and tasklets merged). The count of tasks in the list for the current
428 * thread is adjusted.
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100429 */
Willy Tarreau59153fe2020-06-24 10:17:29 +0200430unsigned int run_tasks_from_lists(unsigned int budgets[])
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100431{
432 struct task *(*process)(struct task *t, void *ctx, unsigned short state);
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200433 struct list *tl_queues = sched->tasklets;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100434 struct task *t;
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200435 uint8_t budget_mask = (1 << TL_CLASSES) - 1;
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100436 struct sched_activity *profile_entry = NULL;
Willy Tarreau59153fe2020-06-24 10:17:29 +0200437 unsigned int done = 0;
438 unsigned int queue;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100439 unsigned short state;
Willy Tarreau74dea8c2021-02-26 00:25:51 +0100440 char heavy_calls = 0;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100441 void *ctx;
Willy Tarreau59153fe2020-06-24 10:17:29 +0200442
443 for (queue = 0; queue < TL_CLASSES;) {
444 sched->current_queue = queue;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100445
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200446 /* global.tune.sched.low-latency is set */
447 if (global.tune.options & GTUNE_SCHED_LOW_LATENCY) {
448 if (unlikely(sched->tl_class_mask & budget_mask & ((1 << queue) - 1))) {
449 /* a lower queue index has tasks again and still has a
450 * budget to run them. Let's switch to it now.
451 */
452 queue = (sched->tl_class_mask & 1) ? 0 :
453 (sched->tl_class_mask & 2) ? 1 : 2;
454 continue;
455 }
456
457 if (unlikely(queue > TL_URGENT &&
458 budget_mask & (1 << TL_URGENT) &&
459 !MT_LIST_ISEMPTY(&sched->shared_tasklet_list))) {
460 /* an urgent tasklet arrived from another thread */
461 break;
462 }
463
464 if (unlikely(queue > TL_NORMAL &&
465 budget_mask & (1 << TL_NORMAL) &&
Willy Tarreau2c41d772021-02-24 16:13:03 +0100466 (!eb_is_empty(&sched->rqueue) ||
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200467 (global_tasks_mask & tid_bit)))) {
468 /* a task was woken up by a bulk tasklet or another thread */
469 break;
470 }
471 }
472
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200473 if (LIST_ISEMPTY(&tl_queues[queue])) {
474 sched->tl_class_mask &= ~(1 << queue);
Willy Tarreau59153fe2020-06-24 10:17:29 +0200475 queue++;
476 continue;
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200477 }
478
Willy Tarreau59153fe2020-06-24 10:17:29 +0200479 if (!budgets[queue]) {
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200480 budget_mask &= ~(1 << queue);
Willy Tarreau59153fe2020-06-24 10:17:29 +0200481 queue++;
482 continue;
483 }
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200484
Willy Tarreau59153fe2020-06-24 10:17:29 +0200485 budgets[queue]--;
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200486 t = (struct task *)LIST_ELEM(tl_queues[queue].n, struct tasklet *, list);
Willy Tarreau74dea8c2021-02-26 00:25:51 +0100487 state = t->state & (TASK_SHARED_WQ|TASK_SELF_WAKING|TASK_HEAVY|TASK_KILLED);
488
489 if (state & TASK_HEAVY) {
490 /* This is a heavy task. We'll call no more than one
491 * per function call. If we called one already, we'll
492 * return and announce the max possible weight so that
493 * the caller doesn't come back too soon.
494 */
495 if (heavy_calls) {
496 done = INT_MAX; // 11ms instead of 3 without this
497 break; // too many heavy tasks processed already
498 }
499 heavy_calls = 1;
500 }
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100501
502 ti->flags &= ~TI_FL_STUCK; // this thread is still running
503 activity[tid].ctxsw++;
504 ctx = t->context;
505 process = t->process;
506 t->calls++;
Willy Tarreaud23d4132020-01-31 10:39:03 +0100507 sched->current = t;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100508
Willy Tarreau9c7b8082021-02-24 15:10:07 +0100509 _HA_ATOMIC_SUB(&sched->rq_total, 1);
Willy Tarreau2da4c312020-11-30 14:52:11 +0100510
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100511 if (TASK_IS_TASKLET(t)) {
Willy Tarreau2a54ffb2021-02-25 09:32:58 +0100512 uint64_t before = 0;
513
Willy Tarreau4d6c5942020-11-30 14:58:53 +0100514 LIST_DEL_INIT(&((struct tasklet *)t)->list);
515 __ha_barrier_store();
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100516
517 if (unlikely(task_profiling_mask & tid_bit)) {
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100518 profile_entry = sched_activity_entry(sched_activity, t->process);
519 before = now_mono_time();
Willy Tarreaub2285de2021-02-25 08:39:07 +0100520#ifdef DEBUG_TASK
Willy Tarreau2a54ffb2021-02-25 09:32:58 +0100521 if (((struct tasklet *)t)->call_date) {
522 HA_ATOMIC_ADD(&profile_entry->lat_time, before - ((struct tasklet *)t)->call_date);
523 ((struct tasklet *)t)->call_date = 0;
524 }
Willy Tarreaub2285de2021-02-25 08:39:07 +0100525#endif
Willy Tarreau2a54ffb2021-02-25 09:32:58 +0100526 }
527
528 state = _HA_ATOMIC_XCHG(&t->state, state);
529 __ha_barrier_atomic_store();
530
531 process(t, ctx, state);
532
533 if (unlikely(task_profiling_mask & tid_bit)) {
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100534 HA_ATOMIC_ADD(&profile_entry->calls, 1);
535 HA_ATOMIC_ADD(&profile_entry->cpu_time, now_mono_time() - before);
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100536 }
Willy Tarreau2a54ffb2021-02-25 09:32:58 +0100537
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100538 done++;
Willy Tarreaud23d4132020-01-31 10:39:03 +0100539 sched->current = NULL;
540 __ha_barrier_store();
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100541 continue;
542 }
543
Willy Tarreau4d6c5942020-11-30 14:58:53 +0100544 LIST_DEL_INIT(&((struct tasklet *)t)->list);
545 __ha_barrier_store();
Willy Tarreau952c2642020-01-31 16:39:30 +0100546 state = _HA_ATOMIC_XCHG(&t->state, state | TASK_RUNNING);
547 __ha_barrier_atomic_store();
Willy Tarreau952c2642020-01-31 16:39:30 +0100548
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100549 /* OK then this is a regular task */
550
Willy Tarreau1f3b1412021-02-24 14:13:40 +0100551 _HA_ATOMIC_SUB(&task_per_thread[tid].tasks_in_list, 1);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100552 if (unlikely(t->call_date)) {
553 uint64_t now_ns = now_mono_time();
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100554 uint64_t lat = now_ns - t->call_date;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100555
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100556 t->lat_time += lat;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100557 t->call_date = now_ns;
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100558 profile_entry = sched_activity_entry(sched_activity, t->process);
559 HA_ATOMIC_ADD(&profile_entry->lat_time, lat);
560 HA_ATOMIC_ADD(&profile_entry->calls, 1);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100561 }
562
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100563 __ha_barrier_store();
Willy Tarreau8a6049c2020-06-30 11:48:48 +0200564
565 /* Note for below: if TASK_KILLED arrived before we've read the state, we
566 * directly free the task. Otherwise it will be seen after processing and
567 * it's freed on the exit path.
568 */
569 if (likely(!(state & TASK_KILLED) && process == process_stream))
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100570 t = process_stream(t, ctx, state);
Willy Tarreau8a6049c2020-06-30 11:48:48 +0200571 else if (!(state & TASK_KILLED) && process != NULL)
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100572 t = process(t, ctx, state);
573 else {
Willy Tarreau273aea42020-07-17 14:37:51 +0200574 task_unlink_wq(t);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100575 __task_free(t);
576 sched->current = NULL;
577 __ha_barrier_store();
578 /* We don't want max_processed to be decremented if
579 * we're just freeing a destroyed task, we should only
580 * do so if we really ran a task.
581 */
582 continue;
583 }
584 sched->current = NULL;
585 __ha_barrier_store();
586 /* If there is a pending state we have to wake up the task
587 * immediately, else we defer it into wait queue
588 */
589 if (t != NULL) {
590 if (unlikely(t->call_date)) {
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100591 uint64_t cpu = now_mono_time() - t->call_date;
592
593 t->cpu_time += cpu;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100594 t->call_date = 0;
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100595 HA_ATOMIC_ADD(&profile_entry->cpu_time, cpu);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100596 }
597
598 state = _HA_ATOMIC_AND(&t->state, ~TASK_RUNNING);
Willy Tarreau8a6049c2020-06-30 11:48:48 +0200599 if (unlikely(state & TASK_KILLED)) {
Willy Tarreau273aea42020-07-17 14:37:51 +0200600 task_unlink_wq(t);
Willy Tarreau8a6049c2020-06-30 11:48:48 +0200601 __task_free(t);
602 }
603 else if (state & TASK_WOKEN_ANY)
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100604 task_wakeup(t, 0);
605 else
606 task_queue(t);
607 }
608 done++;
609 }
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200610 sched->current_queue = -1;
Willy Tarreau116ef222020-06-23 16:35:38 +0200611
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100612 return done;
613}
614
Willy Tarreau58b458d2008-06-29 22:40:23 +0200615/* The run queue is chronologically sorted in a tree. An insertion counter is
616 * used to assign a position to each task. This counter may be combined with
617 * other variables (eg: nice value) to set the final position in the tree. The
618 * counter may wrap without a problem, of course. We then limit the number of
Christopher Faulet8a48f672017-11-14 10:38:36 +0100619 * tasks processed to 200 in any case, so that general latency remains low and
Willy Tarreaucde79022019-04-12 18:03:41 +0200620 * so that task positions have a chance to be considered. The function scans
621 * both the global and local run queues and picks the most urgent task between
622 * the two. We need to grab the global runqueue lock to touch it so it's taken
623 * on the very first access to the global run queue and is released as soon as
624 * it reaches the end.
Willy Tarreau58b458d2008-06-29 22:40:23 +0200625 *
626 * The function adjusts <next> if a new event is closer.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200627 */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100628void process_runnable_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200629{
Willy Tarreaud022e9c2019-09-24 08:25:15 +0200630 struct task_per_thread * const tt = sched;
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200631 struct eb32sc_node *lrq; // next local run queue entry
632 struct eb32sc_node *grq; // next global run queue entry
Willy Tarreau964c9362007-01-07 00:38:00 +0100633 struct task *t;
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200634 const unsigned int default_weights[TL_CLASSES] = {
635 [TL_URGENT] = 64, // ~50% of CPU bandwidth for I/O
636 [TL_NORMAL] = 48, // ~37% of CPU bandwidth for tasks
637 [TL_BULK] = 16, // ~13% of CPU bandwidth for self-wakers
Willy Tarreau401135c2021-02-26 09:16:22 +0100638 [TL_HEAVY] = 1, // never more than 1 heavy task at once
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200639 };
640 unsigned int max[TL_CLASSES]; // max to be run per class
641 unsigned int max_total; // sum of max above
Olivier Houchard06910462019-10-11 16:35:01 +0200642 struct mt_list *tmp_list;
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200643 unsigned int queue;
644 int max_processed;
Willy Tarreaue7923c12021-02-25 07:09:08 +0100645 int lpicked, gpicked;
Willy Tarreauc309dbd2020-11-30 15:39:00 +0100646 int budget;
Christopher Faulet3911ee82017-11-14 10:26:53 +0100647
Willy Tarreaue6a02fa2019-05-22 07:06:44 +0200648 ti->flags &= ~TI_FL_STUCK; // this thread is still running
649
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200650 if (!thread_has_tasks()) {
651 activity[tid].empty_rq++;
652 return;
653 }
654
Willy Tarreau5c8be272020-06-19 12:17:55 +0200655 max_processed = global.tune.runqueue_depth;
656
657 if (likely(niced_tasks))
658 max_processed = (max_processed + 3) / 4;
659
Willy Tarreau5c8be272020-06-19 12:17:55 +0200660 not_done_yet:
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200661 max[TL_URGENT] = max[TL_NORMAL] = max[TL_BULK] = 0;
Willy Tarreaucde79022019-04-12 18:03:41 +0200662
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200663 /* urgent tasklets list gets a default weight of ~50% */
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200664 if ((tt->tl_class_mask & (1 << TL_URGENT)) ||
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200665 !MT_LIST_ISEMPTY(&tt->shared_tasklet_list))
666 max[TL_URGENT] = default_weights[TL_URGENT];
Willy Tarreaua62917b2020-01-30 18:37:28 +0100667
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200668 /* normal tasklets list gets a default weight of ~37% */
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200669 if ((tt->tl_class_mask & (1 << TL_NORMAL)) ||
Willy Tarreau2c41d772021-02-24 16:13:03 +0100670 !eb_is_empty(&sched->rqueue) || (global_tasks_mask & tid_bit))
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200671 max[TL_NORMAL] = default_weights[TL_NORMAL];
Willy Tarreaua62917b2020-01-30 18:37:28 +0100672
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200673 /* bulk tasklets list gets a default weight of ~13% */
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200674 if ((tt->tl_class_mask & (1 << TL_BULK)))
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200675 max[TL_BULK] = default_weights[TL_BULK];
676
Willy Tarreau401135c2021-02-26 09:16:22 +0100677 /* heavy tasks are processed only once and never refilled in a
678 * call round.
679 */
680 if ((tt->tl_class_mask & (1 << TL_HEAVY)))
681 max[TL_HEAVY] = default_weights[TL_HEAVY];
682 else
683 max[TL_HEAVY] = 0;
684
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200685 /* Now compute a fair share of the weights. Total may slightly exceed
Willy Tarreau1553b662020-06-30 13:46:21 +0200686 * 100% due to rounding, this is not a problem. Note that while in
687 * theory the sum cannot be NULL as we cannot get there without tasklets
688 * to process, in practice it seldom happens when multiple writers
Willy Tarreaude4db172020-07-10 08:10:29 +0200689 * conflict and rollback on MT_LIST_TRY_ADDQ(shared_tasklet_list), causing
Willy Tarreau1553b662020-06-30 13:46:21 +0200690 * a first MT_LIST_ISEMPTY() to succeed for thread_has_task() and the
691 * one above to finally fail. This is extremely rare and not a problem.
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200692 */
Willy Tarreau401135c2021-02-26 09:16:22 +0100693 max_total = max[TL_URGENT] + max[TL_NORMAL] + max[TL_BULK] + max[TL_HEAVY];
Willy Tarreau1553b662020-06-30 13:46:21 +0200694 if (!max_total)
695 return;
696
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200697 for (queue = 0; queue < TL_CLASSES; queue++)
698 max[queue] = ((unsigned)max_processed * max[queue] + max_total - 1) / max_total;
699
700 lrq = grq = NULL;
Christopher Faulet8a48f672017-11-14 10:38:36 +0100701
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200702 /* pick up to max[TL_NORMAL] regular tasks from prio-ordered run queues */
703 /* Note: the grq lock is always held when grq is not null */
Willy Tarreaue7923c12021-02-25 07:09:08 +0100704 lpicked = gpicked = 0;
Willy Tarreau1f3b1412021-02-24 14:13:40 +0100705 budget = max[TL_NORMAL] - tt->tasks_in_list;
Willy Tarreaue7923c12021-02-25 07:09:08 +0100706 while (lpicked + gpicked < budget) {
Willy Tarreaucde79022019-04-12 18:03:41 +0200707 if ((global_tasks_mask & tid_bit) && !grq) {
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200708#ifdef USE_THREAD
Willy Tarreaucde79022019-04-12 18:03:41 +0200709 HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreauc6ba9a02021-02-20 12:49:54 +0100710 grq = eb32sc_lookup_ge(&rqueue, global_rqueue_ticks - TIMER_LOOK_BACK, tid_bit);
Willy Tarreaucde79022019-04-12 18:03:41 +0200711 if (unlikely(!grq)) {
712 grq = eb32sc_first(&rqueue, tid_bit);
713 if (!grq) {
Olivier Houchardde82aea2019-04-17 19:10:22 +0200714 global_tasks_mask &= ~tid_bit;
Willy Tarreaucde79022019-04-12 18:03:41 +0200715 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Olivier Houchardc4aac9e2018-07-26 15:25:49 +0200716 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100717 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200718#endif
Willy Tarreaucde79022019-04-12 18:03:41 +0200719 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100720
Willy Tarreaucde79022019-04-12 18:03:41 +0200721 /* If a global task is available for this thread, it's in grq
722 * now and the global RQ is locked.
723 */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200724
Willy Tarreaucde79022019-04-12 18:03:41 +0200725 if (!lrq) {
Willy Tarreauc6ba9a02021-02-20 12:49:54 +0100726 lrq = eb32sc_lookup_ge(&tt->rqueue, tt->rqueue_ticks - TIMER_LOOK_BACK, tid_bit);
Willy Tarreaucde79022019-04-12 18:03:41 +0200727 if (unlikely(!lrq))
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200728 lrq = eb32sc_first(&tt->rqueue, tid_bit);
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100729 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100730
Willy Tarreaucde79022019-04-12 18:03:41 +0200731 if (!lrq && !grq)
732 break;
733
734 if (likely(!grq || (lrq && (int)(lrq->key - grq->key) <= 0))) {
735 t = eb32sc_entry(lrq, struct task, rq);
736 lrq = eb32sc_next(lrq, tid_bit);
Willy Tarreau2b363ac2021-02-25 07:14:58 +0100737 eb32sc_delete(&t->rq);
Willy Tarreaue7923c12021-02-25 07:09:08 +0100738 lpicked++;
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200739 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200740#ifdef USE_THREAD
Willy Tarreaucde79022019-04-12 18:03:41 +0200741 else {
742 t = eb32sc_entry(grq, struct task, rq);
743 grq = eb32sc_next(grq, tid_bit);
Willy Tarreau2b363ac2021-02-25 07:14:58 +0100744 _HA_ATOMIC_AND(&t->state, ~TASK_GLOBAL);
745 eb32sc_delete(&t->rq);
746
Willy Tarreaucde79022019-04-12 18:03:41 +0200747 if (unlikely(!grq)) {
748 grq = eb32sc_first(&rqueue, tid_bit);
749 if (!grq) {
Olivier Houchardde82aea2019-04-17 19:10:22 +0200750 global_tasks_mask &= ~tid_bit;
Willy Tarreaucde79022019-04-12 18:03:41 +0200751 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreaucde79022019-04-12 18:03:41 +0200752 }
753 }
Willy Tarreaue7923c12021-02-25 07:09:08 +0100754 gpicked++;
Emeric Brun01948972017-03-30 15:37:25 +0200755 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200756#endif
Willy Tarreau2b363ac2021-02-25 07:14:58 +0100757 if (t->nice)
758 _HA_ATOMIC_SUB(&niced_tasks, 1);
Willy Tarreaucde79022019-04-12 18:03:41 +0200759
Willy Tarreaua868c292020-11-30 15:30:22 +0100760 /* Add it to the local task list */
761 LIST_ADDQ(&tt->tasklets[TL_NORMAL], &((struct tasklet *)t)->list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200762 }
Willy Tarreaucde79022019-04-12 18:03:41 +0200763
764 /* release the rqueue lock */
765 if (grq) {
766 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
767 grq = NULL;
768 }
769
Willy Tarreaue7923c12021-02-25 07:09:08 +0100770 if (lpicked + gpicked) {
Willy Tarreauc309dbd2020-11-30 15:39:00 +0100771 tt->tl_class_mask |= 1 << TL_NORMAL;
Willy Tarreaue7923c12021-02-25 07:09:08 +0100772 _HA_ATOMIC_ADD(&tt->tasks_in_list, lpicked + gpicked);
Willy Tarreau45499c52021-02-25 07:51:18 +0100773 if (gpicked) {
774 _HA_ATOMIC_SUB(&grq_total, gpicked);
Willy Tarreauc9afbb12021-02-25 07:19:45 +0100775 _HA_ATOMIC_ADD(&tt->rq_total, gpicked);
Willy Tarreau45499c52021-02-25 07:51:18 +0100776 }
Willy Tarreaue7923c12021-02-25 07:09:08 +0100777 activity[tid].tasksw += lpicked + gpicked;
Willy Tarreauc309dbd2020-11-30 15:39:00 +0100778 }
779
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200780 /* Merge the list of tasklets waken up by other threads to the
781 * main list.
782 */
783 tmp_list = MT_LIST_BEHEAD(&tt->shared_tasklet_list);
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200784 if (tmp_list) {
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200785 LIST_SPLICE_END_DETACHED(&tt->tasklets[TL_URGENT], (struct list *)tmp_list);
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200786 if (!LIST_ISEMPTY(&tt->tasklets[TL_URGENT]))
787 tt->tl_class_mask |= 1 << TL_URGENT;
788 }
Willy Tarreaucde79022019-04-12 18:03:41 +0200789
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200790 /* execute tasklets in each queue */
Willy Tarreau59153fe2020-06-24 10:17:29 +0200791 max_processed -= run_tasks_from_lists(max);
Willy Tarreaua62917b2020-01-30 18:37:28 +0100792
Willy Tarreau5c8be272020-06-19 12:17:55 +0200793 /* some tasks may have woken other ones up */
Willy Tarreau0c0c85e2020-06-23 11:32:35 +0200794 if (max_processed > 0 && thread_has_tasks())
Willy Tarreau5c8be272020-06-19 12:17:55 +0200795 goto not_done_yet;
796
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200797 if (tt->tl_class_mask)
Willy Tarreaucde79022019-04-12 18:03:41 +0200798 activity[tid].long_rq++;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200799}
800
Willy Tarreau64e60122019-07-12 08:31:17 +0200801/* create a work list array for <nbthread> threads, using tasks made of
802 * function <fct>. The context passed to the function will be the pointer to
803 * the thread's work list, which will contain a copy of argument <arg>. The
804 * wake up reason will be TASK_WOKEN_OTHER. The pointer to the work_list array
805 * is returned on success, otherwise NULL on failure.
806 */
807struct work_list *work_list_create(int nbthread,
808 struct task *(*fct)(struct task *, void *, unsigned short),
809 void *arg)
810{
811 struct work_list *wl;
812 int i;
813
814 wl = calloc(nbthread, sizeof(*wl));
815 if (!wl)
816 goto fail;
817
818 for (i = 0; i < nbthread; i++) {
Olivier Houchard859dc802019-08-08 15:47:21 +0200819 MT_LIST_INIT(&wl[i].head);
Willy Tarreau64e60122019-07-12 08:31:17 +0200820 wl[i].task = task_new(1UL << i);
821 if (!wl[i].task)
822 goto fail;
823 wl[i].task->process = fct;
824 wl[i].task->context = &wl[i];
825 wl[i].arg = arg;
826 }
827 return wl;
828
829 fail:
830 work_list_destroy(wl, nbthread);
831 return NULL;
832}
833
834/* destroy work list <work> */
835void work_list_destroy(struct work_list *work, int nbthread)
836{
837 int t;
838
839 if (!work)
840 return;
841 for (t = 0; t < nbthread; t++)
842 task_destroy(work[t].task);
843 free(work);
844}
845
William Lallemand27f3fa52018-12-06 14:05:20 +0100846/*
847 * Delete every tasks before running the master polling loop
848 */
849void mworker_cleantasks()
850{
851 struct task *t;
852 int i;
William Lallemandb5823392018-12-06 15:14:37 +0100853 struct eb32_node *tmp_wq = NULL;
854 struct eb32sc_node *tmp_rq = NULL;
William Lallemand27f3fa52018-12-06 14:05:20 +0100855
856#ifdef USE_THREAD
857 /* cleanup the global run queue */
William Lallemandb5823392018-12-06 15:14:37 +0100858 tmp_rq = eb32sc_first(&rqueue, MAX_THREADS_MASK);
859 while (tmp_rq) {
860 t = eb32sc_entry(tmp_rq, struct task, rq);
861 tmp_rq = eb32sc_next(tmp_rq, MAX_THREADS_MASK);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200862 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100863 }
864 /* cleanup the timers queue */
William Lallemandb5823392018-12-06 15:14:37 +0100865 tmp_wq = eb32_first(&timers);
866 while (tmp_wq) {
867 t = eb32_entry(tmp_wq, struct task, wq);
868 tmp_wq = eb32_next(tmp_wq);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200869 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100870 }
871#endif
872 /* clean the per thread run queue */
873 for (i = 0; i < global.nbthread; i++) {
William Lallemandb5823392018-12-06 15:14:37 +0100874 tmp_rq = eb32sc_first(&task_per_thread[i].rqueue, MAX_THREADS_MASK);
875 while (tmp_rq) {
876 t = eb32sc_entry(tmp_rq, struct task, rq);
877 tmp_rq = eb32sc_next(tmp_rq, MAX_THREADS_MASK);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200878 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100879 }
880 /* cleanup the per thread timers queue */
William Lallemandb5823392018-12-06 15:14:37 +0100881 tmp_wq = eb32_first(&task_per_thread[i].timers);
882 while (tmp_wq) {
883 t = eb32_entry(tmp_wq, struct task, wq);
884 tmp_wq = eb32_next(tmp_wq);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200885 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100886 }
887 }
888}
889
Willy Tarreaub6b3df32018-11-26 16:31:20 +0100890/* perform minimal intializations */
891static void init_task()
Willy Tarreau4726f532009-03-07 17:25:21 +0100892{
Willy Tarreau401135c2021-02-26 09:16:22 +0100893 int i, q;
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200894
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200895#ifdef USE_THREAD
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200896 memset(&timers, 0, sizeof(timers));
Willy Tarreau4726f532009-03-07 17:25:21 +0100897 memset(&rqueue, 0, sizeof(rqueue));
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200898#endif
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200899 memset(&task_per_thread, 0, sizeof(task_per_thread));
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200900 for (i = 0; i < MAX_THREADS; i++) {
Willy Tarreau401135c2021-02-26 09:16:22 +0100901 for (q = 0; q < TL_CLASSES; q++)
902 LIST_INIT(&task_per_thread[i].tasklets[q]);
Olivier Houchard06910462019-10-11 16:35:01 +0200903 MT_LIST_INIT(&task_per_thread[i].shared_tasklet_list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200904 }
Willy Tarreau4726f532009-03-07 17:25:21 +0100905}
906
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200907/* config parser for global "tune.sched.low-latency", accepts "on" or "off" */
908static int cfg_parse_tune_sched_low_latency(char **args, int section_type, struct proxy *curpx,
909 struct proxy *defpx, const char *file, int line,
910 char **err)
911{
912 if (too_many_args(1, args, err, NULL))
913 return -1;
914
915 if (strcmp(args[1], "on") == 0)
916 global.tune.options |= GTUNE_SCHED_LOW_LATENCY;
917 else if (strcmp(args[1], "off") == 0)
918 global.tune.options &= ~GTUNE_SCHED_LOW_LATENCY;
919 else {
920 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
921 return -1;
922 }
923 return 0;
924}
925
926/* config keyword parsers */
927static struct cfg_kw_list cfg_kws = {ILH, {
928 { CFG_GLOBAL, "tune.sched.low-latency", cfg_parse_tune_sched_low_latency },
929 { 0, NULL, NULL }
930}};
931
932INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreaub6b3df32018-11-26 16:31:20 +0100933INITCALL0(STG_PREPARE, init_task);
934
Willy Tarreaubaaee002006-06-26 02:48:02 +0200935/*
936 * Local variables:
937 * c-indent-level: 8
938 * c-basic-offset: 8
939 * End:
940 */