blob: 1d1e63c20cea5402392a60531fa82a0fba8779a5 [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
Willy Tarreaua4613182009-03-21 18:13:21 +010038unsigned int nb_tasks = 0;
Olivier Houchardeba0c0b2018-07-26 18:53:28 +020039volatile unsigned long global_tasks_mask = 0; /* Mask of threads with tasks in the global runqueue */
Willy Tarreauc7bdf092009-03-21 18:33:52 +010040unsigned int nb_tasks_cur = 0; /* copy of the tasks count */
Willy Tarreaue35c94a2009-03-21 10:01:42 +010041unsigned int niced_tasks = 0; /* number of niced tasks in the run queue */
Emeric Brun01948972017-03-30 15:37:25 +020042
Willy Tarreaud022e9c2019-09-24 08:25:15 +020043THREAD_LOCAL struct task_per_thread *sched = &task_per_thread[0]; /* scheduler context for the current thread */
Willy Tarreau6d1222c2017-11-26 10:08:06 +010044
Willy Tarreau86abe442018-11-25 20:12:18 +010045__decl_aligned_spinlock(rq_lock); /* spin lock related to run queue */
Willy Tarreauef28dc12019-05-28 18:48:07 +020046__decl_aligned_rwlock(wq_lock); /* RW lock related to the wait queue */
Willy Tarreau964c9362007-01-07 00:38:00 +010047
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020048#ifdef USE_THREAD
Willy Tarreauc6ba9a02021-02-20 12:49:54 +010049struct eb_root timers; /* sorted timers tree, global, accessed under wq_lock */
50struct eb_root rqueue; /* tree constituting the global run queue, accessed under rq_lock */
Willy Tarreau9c7b8082021-02-24 15:10:07 +010051unsigned int grq_total; /* total number of entries in the global run queue, use grq_lock */
Willy Tarreauc6ba9a02021-02-20 12:49:54 +010052static unsigned int global_rqueue_ticks; /* insertion count in the grq, use rq_lock */
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020053#endif
Willy Tarreaub20aa9e2018-10-15 14:52:21 +020054
Willy Tarreau8d8747a2018-10-15 16:12:48 +020055
56struct task_per_thread task_per_thread[MAX_THREADS];
Willy Tarreau9789f7b2008-06-24 08:17:16 +020057
Willy Tarreaueb8c2c62020-06-30 11:48:48 +020058
59/* Flags the task <t> for immediate destruction and puts it into its first
60 * thread's shared tasklet list if not yet queued/running. This will bypass
61 * the priority scheduling and make the task show up as fast as possible in
62 * the other thread's queue. Note that this operation isn't idempotent and is
63 * not supposed to be run on the same task from multiple threads at once. It's
64 * the caller's responsibility to make sure it is the only one able to kill the
65 * task.
66 */
67void task_kill(struct task *t)
68{
69 unsigned short state = t->state;
70 unsigned int thr;
71
72 BUG_ON(state & TASK_KILLED);
73
74 while (1) {
75 while (state & (TASK_RUNNING | TASK_QUEUED)) {
76 /* task already in the queue and about to be executed,
77 * or even currently running. Just add the flag and be
78 * done with it, the process loop will detect it and kill
79 * it. The CAS will fail if we arrive too late.
80 */
81 if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_KILLED))
82 return;
83 }
84
85 /* We'll have to wake it up, but we must also secure it so that
86 * it doesn't vanish under us. TASK_QUEUED guarantees nobody will
87 * add past us.
88 */
89 if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_QUEUED | TASK_KILLED)) {
90 /* Bypass the tree and go directly into the shared tasklet list.
91 * Note: that's a task so it must be accounted for as such. Pick
92 * the task's first thread for the job.
93 */
94 thr = my_ffsl(t->thread_mask) - 1;
Willy Tarreau54d31172020-07-02 14:14:00 +020095
96 /* Beware: tasks that have never run don't have their ->list empty yet! */
Willy Tarreau950954f2020-07-10 08:32:10 +020097 MT_LIST_ADDQ(&task_per_thread[thr].shared_tasklet_list,
Willy Tarreau4f589262020-07-02 17:17:42 +020098 (struct mt_list *)&((struct tasklet *)t)->list);
Willy Tarreau9c7b8082021-02-24 15:10:07 +010099 _HA_ATOMIC_ADD(&task_per_thread[thr].rq_total, 1);
Willy Tarreau1f3b1412021-02-24 14:13:40 +0100100 _HA_ATOMIC_ADD(&task_per_thread[thr].tasks_in_list, 1);
Willy Tarreau54d31172020-07-02 14:14:00 +0200101 if (sleeping_thread_mask & (1UL << thr)) {
102 _HA_ATOMIC_AND(&sleeping_thread_mask, ~(1UL << thr));
103 wake_thread(thr);
Willy Tarreaueb8c2c62020-06-30 11:48:48 +0200104 }
Willy Tarreau54d31172020-07-02 14:14:00 +0200105 return;
Willy Tarreaueb8c2c62020-06-30 11:48:48 +0200106 }
107 }
108}
109
Willy Tarreau4726f532009-03-07 17:25:21 +0100110/* Puts the task <t> in run queue at a position depending on t->nice. <t> is
111 * returned. The nice value assigns boosts in 32th of the run queue size. A
Christopher Faulet34c5cc92016-12-06 09:15:30 +0100112 * nice value of -1024 sets the task to -tasks_run_queue*32, while a nice value
113 * of 1024 sets the task to tasks_run_queue*32. The state flags are cleared, so
114 * the caller will have to set its flags after this call.
Willy Tarreau4726f532009-03-07 17:25:21 +0100115 * The task must not already be in the run queue. If unsure, use the safer
116 * task_wakeup() function.
Willy Tarreau91e99932008-06-30 07:51:00 +0200117 */
Willy Tarreau018564e2021-02-24 16:41:11 +0100118void __task_wakeup(struct task *t)
Willy Tarreaue33aece2007-04-30 13:15:14 +0200119{
Willy Tarreau018564e2021-02-24 16:41:11 +0100120 struct eb_root *root = &sched->rqueue;
121
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200122#ifdef USE_THREAD
Willy Tarreau018564e2021-02-24 16:41:11 +0100123 if (t->thread_mask != tid_bit && global.nbthread != 1) {
124 root = &rqueue;
125
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200126 HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreau9c7b8082021-02-24 15:10:07 +0100127
Olivier Houchardde82aea2019-04-17 19:10:22 +0200128 global_tasks_mask |= t->thread_mask;
Willy Tarreau9c7b8082021-02-24 15:10:07 +0100129 grq_total++;
Willy Tarreauc6ba9a02021-02-20 12:49:54 +0100130 t->rq.key = ++global_rqueue_ticks;
Olivier Houcharded1a6a02019-04-18 14:12:51 +0200131 __ha_barrier_store();
Willy Tarreauc6ba9a02021-02-20 12:49:54 +0100132 } else
Olivier Houchardc4aac9e2018-07-26 15:25:49 +0200133#endif
Willy Tarreau9c7b8082021-02-24 15:10:07 +0100134 {
135 _HA_ATOMIC_ADD(&sched->rq_total, 1);
Willy Tarreauc6ba9a02021-02-20 12:49:54 +0100136 t->rq.key = ++sched->rqueue_ticks;
Willy Tarreau9c7b8082021-02-24 15:10:07 +0100137 }
Willy Tarreau91e99932008-06-30 07:51:00 +0200138
139 if (likely(t->nice)) {
140 int offset;
141
Olivier Houchard4c2832852019-03-08 18:48:47 +0100142 _HA_ATOMIC_ADD(&niced_tasks, 1);
Willy Tarreau2d1fd0a2019-04-15 09:18:31 +0200143 offset = t->nice * (int)global.tune.runqueue_depth;
Willy Tarreau4726f532009-03-07 17:25:21 +0100144 t->rq.key += offset;
Willy Tarreau91e99932008-06-30 07:51:00 +0200145 }
146
Willy Tarreaud9add3a2019-04-25 08:57:41 +0200147 if (task_profiling_mask & tid_bit)
Willy Tarreau9efd7452018-05-31 14:48:54 +0200148 t->call_date = now_mono_time();
149
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200150 eb32sc_insert(root, &t->rq, t->thread_mask);
Willy Tarreau018564e2021-02-24 16:41:11 +0100151
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200152#ifdef USE_THREAD
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200153 if (root == &rqueue) {
Olivier Houchard4c2832852019-03-08 18:48:47 +0100154 _HA_ATOMIC_OR(&t->state, TASK_GLOBAL);
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200155 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200156 }
Willy Tarreau2c41d772021-02-24 16:13:03 +0100157
Olivier Houchard79321b92018-07-26 17:55:11 +0200158 /* If all threads that are supposed to handle this task are sleeping,
159 * wake one.
160 */
161 if ((((t->thread_mask & all_threads_mask) & sleeping_thread_mask) ==
Olivier Houchard1b327902019-03-15 00:23:10 +0100162 (t->thread_mask & all_threads_mask))) {
163 unsigned long m = (t->thread_mask & all_threads_mask) &~ tid_bit;
164
165 m = (m & (m - 1)) ^ m; // keep lowest bit set
166 _HA_ATOMIC_AND(&sleeping_thread_mask, ~m);
167 wake_thread(my_ffsl(m) - 1);
168 }
Willy Tarreau85d9b842018-07-27 17:14:41 +0200169#endif
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200170 return;
Willy Tarreaue33aece2007-04-30 13:15:14 +0200171}
Willy Tarreaud825eef2007-05-12 22:35:00 +0200172
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200173/*
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100174 * __task_queue()
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200175 *
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200176 * Inserts a task into wait queue <wq> at the position given by its expiration
Willy Tarreau4726f532009-03-07 17:25:21 +0100177 * date. It does not matter if the task was already in the wait queue or not,
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100178 * as it will be unlinked. The task must not have an infinite expiration timer.
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100179 * Last, tasks must not be queued further than the end of the tree, which is
180 * between <now_ms> and <now_ms> + 2^31 ms (now+24days in 32bit).
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100181 *
182 * This function should not be used directly, it is meant to be called by the
183 * inline version of task_queue() which performs a few cheap preliminary tests
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200184 * before deciding to call __task_queue(). Moreover this function doesn't care
185 * at all about locking so the caller must be careful when deciding whether to
186 * lock or not around this call.
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200187 */
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200188void __task_queue(struct task *task, struct eb_root *wq)
Willy Tarreau964c9362007-01-07 00:38:00 +0100189{
Willy Tarreaue5d79bc2020-07-22 14:29:42 +0200190#ifdef USE_THREAD
191 BUG_ON((wq == &timers && !(task->state & TASK_SHARED_WQ)) ||
192 (wq == &sched->timers && (task->state & TASK_SHARED_WQ)) ||
193 (wq != &timers && wq != &sched->timers));
194#endif
195
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100196 if (likely(task_in_wq(task)))
Willy Tarreau4726f532009-03-07 17:25:21 +0100197 __task_unlink_wq(task);
Willy Tarreau4726f532009-03-07 17:25:21 +0100198
199 /* the task is not in the queue now */
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100200 task->wq.key = task->expire;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200201#ifdef DEBUG_CHECK_INVALID_EXPIRATION_DATES
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100202 if (tick_is_lt(task->wq.key, now_ms))
Willy Tarreau28c41a42008-06-29 17:00:59 +0200203 /* we're queuing too far away or in the past (most likely) */
Willy Tarreau4726f532009-03-07 17:25:21 +0100204 return;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200205#endif
Willy Tarreauce44f122008-07-05 18:16:19 +0200206
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200207 eb32_insert(wq, &task->wq);
Willy Tarreau964c9362007-01-07 00:38:00 +0100208}
209
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200210/*
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200211 * Extract all expired timers from the timer queue, and wakes up all
Willy Tarreauc49ba522019-12-11 08:12:23 +0100212 * associated tasks.
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200213 */
Willy Tarreauc49ba522019-12-11 08:12:23 +0100214void wake_expired_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200215{
Willy Tarreaud022e9c2019-09-24 08:25:15 +0200216 struct task_per_thread * const tt = sched; // thread's tasks
Willy Tarreau3cfaa8d2020-10-16 09:26:22 +0200217 int max_processed = global.tune.runqueue_depth;
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200218 struct task *task;
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200219 struct eb32_node *eb;
Willy Tarreauaf613e82020-06-05 08:40:51 +0200220 __decl_thread(int key);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200221
Willy Tarreau3cfaa8d2020-10-16 09:26:22 +0200222 while (max_processed-- > 0) {
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200223 lookup_next_local:
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200224 eb = eb32_lookup_ge(&tt->timers, now_ms - TIMER_LOOK_BACK);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200225 if (!eb) {
226 /* we might have reached the end of the tree, typically because
227 * <now_ms> is in the first half and we're first scanning the last
228 * half. Let's loop back to the beginning of the tree now.
229 */
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200230 eb = eb32_first(&tt->timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200231 if (likely(!eb))
232 break;
233 }
234
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200235 /* It is possible that this task was left at an earlier place in the
236 * tree because a recent call to task_queue() has not moved it. This
237 * happens when the new expiration date is later than the old one.
238 * Since it is very unlikely that we reach a timeout anyway, it's a
239 * lot cheaper to proceed like this because we almost never update
240 * the tree. We may also find disabled expiration dates there. Since
241 * we have detached the task from the tree, we simply call task_queue
242 * to take care of this. Note that we might occasionally requeue it at
243 * the same place, before <eb>, so we have to check if this happens,
244 * and adjust <eb>, otherwise we may skip it which is not what we want.
245 * We may also not requeue the task (and not point eb at it) if its
Willy Tarreau77015ab2020-06-19 11:50:27 +0200246 * expiration time is not set. We also make sure we leave the real
247 * expiration date for the next task in the queue so that when calling
248 * next_timer_expiry() we're guaranteed to see the next real date and
249 * not the next apparent date. This is in order to avoid useless
250 * wakeups.
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200251 */
Willy Tarreau77015ab2020-06-19 11:50:27 +0200252
253 task = eb32_entry(eb, struct task, wq);
254 if (tick_is_expired(task->expire, now_ms)) {
255 /* expired task, wake it up */
256 __task_unlink_wq(task);
257 task_wakeup(task, TASK_WOKEN_TIMER);
258 }
259 else if (task->expire != eb->key) {
260 /* task is not expired but its key doesn't match so let's
261 * update it and skip to next apparently expired task.
262 */
263 __task_unlink_wq(task);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200264 if (tick_isset(task->expire))
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200265 __task_queue(task, &tt->timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200266 }
Willy Tarreau77015ab2020-06-19 11:50:27 +0200267 else {
268 /* task not expired and correctly placed */
269 break;
270 }
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200271 }
272
273#ifdef USE_THREAD
Willy Tarreau1e928c02019-05-28 18:57:25 +0200274 if (eb_is_empty(&timers))
275 goto leave;
276
277 HA_RWLOCK_RDLOCK(TASK_WQ_LOCK, &wq_lock);
278 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
279 if (!eb) {
280 eb = eb32_first(&timers);
281 if (likely(!eb)) {
282 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
283 goto leave;
284 }
285 }
286 key = eb->key;
Willy Tarreau1e928c02019-05-28 18:57:25 +0200287
Willy Tarreaud48ed662020-10-16 09:31:41 +0200288 if (tick_is_lt(now_ms, key)) {
289 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau1e928c02019-05-28 18:57:25 +0200290 goto leave;
Willy Tarreaud48ed662020-10-16 09:31:41 +0200291 }
Willy Tarreau1e928c02019-05-28 18:57:25 +0200292
293 /* There's really something of interest here, let's visit the queue */
294
Willy Tarreaud48ed662020-10-16 09:31:41 +0200295 if (HA_RWLOCK_TRYRDTOSK(TASK_WQ_LOCK, &wq_lock)) {
296 /* if we failed to grab the lock it means another thread is
297 * already doing the same here, so let it do the job.
298 */
299 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
300 goto leave;
301 }
302
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200303 while (1) {
Emeric Brunc60def82017-09-27 14:59:38 +0200304 lookup_next:
Willy Tarreau3cfaa8d2020-10-16 09:26:22 +0200305 if (max_processed-- <= 0)
306 break;
Emeric Brun01948972017-03-30 15:37:25 +0200307 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
Emeric Brunc60def82017-09-27 14:59:38 +0200308 if (!eb) {
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100309 /* we might have reached the end of the tree, typically because
310 * <now_ms> is in the first half and we're first scanning the last
311 * half. Let's loop back to the beginning of the tree now.
312 */
313 eb = eb32_first(&timers);
Willy Tarreaub992ba12017-11-05 19:09:27 +0100314 if (likely(!eb))
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100315 break;
316 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200317
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100318 task = eb32_entry(eb, struct task, wq);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200319 if (tick_is_expired(task->expire, now_ms)) {
320 /* expired task, wake it up */
Willy Tarreaud48ed662020-10-16 09:31:41 +0200321 HA_RWLOCK_SKTOWR(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200322 __task_unlink_wq(task);
Willy Tarreaud48ed662020-10-16 09:31:41 +0200323 HA_RWLOCK_WRTOSK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200324 task_wakeup(task, TASK_WOKEN_TIMER);
325 }
326 else if (task->expire != eb->key) {
327 /* task is not expired but its key doesn't match so let's
328 * update it and skip to next apparently expired task.
329 */
Willy Tarreaud48ed662020-10-16 09:31:41 +0200330 HA_RWLOCK_SKTOWR(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200331 __task_unlink_wq(task);
Willy Tarreaub992ba12017-11-05 19:09:27 +0100332 if (tick_isset(task->expire))
Willy Tarreau783afbe2020-07-22 14:12:45 +0200333 __task_queue(task, &timers);
Willy Tarreaud48ed662020-10-16 09:31:41 +0200334 HA_RWLOCK_WRTOSK(TASK_WQ_LOCK, &wq_lock);
Emeric Brunc60def82017-09-27 14:59:38 +0200335 goto lookup_next;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200336 }
Willy Tarreau77015ab2020-06-19 11:50:27 +0200337 else {
338 /* task not expired and correctly placed */
339 break;
340 }
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100341 }
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200342
Willy Tarreaud48ed662020-10-16 09:31:41 +0200343 HA_RWLOCK_SKUNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200344#endif
Willy Tarreau1e928c02019-05-28 18:57:25 +0200345leave:
Willy Tarreauc49ba522019-12-11 08:12:23 +0100346 return;
347}
348
349/* Checks the next timer for the current thread by looking into its own timer
350 * list and the global one. It may return TICK_ETERNITY if no timer is present.
Ilya Shipitsin856aabc2020-04-16 23:51:34 +0500351 * Note that the next timer might very well be slightly in the past.
Willy Tarreauc49ba522019-12-11 08:12:23 +0100352 */
353int next_timer_expiry()
354{
355 struct task_per_thread * const tt = sched; // thread's tasks
356 struct eb32_node *eb;
357 int ret = TICK_ETERNITY;
Willy Tarreau6ce02322020-08-21 05:48:34 +0200358 __decl_thread(int key = TICK_ETERNITY);
Willy Tarreauc49ba522019-12-11 08:12:23 +0100359
360 /* first check in the thread-local timers */
361 eb = eb32_lookup_ge(&tt->timers, now_ms - TIMER_LOOK_BACK);
362 if (!eb) {
363 /* we might have reached the end of the tree, typically because
364 * <now_ms> is in the first half and we're first scanning the last
365 * half. Let's loop back to the beginning of the tree now.
366 */
367 eb = eb32_first(&tt->timers);
368 }
369
370 if (eb)
371 ret = eb->key;
372
373#ifdef USE_THREAD
374 if (!eb_is_empty(&timers)) {
375 HA_RWLOCK_RDLOCK(TASK_WQ_LOCK, &wq_lock);
376 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
377 if (!eb)
378 eb = eb32_first(&timers);
379 if (eb)
380 key = eb->key;
381 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
382 if (eb)
383 ret = tick_first(ret, key);
384 }
385#endif
Willy Tarreaub992ba12017-11-05 19:09:27 +0100386 return ret;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200387}
388
Willy Tarreau59153fe2020-06-24 10:17:29 +0200389/* Walks over tasklet lists sched->tasklets[0..TL_CLASSES-1] and run at most
390 * budget[TL_*] of them. Returns the number of entries effectively processed
391 * (tasks and tasklets merged). The count of tasks in the list for the current
392 * thread is adjusted.
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100393 */
Willy Tarreau59153fe2020-06-24 10:17:29 +0200394unsigned int run_tasks_from_lists(unsigned int budgets[])
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100395{
396 struct task *(*process)(struct task *t, void *ctx, unsigned short state);
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200397 struct list *tl_queues = sched->tasklets;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100398 struct task *t;
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200399 uint8_t budget_mask = (1 << TL_CLASSES) - 1;
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100400 struct sched_activity *profile_entry = NULL;
Willy Tarreau59153fe2020-06-24 10:17:29 +0200401 unsigned int done = 0;
402 unsigned int queue;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100403 unsigned short state;
404 void *ctx;
Willy Tarreau59153fe2020-06-24 10:17:29 +0200405
406 for (queue = 0; queue < TL_CLASSES;) {
407 sched->current_queue = queue;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100408
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200409 /* global.tune.sched.low-latency is set */
410 if (global.tune.options & GTUNE_SCHED_LOW_LATENCY) {
411 if (unlikely(sched->tl_class_mask & budget_mask & ((1 << queue) - 1))) {
412 /* a lower queue index has tasks again and still has a
413 * budget to run them. Let's switch to it now.
414 */
415 queue = (sched->tl_class_mask & 1) ? 0 :
416 (sched->tl_class_mask & 2) ? 1 : 2;
417 continue;
418 }
419
420 if (unlikely(queue > TL_URGENT &&
421 budget_mask & (1 << TL_URGENT) &&
422 !MT_LIST_ISEMPTY(&sched->shared_tasklet_list))) {
423 /* an urgent tasklet arrived from another thread */
424 break;
425 }
426
427 if (unlikely(queue > TL_NORMAL &&
428 budget_mask & (1 << TL_NORMAL) &&
Willy Tarreau2c41d772021-02-24 16:13:03 +0100429 (!eb_is_empty(&sched->rqueue) ||
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200430 (global_tasks_mask & tid_bit)))) {
431 /* a task was woken up by a bulk tasklet or another thread */
432 break;
433 }
434 }
435
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200436 if (LIST_ISEMPTY(&tl_queues[queue])) {
437 sched->tl_class_mask &= ~(1 << queue);
Willy Tarreau59153fe2020-06-24 10:17:29 +0200438 queue++;
439 continue;
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200440 }
441
Willy Tarreau59153fe2020-06-24 10:17:29 +0200442 if (!budgets[queue]) {
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200443 budget_mask &= ~(1 << queue);
Willy Tarreau59153fe2020-06-24 10:17:29 +0200444 queue++;
445 continue;
446 }
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200447
Willy Tarreau59153fe2020-06-24 10:17:29 +0200448 budgets[queue]--;
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200449 t = (struct task *)LIST_ELEM(tl_queues[queue].n, struct tasklet *, list);
Willy Tarreau8a6049c2020-06-30 11:48:48 +0200450 state = t->state & (TASK_SHARED_WQ|TASK_SELF_WAKING|TASK_KILLED);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100451
452 ti->flags &= ~TI_FL_STUCK; // this thread is still running
453 activity[tid].ctxsw++;
454 ctx = t->context;
455 process = t->process;
456 t->calls++;
Willy Tarreaud23d4132020-01-31 10:39:03 +0100457 sched->current = t;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100458
Willy Tarreau9c7b8082021-02-24 15:10:07 +0100459 _HA_ATOMIC_SUB(&sched->rq_total, 1);
Willy Tarreau2da4c312020-11-30 14:52:11 +0100460
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100461 if (TASK_IS_TASKLET(t)) {
Willy Tarreau4d6c5942020-11-30 14:58:53 +0100462 LIST_DEL_INIT(&((struct tasklet *)t)->list);
463 __ha_barrier_store();
Willy Tarreau952c2642020-01-31 16:39:30 +0100464 state = _HA_ATOMIC_XCHG(&t->state, state);
465 __ha_barrier_atomic_store();
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100466
467 if (unlikely(task_profiling_mask & tid_bit)) {
468 uint64_t before;
469
470 profile_entry = sched_activity_entry(sched_activity, t->process);
471 before = now_mono_time();
472 process(t, ctx, state);
473 HA_ATOMIC_ADD(&profile_entry->calls, 1);
474 HA_ATOMIC_ADD(&profile_entry->cpu_time, now_mono_time() - before);
475 } else {
476 process(t, ctx, state);
477 }
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100478 done++;
Willy Tarreaud23d4132020-01-31 10:39:03 +0100479 sched->current = NULL;
480 __ha_barrier_store();
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100481 continue;
482 }
483
Willy Tarreau4d6c5942020-11-30 14:58:53 +0100484 LIST_DEL_INIT(&((struct tasklet *)t)->list);
485 __ha_barrier_store();
Willy Tarreau952c2642020-01-31 16:39:30 +0100486 state = _HA_ATOMIC_XCHG(&t->state, state | TASK_RUNNING);
487 __ha_barrier_atomic_store();
Willy Tarreau952c2642020-01-31 16:39:30 +0100488
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100489 /* OK then this is a regular task */
490
Willy Tarreau1f3b1412021-02-24 14:13:40 +0100491 _HA_ATOMIC_SUB(&task_per_thread[tid].tasks_in_list, 1);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100492 if (unlikely(t->call_date)) {
493 uint64_t now_ns = now_mono_time();
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100494 uint64_t lat = now_ns - t->call_date;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100495
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100496 t->lat_time += lat;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100497 t->call_date = now_ns;
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100498 profile_entry = sched_activity_entry(sched_activity, t->process);
499 HA_ATOMIC_ADD(&profile_entry->lat_time, lat);
500 HA_ATOMIC_ADD(&profile_entry->calls, 1);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100501 }
502
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100503 __ha_barrier_store();
Willy Tarreau8a6049c2020-06-30 11:48:48 +0200504
505 /* Note for below: if TASK_KILLED arrived before we've read the state, we
506 * directly free the task. Otherwise it will be seen after processing and
507 * it's freed on the exit path.
508 */
509 if (likely(!(state & TASK_KILLED) && process == process_stream))
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100510 t = process_stream(t, ctx, state);
Willy Tarreau8a6049c2020-06-30 11:48:48 +0200511 else if (!(state & TASK_KILLED) && process != NULL)
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100512 t = process(t, ctx, state);
513 else {
Willy Tarreau273aea42020-07-17 14:37:51 +0200514 task_unlink_wq(t);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100515 __task_free(t);
516 sched->current = NULL;
517 __ha_barrier_store();
518 /* We don't want max_processed to be decremented if
519 * we're just freeing a destroyed task, we should only
520 * do so if we really ran a task.
521 */
522 continue;
523 }
524 sched->current = NULL;
525 __ha_barrier_store();
526 /* If there is a pending state we have to wake up the task
527 * immediately, else we defer it into wait queue
528 */
529 if (t != NULL) {
530 if (unlikely(t->call_date)) {
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100531 uint64_t cpu = now_mono_time() - t->call_date;
532
533 t->cpu_time += cpu;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100534 t->call_date = 0;
Willy Tarreau4e2282f2021-01-29 00:07:40 +0100535 HA_ATOMIC_ADD(&profile_entry->cpu_time, cpu);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100536 }
537
538 state = _HA_ATOMIC_AND(&t->state, ~TASK_RUNNING);
Willy Tarreau8a6049c2020-06-30 11:48:48 +0200539 if (unlikely(state & TASK_KILLED)) {
Willy Tarreau273aea42020-07-17 14:37:51 +0200540 task_unlink_wq(t);
Willy Tarreau8a6049c2020-06-30 11:48:48 +0200541 __task_free(t);
542 }
543 else if (state & TASK_WOKEN_ANY)
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100544 task_wakeup(t, 0);
545 else
546 task_queue(t);
547 }
548 done++;
549 }
Willy Tarreauba48d5c2020-06-24 09:54:24 +0200550 sched->current_queue = -1;
Willy Tarreau116ef222020-06-23 16:35:38 +0200551
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100552 return done;
553}
554
Willy Tarreau58b458d2008-06-29 22:40:23 +0200555/* The run queue is chronologically sorted in a tree. An insertion counter is
556 * used to assign a position to each task. This counter may be combined with
557 * other variables (eg: nice value) to set the final position in the tree. The
558 * counter may wrap without a problem, of course. We then limit the number of
Christopher Faulet8a48f672017-11-14 10:38:36 +0100559 * tasks processed to 200 in any case, so that general latency remains low and
Willy Tarreaucde79022019-04-12 18:03:41 +0200560 * so that task positions have a chance to be considered. The function scans
561 * both the global and local run queues and picks the most urgent task between
562 * the two. We need to grab the global runqueue lock to touch it so it's taken
563 * on the very first access to the global run queue and is released as soon as
564 * it reaches the end.
Willy Tarreau58b458d2008-06-29 22:40:23 +0200565 *
566 * The function adjusts <next> if a new event is closer.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200567 */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100568void process_runnable_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200569{
Willy Tarreaud022e9c2019-09-24 08:25:15 +0200570 struct task_per_thread * const tt = sched;
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200571 struct eb32sc_node *lrq; // next local run queue entry
572 struct eb32sc_node *grq; // next global run queue entry
Willy Tarreau964c9362007-01-07 00:38:00 +0100573 struct task *t;
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200574 const unsigned int default_weights[TL_CLASSES] = {
575 [TL_URGENT] = 64, // ~50% of CPU bandwidth for I/O
576 [TL_NORMAL] = 48, // ~37% of CPU bandwidth for tasks
577 [TL_BULK] = 16, // ~13% of CPU bandwidth for self-wakers
578 };
579 unsigned int max[TL_CLASSES]; // max to be run per class
580 unsigned int max_total; // sum of max above
Olivier Houchard06910462019-10-11 16:35:01 +0200581 struct mt_list *tmp_list;
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200582 unsigned int queue;
583 int max_processed;
Willy Tarreauc309dbd2020-11-30 15:39:00 +0100584 int picked;
585 int budget;
Christopher Faulet3911ee82017-11-14 10:26:53 +0100586
Willy Tarreaue6a02fa2019-05-22 07:06:44 +0200587 ti->flags &= ~TI_FL_STUCK; // this thread is still running
588
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200589 if (!thread_has_tasks()) {
590 activity[tid].empty_rq++;
591 return;
592 }
593
Willy Tarreau5c8be272020-06-19 12:17:55 +0200594 nb_tasks_cur = nb_tasks;
595 max_processed = global.tune.runqueue_depth;
596
597 if (likely(niced_tasks))
598 max_processed = (max_processed + 3) / 4;
599
Willy Tarreau5c8be272020-06-19 12:17:55 +0200600 not_done_yet:
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200601 max[TL_URGENT] = max[TL_NORMAL] = max[TL_BULK] = 0;
Willy Tarreaucde79022019-04-12 18:03:41 +0200602
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200603 /* urgent tasklets list gets a default weight of ~50% */
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200604 if ((tt->tl_class_mask & (1 << TL_URGENT)) ||
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200605 !MT_LIST_ISEMPTY(&tt->shared_tasklet_list))
606 max[TL_URGENT] = default_weights[TL_URGENT];
Willy Tarreaua62917b2020-01-30 18:37:28 +0100607
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200608 /* normal tasklets list gets a default weight of ~37% */
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200609 if ((tt->tl_class_mask & (1 << TL_NORMAL)) ||
Willy Tarreau2c41d772021-02-24 16:13:03 +0100610 !eb_is_empty(&sched->rqueue) || (global_tasks_mask & tid_bit))
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200611 max[TL_NORMAL] = default_weights[TL_NORMAL];
Willy Tarreaua62917b2020-01-30 18:37:28 +0100612
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200613 /* bulk tasklets list gets a default weight of ~13% */
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200614 if ((tt->tl_class_mask & (1 << TL_BULK)))
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200615 max[TL_BULK] = default_weights[TL_BULK];
616
617 /* Now compute a fair share of the weights. Total may slightly exceed
Willy Tarreau1553b662020-06-30 13:46:21 +0200618 * 100% due to rounding, this is not a problem. Note that while in
619 * theory the sum cannot be NULL as we cannot get there without tasklets
620 * to process, in practice it seldom happens when multiple writers
Willy Tarreaude4db172020-07-10 08:10:29 +0200621 * conflict and rollback on MT_LIST_TRY_ADDQ(shared_tasklet_list), causing
Willy Tarreau1553b662020-06-30 13:46:21 +0200622 * a first MT_LIST_ISEMPTY() to succeed for thread_has_task() and the
623 * one above to finally fail. This is extremely rare and not a problem.
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200624 */
625 max_total = max[TL_URGENT] + max[TL_NORMAL] + max[TL_BULK];
Willy Tarreau1553b662020-06-30 13:46:21 +0200626 if (!max_total)
627 return;
628
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200629 for (queue = 0; queue < TL_CLASSES; queue++)
630 max[queue] = ((unsigned)max_processed * max[queue] + max_total - 1) / max_total;
631
632 lrq = grq = NULL;
Christopher Faulet8a48f672017-11-14 10:38:36 +0100633
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200634 /* pick up to max[TL_NORMAL] regular tasks from prio-ordered run queues */
635 /* Note: the grq lock is always held when grq is not null */
Willy Tarreauc309dbd2020-11-30 15:39:00 +0100636 picked = 0;
Willy Tarreau1f3b1412021-02-24 14:13:40 +0100637 budget = max[TL_NORMAL] - tt->tasks_in_list;
Willy Tarreauc309dbd2020-11-30 15:39:00 +0100638 while (picked < budget) {
Willy Tarreaucde79022019-04-12 18:03:41 +0200639 if ((global_tasks_mask & tid_bit) && !grq) {
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200640#ifdef USE_THREAD
Willy Tarreaucde79022019-04-12 18:03:41 +0200641 HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreauc6ba9a02021-02-20 12:49:54 +0100642 grq = eb32sc_lookup_ge(&rqueue, global_rqueue_ticks - TIMER_LOOK_BACK, tid_bit);
Willy Tarreaucde79022019-04-12 18:03:41 +0200643 if (unlikely(!grq)) {
644 grq = eb32sc_first(&rqueue, tid_bit);
645 if (!grq) {
Olivier Houchardde82aea2019-04-17 19:10:22 +0200646 global_tasks_mask &= ~tid_bit;
Willy Tarreaucde79022019-04-12 18:03:41 +0200647 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Olivier Houchardc4aac9e2018-07-26 15:25:49 +0200648 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100649 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200650#endif
Willy Tarreaucde79022019-04-12 18:03:41 +0200651 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100652
Willy Tarreaucde79022019-04-12 18:03:41 +0200653 /* If a global task is available for this thread, it's in grq
654 * now and the global RQ is locked.
655 */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200656
Willy Tarreaucde79022019-04-12 18:03:41 +0200657 if (!lrq) {
Willy Tarreauc6ba9a02021-02-20 12:49:54 +0100658 lrq = eb32sc_lookup_ge(&tt->rqueue, tt->rqueue_ticks - TIMER_LOOK_BACK, tid_bit);
Willy Tarreaucde79022019-04-12 18:03:41 +0200659 if (unlikely(!lrq))
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200660 lrq = eb32sc_first(&tt->rqueue, tid_bit);
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100661 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100662
Willy Tarreaucde79022019-04-12 18:03:41 +0200663 if (!lrq && !grq)
664 break;
665
666 if (likely(!grq || (lrq && (int)(lrq->key - grq->key) <= 0))) {
667 t = eb32sc_entry(lrq, struct task, rq);
668 lrq = eb32sc_next(lrq, tid_bit);
669 __task_unlink_rq(t);
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200670 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200671#ifdef USE_THREAD
Willy Tarreaucde79022019-04-12 18:03:41 +0200672 else {
673 t = eb32sc_entry(grq, struct task, rq);
674 grq = eb32sc_next(grq, tid_bit);
675 __task_unlink_rq(t);
676 if (unlikely(!grq)) {
677 grq = eb32sc_first(&rqueue, tid_bit);
678 if (!grq) {
Olivier Houchardde82aea2019-04-17 19:10:22 +0200679 global_tasks_mask &= ~tid_bit;
Willy Tarreaucde79022019-04-12 18:03:41 +0200680 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreaucde79022019-04-12 18:03:41 +0200681 }
682 }
Emeric Brun01948972017-03-30 15:37:25 +0200683 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200684#endif
Willy Tarreaucde79022019-04-12 18:03:41 +0200685
Willy Tarreaua868c292020-11-30 15:30:22 +0100686 /* Add it to the local task list */
687 LIST_ADDQ(&tt->tasklets[TL_NORMAL], &((struct tasklet *)t)->list);
Willy Tarreauc309dbd2020-11-30 15:39:00 +0100688 picked++;
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200689 }
Willy Tarreaucde79022019-04-12 18:03:41 +0200690
691 /* release the rqueue lock */
692 if (grq) {
693 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
694 grq = NULL;
695 }
696
Willy Tarreauc309dbd2020-11-30 15:39:00 +0100697 if (picked) {
698 tt->tl_class_mask |= 1 << TL_NORMAL;
Willy Tarreau1f3b1412021-02-24 14:13:40 +0100699 _HA_ATOMIC_ADD(&tt->tasks_in_list, picked);
Willy Tarreau9c7b8082021-02-24 15:10:07 +0100700 _HA_ATOMIC_ADD(&tt->rq_total, picked);
Willy Tarreauc309dbd2020-11-30 15:39:00 +0100701 activity[tid].tasksw += picked;
702 }
703
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200704 /* Merge the list of tasklets waken up by other threads to the
705 * main list.
706 */
707 tmp_list = MT_LIST_BEHEAD(&tt->shared_tasklet_list);
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200708 if (tmp_list) {
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200709 LIST_SPLICE_END_DETACHED(&tt->tasklets[TL_URGENT], (struct list *)tmp_list);
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200710 if (!LIST_ISEMPTY(&tt->tasklets[TL_URGENT]))
711 tt->tl_class_mask |= 1 << TL_URGENT;
712 }
Willy Tarreaucde79022019-04-12 18:03:41 +0200713
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200714 /* execute tasklets in each queue */
Willy Tarreau59153fe2020-06-24 10:17:29 +0200715 max_processed -= run_tasks_from_lists(max);
Willy Tarreaua62917b2020-01-30 18:37:28 +0100716
Willy Tarreau5c8be272020-06-19 12:17:55 +0200717 /* some tasks may have woken other ones up */
Willy Tarreau0c0c85e2020-06-23 11:32:35 +0200718 if (max_processed > 0 && thread_has_tasks())
Willy Tarreau5c8be272020-06-19 12:17:55 +0200719 goto not_done_yet;
720
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200721 if (tt->tl_class_mask)
Willy Tarreaucde79022019-04-12 18:03:41 +0200722 activity[tid].long_rq++;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200723}
724
Willy Tarreau64e60122019-07-12 08:31:17 +0200725/* create a work list array for <nbthread> threads, using tasks made of
726 * function <fct>. The context passed to the function will be the pointer to
727 * the thread's work list, which will contain a copy of argument <arg>. The
728 * wake up reason will be TASK_WOKEN_OTHER. The pointer to the work_list array
729 * is returned on success, otherwise NULL on failure.
730 */
731struct work_list *work_list_create(int nbthread,
732 struct task *(*fct)(struct task *, void *, unsigned short),
733 void *arg)
734{
735 struct work_list *wl;
736 int i;
737
738 wl = calloc(nbthread, sizeof(*wl));
739 if (!wl)
740 goto fail;
741
742 for (i = 0; i < nbthread; i++) {
Olivier Houchard859dc802019-08-08 15:47:21 +0200743 MT_LIST_INIT(&wl[i].head);
Willy Tarreau64e60122019-07-12 08:31:17 +0200744 wl[i].task = task_new(1UL << i);
745 if (!wl[i].task)
746 goto fail;
747 wl[i].task->process = fct;
748 wl[i].task->context = &wl[i];
749 wl[i].arg = arg;
750 }
751 return wl;
752
753 fail:
754 work_list_destroy(wl, nbthread);
755 return NULL;
756}
757
758/* destroy work list <work> */
759void work_list_destroy(struct work_list *work, int nbthread)
760{
761 int t;
762
763 if (!work)
764 return;
765 for (t = 0; t < nbthread; t++)
766 task_destroy(work[t].task);
767 free(work);
768}
769
William Lallemand27f3fa52018-12-06 14:05:20 +0100770/*
771 * Delete every tasks before running the master polling loop
772 */
773void mworker_cleantasks()
774{
775 struct task *t;
776 int i;
William Lallemandb5823392018-12-06 15:14:37 +0100777 struct eb32_node *tmp_wq = NULL;
778 struct eb32sc_node *tmp_rq = NULL;
William Lallemand27f3fa52018-12-06 14:05:20 +0100779
780#ifdef USE_THREAD
781 /* cleanup the global run queue */
William Lallemandb5823392018-12-06 15:14:37 +0100782 tmp_rq = eb32sc_first(&rqueue, MAX_THREADS_MASK);
783 while (tmp_rq) {
784 t = eb32sc_entry(tmp_rq, struct task, rq);
785 tmp_rq = eb32sc_next(tmp_rq, MAX_THREADS_MASK);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200786 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100787 }
788 /* cleanup the timers queue */
William Lallemandb5823392018-12-06 15:14:37 +0100789 tmp_wq = eb32_first(&timers);
790 while (tmp_wq) {
791 t = eb32_entry(tmp_wq, struct task, wq);
792 tmp_wq = eb32_next(tmp_wq);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200793 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100794 }
795#endif
796 /* clean the per thread run queue */
797 for (i = 0; i < global.nbthread; i++) {
William Lallemandb5823392018-12-06 15:14:37 +0100798 tmp_rq = eb32sc_first(&task_per_thread[i].rqueue, MAX_THREADS_MASK);
799 while (tmp_rq) {
800 t = eb32sc_entry(tmp_rq, struct task, rq);
801 tmp_rq = eb32sc_next(tmp_rq, MAX_THREADS_MASK);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200802 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100803 }
804 /* cleanup the per thread timers queue */
William Lallemandb5823392018-12-06 15:14:37 +0100805 tmp_wq = eb32_first(&task_per_thread[i].timers);
806 while (tmp_wq) {
807 t = eb32_entry(tmp_wq, struct task, wq);
808 tmp_wq = eb32_next(tmp_wq);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200809 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100810 }
811 }
812}
813
Willy Tarreaub6b3df32018-11-26 16:31:20 +0100814/* perform minimal intializations */
815static void init_task()
Willy Tarreau4726f532009-03-07 17:25:21 +0100816{
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200817 int i;
818
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200819#ifdef USE_THREAD
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200820 memset(&timers, 0, sizeof(timers));
Willy Tarreau4726f532009-03-07 17:25:21 +0100821 memset(&rqueue, 0, sizeof(rqueue));
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200822#endif
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200823 memset(&task_per_thread, 0, sizeof(task_per_thread));
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200824 for (i = 0; i < MAX_THREADS; i++) {
Willy Tarreaua62917b2020-01-30 18:37:28 +0100825 LIST_INIT(&task_per_thread[i].tasklets[TL_URGENT]);
826 LIST_INIT(&task_per_thread[i].tasklets[TL_NORMAL]);
827 LIST_INIT(&task_per_thread[i].tasklets[TL_BULK]);
Olivier Houchard06910462019-10-11 16:35:01 +0200828 MT_LIST_INIT(&task_per_thread[i].shared_tasklet_list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200829 }
Willy Tarreau4726f532009-03-07 17:25:21 +0100830}
831
Willy Tarreaue7723bd2020-06-24 11:11:02 +0200832/* config parser for global "tune.sched.low-latency", accepts "on" or "off" */
833static int cfg_parse_tune_sched_low_latency(char **args, int section_type, struct proxy *curpx,
834 struct proxy *defpx, const char *file, int line,
835 char **err)
836{
837 if (too_many_args(1, args, err, NULL))
838 return -1;
839
840 if (strcmp(args[1], "on") == 0)
841 global.tune.options |= GTUNE_SCHED_LOW_LATENCY;
842 else if (strcmp(args[1], "off") == 0)
843 global.tune.options &= ~GTUNE_SCHED_LOW_LATENCY;
844 else {
845 memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]);
846 return -1;
847 }
848 return 0;
849}
850
851/* config keyword parsers */
852static struct cfg_kw_list cfg_kws = {ILH, {
853 { CFG_GLOBAL, "tune.sched.low-latency", cfg_parse_tune_sched_low_latency },
854 { 0, NULL, NULL }
855}};
856
857INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
Willy Tarreaub6b3df32018-11-26 16:31:20 +0100858INITCALL0(STG_PREPARE, init_task);
859
Willy Tarreaubaaee002006-06-26 02:48:02 +0200860/*
861 * Local variables:
862 * c-indent-level: 8
863 * c-basic-offset: 8
864 * End:
865 */