blob: d6bda26d615426e17e0c7e587cc13fc0ab5fce45 [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 Tarreaub2551052020-06-09 09:07:15 +020019#include <haproxy/fd.h>
20#include <haproxy/freq_ctr.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020021#include <haproxy/list.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020022#include <haproxy/pool.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020023#include <haproxy/stream.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020024#include <haproxy/task.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020025#include <haproxy/time.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020026#include <haproxy/tools.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020027
Willy Tarreaubaaee002006-06-26 02:48:02 +020028
Willy Tarreau8ceae722018-11-26 11:58:30 +010029DECLARE_POOL(pool_head_task, "task", sizeof(struct task));
30DECLARE_POOL(pool_head_tasklet, "tasklet", sizeof(struct tasklet));
Willy Tarreau96bcfd72007-04-29 10:41:56 +020031
Thierry FOURNIERd6975962017-07-12 14:31:10 +020032/* This is the memory pool containing all the signal structs. These
Joseph Herlantcf92b6d2018-11-15 14:19:23 -080033 * struct are used to store each required signal between two tasks.
Thierry FOURNIERd6975962017-07-12 14:31:10 +020034 */
Willy Tarreau8ceae722018-11-26 11:58:30 +010035DECLARE_POOL(pool_head_notification, "notification", sizeof(struct notification));
Thierry FOURNIERd6975962017-07-12 14:31:10 +020036
Willy Tarreaua4613182009-03-21 18:13:21 +010037unsigned int nb_tasks = 0;
Olivier Houchardeba0c0b2018-07-26 18:53:28 +020038volatile unsigned long global_tasks_mask = 0; /* Mask of threads with tasks in the global runqueue */
Christopher Faulet34c5cc92016-12-06 09:15:30 +010039unsigned int tasks_run_queue = 0;
40unsigned int tasks_run_queue_cur = 0; /* copy of the run queue size */
Willy Tarreauc7bdf092009-03-21 18:33:52 +010041unsigned int nb_tasks_cur = 0; /* copy of the tasks count */
Willy Tarreaue35c94a2009-03-21 10:01:42 +010042unsigned int niced_tasks = 0; /* number of niced tasks in the run queue */
Emeric Brun01948972017-03-30 15:37:25 +020043
Willy Tarreaud022e9c2019-09-24 08:25:15 +020044THREAD_LOCAL struct task_per_thread *sched = &task_per_thread[0]; /* scheduler context for the current thread */
Willy Tarreau6d1222c2017-11-26 10:08:06 +010045
Willy Tarreau86abe442018-11-25 20:12:18 +010046__decl_aligned_spinlock(rq_lock); /* spin lock related to run queue */
Willy Tarreauef28dc12019-05-28 18:48:07 +020047__decl_aligned_rwlock(wq_lock); /* RW lock related to the wait queue */
Willy Tarreau964c9362007-01-07 00:38:00 +010048
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020049#ifdef USE_THREAD
Willy Tarreaub20aa9e2018-10-15 14:52:21 +020050struct eb_root timers; /* sorted timers tree, global */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020051struct eb_root rqueue; /* tree constituting the run queue */
Olivier Houchard77551ee2018-07-26 15:59:38 +020052int global_rqueue_size; /* Number of element sin the global runqueue */
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020053#endif
Willy Tarreaub20aa9e2018-10-15 14:52:21 +020054
Willy Tarreaue35c94a2009-03-21 10:01:42 +010055static unsigned int rqueue_ticks; /* insertion count */
Willy Tarreau8d8747a2018-10-15 16:12:48 +020056
57struct task_per_thread task_per_thread[MAX_THREADS];
Willy Tarreau9789f7b2008-06-24 08:17:16 +020058
Willy Tarreau4726f532009-03-07 17:25:21 +010059/* Puts the task <t> in run queue at a position depending on t->nice. <t> is
60 * returned. The nice value assigns boosts in 32th of the run queue size. A
Christopher Faulet34c5cc92016-12-06 09:15:30 +010061 * nice value of -1024 sets the task to -tasks_run_queue*32, while a nice value
62 * of 1024 sets the task to tasks_run_queue*32. The state flags are cleared, so
63 * the caller will have to set its flags after this call.
Willy Tarreau4726f532009-03-07 17:25:21 +010064 * The task must not already be in the run queue. If unsure, use the safer
65 * task_wakeup() function.
Willy Tarreau91e99932008-06-30 07:51:00 +020066 */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020067void __task_wakeup(struct task *t, struct eb_root *root)
Willy Tarreaue33aece2007-04-30 13:15:14 +020068{
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020069#ifdef USE_THREAD
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020070 if (root == &rqueue) {
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020071 HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020072 }
Willy Tarreau2d1fd0a2019-04-15 09:18:31 +020073#endif
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020074 /* Make sure if the task isn't in the runqueue, nobody inserts it
75 * in the meanwhile.
76 */
Olivier Houchard4c2832852019-03-08 18:48:47 +010077 _HA_ATOMIC_ADD(&tasks_run_queue, 1);
Olivier Houchardc4aac9e2018-07-26 15:25:49 +020078#ifdef USE_THREAD
79 if (root == &rqueue) {
Olivier Houchardde82aea2019-04-17 19:10:22 +020080 global_tasks_mask |= t->thread_mask;
Olivier Houcharded1a6a02019-04-18 14:12:51 +020081 __ha_barrier_store();
Olivier Houchardc4aac9e2018-07-26 15:25:49 +020082 }
83#endif
Olivier Houchard4c2832852019-03-08 18:48:47 +010084 t->rq.key = _HA_ATOMIC_ADD(&rqueue_ticks, 1);
Willy Tarreau91e99932008-06-30 07:51:00 +020085
86 if (likely(t->nice)) {
87 int offset;
88
Olivier Houchard4c2832852019-03-08 18:48:47 +010089 _HA_ATOMIC_ADD(&niced_tasks, 1);
Willy Tarreau2d1fd0a2019-04-15 09:18:31 +020090 offset = t->nice * (int)global.tune.runqueue_depth;
Willy Tarreau4726f532009-03-07 17:25:21 +010091 t->rq.key += offset;
Willy Tarreau91e99932008-06-30 07:51:00 +020092 }
93
Willy Tarreaud9add3a2019-04-25 08:57:41 +020094 if (task_profiling_mask & tid_bit)
Willy Tarreau9efd7452018-05-31 14:48:54 +020095 t->call_date = now_mono_time();
96
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020097 eb32sc_insert(root, &t->rq, t->thread_mask);
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020098#ifdef USE_THREAD
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020099 if (root == &rqueue) {
100 global_rqueue_size++;
Olivier Houchard4c2832852019-03-08 18:48:47 +0100101 _HA_ATOMIC_OR(&t->state, TASK_GLOBAL);
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200102 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200103 } else
104#endif
105 {
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200106 int nb = ((void *)root - (void *)&task_per_thread[0].rqueue) / sizeof(task_per_thread[0]);
107 task_per_thread[nb].rqueue_size++;
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200108 }
Willy Tarreau85d9b842018-07-27 17:14:41 +0200109#ifdef USE_THREAD
Olivier Houchard79321b92018-07-26 17:55:11 +0200110 /* If all threads that are supposed to handle this task are sleeping,
111 * wake one.
112 */
113 if ((((t->thread_mask & all_threads_mask) & sleeping_thread_mask) ==
Olivier Houchard1b327902019-03-15 00:23:10 +0100114 (t->thread_mask & all_threads_mask))) {
115 unsigned long m = (t->thread_mask & all_threads_mask) &~ tid_bit;
116
117 m = (m & (m - 1)) ^ m; // keep lowest bit set
118 _HA_ATOMIC_AND(&sleeping_thread_mask, ~m);
119 wake_thread(my_ffsl(m) - 1);
120 }
Willy Tarreau85d9b842018-07-27 17:14:41 +0200121#endif
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200122 return;
Willy Tarreaue33aece2007-04-30 13:15:14 +0200123}
Willy Tarreaud825eef2007-05-12 22:35:00 +0200124
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200125/*
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100126 * __task_queue()
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200127 *
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200128 * Inserts a task into wait queue <wq> at the position given by its expiration
Willy Tarreau4726f532009-03-07 17:25:21 +0100129 * date. It does not matter if the task was already in the wait queue or not,
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100130 * as it will be unlinked. The task must not have an infinite expiration timer.
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100131 * Last, tasks must not be queued further than the end of the tree, which is
132 * between <now_ms> and <now_ms> + 2^31 ms (now+24days in 32bit).
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100133 *
134 * This function should not be used directly, it is meant to be called by the
135 * inline version of task_queue() which performs a few cheap preliminary tests
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200136 * before deciding to call __task_queue(). Moreover this function doesn't care
137 * at all about locking so the caller must be careful when deciding whether to
138 * lock or not around this call.
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200139 */
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200140void __task_queue(struct task *task, struct eb_root *wq)
Willy Tarreau964c9362007-01-07 00:38:00 +0100141{
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100142 if (likely(task_in_wq(task)))
Willy Tarreau4726f532009-03-07 17:25:21 +0100143 __task_unlink_wq(task);
Willy Tarreau4726f532009-03-07 17:25:21 +0100144
145 /* the task is not in the queue now */
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100146 task->wq.key = task->expire;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200147#ifdef DEBUG_CHECK_INVALID_EXPIRATION_DATES
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100148 if (tick_is_lt(task->wq.key, now_ms))
Willy Tarreau28c41a42008-06-29 17:00:59 +0200149 /* we're queuing too far away or in the past (most likely) */
Willy Tarreau4726f532009-03-07 17:25:21 +0100150 return;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200151#endif
Willy Tarreauce44f122008-07-05 18:16:19 +0200152
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200153 eb32_insert(wq, &task->wq);
Willy Tarreau964c9362007-01-07 00:38:00 +0100154}
155
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200156/*
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200157 * Extract all expired timers from the timer queue, and wakes up all
Willy Tarreauc49ba522019-12-11 08:12:23 +0100158 * associated tasks.
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200159 */
Willy Tarreauc49ba522019-12-11 08:12:23 +0100160void wake_expired_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200161{
Willy Tarreaud022e9c2019-09-24 08:25:15 +0200162 struct task_per_thread * const tt = sched; // thread's tasks
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200163 struct task *task;
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200164 struct eb32_node *eb;
Willy Tarreauaf613e82020-06-05 08:40:51 +0200165 __decl_thread(int key);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200166
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100167 while (1) {
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200168 lookup_next_local:
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200169 eb = eb32_lookup_ge(&tt->timers, now_ms - TIMER_LOOK_BACK);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200170 if (!eb) {
171 /* we might have reached the end of the tree, typically because
172 * <now_ms> is in the first half and we're first scanning the last
173 * half. Let's loop back to the beginning of the tree now.
174 */
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200175 eb = eb32_first(&tt->timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200176 if (likely(!eb))
177 break;
178 }
179
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200180 /* It is possible that this task was left at an earlier place in the
181 * tree because a recent call to task_queue() has not moved it. This
182 * happens when the new expiration date is later than the old one.
183 * Since it is very unlikely that we reach a timeout anyway, it's a
184 * lot cheaper to proceed like this because we almost never update
185 * the tree. We may also find disabled expiration dates there. Since
186 * we have detached the task from the tree, we simply call task_queue
187 * to take care of this. Note that we might occasionally requeue it at
188 * the same place, before <eb>, so we have to check if this happens,
189 * and adjust <eb>, otherwise we may skip it which is not what we want.
190 * We may also not requeue the task (and not point eb at it) if its
Willy Tarreau77015ab2020-06-19 11:50:27 +0200191 * expiration time is not set. We also make sure we leave the real
192 * expiration date for the next task in the queue so that when calling
193 * next_timer_expiry() we're guaranteed to see the next real date and
194 * not the next apparent date. This is in order to avoid useless
195 * wakeups.
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200196 */
Willy Tarreau77015ab2020-06-19 11:50:27 +0200197
198 task = eb32_entry(eb, struct task, wq);
199 if (tick_is_expired(task->expire, now_ms)) {
200 /* expired task, wake it up */
201 __task_unlink_wq(task);
202 task_wakeup(task, TASK_WOKEN_TIMER);
203 }
204 else if (task->expire != eb->key) {
205 /* task is not expired but its key doesn't match so let's
206 * update it and skip to next apparently expired task.
207 */
208 __task_unlink_wq(task);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200209 if (tick_isset(task->expire))
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200210 __task_queue(task, &tt->timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200211 }
Willy Tarreau77015ab2020-06-19 11:50:27 +0200212 else {
213 /* task not expired and correctly placed */
214 break;
215 }
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200216 }
217
218#ifdef USE_THREAD
Willy Tarreau1e928c02019-05-28 18:57:25 +0200219 if (eb_is_empty(&timers))
220 goto leave;
221
222 HA_RWLOCK_RDLOCK(TASK_WQ_LOCK, &wq_lock);
223 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
224 if (!eb) {
225 eb = eb32_first(&timers);
226 if (likely(!eb)) {
227 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
228 goto leave;
229 }
230 }
231 key = eb->key;
232 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
233
Willy Tarreauc49ba522019-12-11 08:12:23 +0100234 if (tick_is_lt(now_ms, key))
Willy Tarreau1e928c02019-05-28 18:57:25 +0200235 goto leave;
Willy Tarreau1e928c02019-05-28 18:57:25 +0200236
237 /* There's really something of interest here, let's visit the queue */
238
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200239 while (1) {
Willy Tarreauef28dc12019-05-28 18:48:07 +0200240 HA_RWLOCK_WRLOCK(TASK_WQ_LOCK, &wq_lock);
Emeric Brunc60def82017-09-27 14:59:38 +0200241 lookup_next:
Emeric Brun01948972017-03-30 15:37:25 +0200242 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
Emeric Brunc60def82017-09-27 14:59:38 +0200243 if (!eb) {
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100244 /* we might have reached the end of the tree, typically because
245 * <now_ms> is in the first half and we're first scanning the last
246 * half. Let's loop back to the beginning of the tree now.
247 */
248 eb = eb32_first(&timers);
Willy Tarreaub992ba12017-11-05 19:09:27 +0100249 if (likely(!eb))
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100250 break;
251 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200252
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100253 task = eb32_entry(eb, struct task, wq);
Willy Tarreau77015ab2020-06-19 11:50:27 +0200254 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 Tarreaub992ba12017-11-05 19:09:27 +0100264 if (tick_isset(task->expire))
Willy Tarreau77015ab2020-06-19 11:50:27 +0200265 __task_queue(task, &tt->timers);
Emeric Brunc60def82017-09-27 14:59:38 +0200266 goto lookup_next;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200267 }
Willy Tarreau77015ab2020-06-19 11:50:27 +0200268 else {
269 /* task not expired and correctly placed */
270 break;
271 }
Willy Tarreauef28dc12019-05-28 18:48:07 +0200272 HA_RWLOCK_WRUNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100273 }
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200274
Willy Tarreauef28dc12019-05-28 18:48:07 +0200275 HA_RWLOCK_WRUNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200276#endif
Willy Tarreau1e928c02019-05-28 18:57:25 +0200277leave:
Willy Tarreauc49ba522019-12-11 08:12:23 +0100278 return;
279}
280
281/* Checks the next timer for the current thread by looking into its own timer
282 * list and the global one. It may return TICK_ETERNITY if no timer is present.
Ilya Shipitsin856aabc2020-04-16 23:51:34 +0500283 * Note that the next timer might very well be slightly in the past.
Willy Tarreauc49ba522019-12-11 08:12:23 +0100284 */
285int next_timer_expiry()
286{
287 struct task_per_thread * const tt = sched; // thread's tasks
288 struct eb32_node *eb;
289 int ret = TICK_ETERNITY;
Willy Tarreauaf613e82020-06-05 08:40:51 +0200290 __decl_thread(int key);
Willy Tarreauc49ba522019-12-11 08:12:23 +0100291
292 /* first check in the thread-local timers */
293 eb = eb32_lookup_ge(&tt->timers, now_ms - TIMER_LOOK_BACK);
294 if (!eb) {
295 /* we might have reached the end of the tree, typically because
296 * <now_ms> is in the first half and we're first scanning the last
297 * half. Let's loop back to the beginning of the tree now.
298 */
299 eb = eb32_first(&tt->timers);
300 }
301
302 if (eb)
303 ret = eb->key;
304
305#ifdef USE_THREAD
306 if (!eb_is_empty(&timers)) {
307 HA_RWLOCK_RDLOCK(TASK_WQ_LOCK, &wq_lock);
308 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
309 if (!eb)
310 eb = eb32_first(&timers);
311 if (eb)
312 key = eb->key;
313 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
314 if (eb)
315 ret = tick_first(ret, key);
316 }
317#endif
Willy Tarreaub992ba12017-11-05 19:09:27 +0100318 return ret;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200319}
320
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100321/* Walks over tasklet list <list> and run at most <max> of them. Returns
322 * the number of entries effectively processed (tasks and tasklets merged).
323 * The count of tasks in the list for the current thread is adjusted.
324 */
Willy Tarreau27d00c02020-03-03 14:59:28 +0100325int run_tasks_from_list(struct list *list, int max)
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100326{
327 struct task *(*process)(struct task *t, void *ctx, unsigned short state);
328 struct task *t;
329 unsigned short state;
330 void *ctx;
331 int done = 0;
332
333 while (done < max && !LIST_ISEMPTY(list)) {
334 t = (struct task *)LIST_ELEM(list->n, struct tasklet *, list);
Willy Tarreau952c2642020-01-31 16:39:30 +0100335 state = (t->state & (TASK_SHARED_WQ|TASK_SELF_WAKING));
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100336
337 ti->flags &= ~TI_FL_STUCK; // this thread is still running
338 activity[tid].ctxsw++;
339 ctx = t->context;
340 process = t->process;
341 t->calls++;
Willy Tarreaud23d4132020-01-31 10:39:03 +0100342 sched->current = t;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100343
344 if (TASK_IS_TASKLET(t)) {
Willy Tarreau952c2642020-01-31 16:39:30 +0100345 state = _HA_ATOMIC_XCHG(&t->state, state);
346 __ha_barrier_atomic_store();
347 __tasklet_remove_from_tasklet_list((struct tasklet *)t);
Olivier Houchardc62d9ab2020-03-17 18:15:04 +0100348 process(t, ctx, state);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100349 done++;
Willy Tarreaud23d4132020-01-31 10:39:03 +0100350 sched->current = NULL;
351 __ha_barrier_store();
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100352 continue;
353 }
354
Willy Tarreau952c2642020-01-31 16:39:30 +0100355 state = _HA_ATOMIC_XCHG(&t->state, state | TASK_RUNNING);
356 __ha_barrier_atomic_store();
357 __tasklet_remove_from_tasklet_list((struct tasklet *)t);
358
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100359 /* OK then this is a regular task */
360
361 task_per_thread[tid].task_list_size--;
362 if (unlikely(t->call_date)) {
363 uint64_t now_ns = now_mono_time();
364
365 t->lat_time += now_ns - t->call_date;
366 t->call_date = now_ns;
367 }
368
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100369 __ha_barrier_store();
370 if (likely(process == process_stream))
371 t = process_stream(t, ctx, state);
372 else if (process != NULL)
373 t = process(t, ctx, state);
374 else {
375 __task_free(t);
376 sched->current = NULL;
377 __ha_barrier_store();
378 /* We don't want max_processed to be decremented if
379 * we're just freeing a destroyed task, we should only
380 * do so if we really ran a task.
381 */
382 continue;
383 }
384 sched->current = NULL;
385 __ha_barrier_store();
386 /* If there is a pending state we have to wake up the task
387 * immediately, else we defer it into wait queue
388 */
389 if (t != NULL) {
390 if (unlikely(t->call_date)) {
391 t->cpu_time += now_mono_time() - t->call_date;
392 t->call_date = 0;
393 }
394
395 state = _HA_ATOMIC_AND(&t->state, ~TASK_RUNNING);
396 if (state & TASK_WOKEN_ANY)
397 task_wakeup(t, 0);
398 else
399 task_queue(t);
400 }
401 done++;
402 }
Willy Tarreau116ef222020-06-23 16:35:38 +0200403
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100404 return done;
405}
406
Willy Tarreau58b458d2008-06-29 22:40:23 +0200407/* The run queue is chronologically sorted in a tree. An insertion counter is
408 * used to assign a position to each task. This counter may be combined with
409 * other variables (eg: nice value) to set the final position in the tree. The
410 * counter may wrap without a problem, of course. We then limit the number of
Christopher Faulet8a48f672017-11-14 10:38:36 +0100411 * tasks processed to 200 in any case, so that general latency remains low and
Willy Tarreaucde79022019-04-12 18:03:41 +0200412 * so that task positions have a chance to be considered. The function scans
413 * both the global and local run queues and picks the most urgent task between
414 * the two. We need to grab the global runqueue lock to touch it so it's taken
415 * on the very first access to the global run queue and is released as soon as
416 * it reaches the end.
Willy Tarreau58b458d2008-06-29 22:40:23 +0200417 *
418 * The function adjusts <next> if a new event is closer.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200419 */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100420void process_runnable_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200421{
Willy Tarreaud022e9c2019-09-24 08:25:15 +0200422 struct task_per_thread * const tt = sched;
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200423 struct eb32sc_node *lrq; // next local run queue entry
424 struct eb32sc_node *grq; // next global run queue entry
Willy Tarreau964c9362007-01-07 00:38:00 +0100425 struct task *t;
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200426 const unsigned int default_weights[TL_CLASSES] = {
427 [TL_URGENT] = 64, // ~50% of CPU bandwidth for I/O
428 [TL_NORMAL] = 48, // ~37% of CPU bandwidth for tasks
429 [TL_BULK] = 16, // ~13% of CPU bandwidth for self-wakers
430 };
431 unsigned int max[TL_CLASSES]; // max to be run per class
432 unsigned int max_total; // sum of max above
Olivier Houchard06910462019-10-11 16:35:01 +0200433 struct mt_list *tmp_list;
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200434 unsigned int queue;
435 int max_processed;
Christopher Faulet3911ee82017-11-14 10:26:53 +0100436
Willy Tarreaue6a02fa2019-05-22 07:06:44 +0200437 ti->flags &= ~TI_FL_STUCK; // this thread is still running
438
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200439 if (!thread_has_tasks()) {
440 activity[tid].empty_rq++;
441 return;
442 }
443
Willy Tarreau5c8be272020-06-19 12:17:55 +0200444 tasks_run_queue_cur = tasks_run_queue; /* keep a copy for reporting */
445 nb_tasks_cur = nb_tasks;
446 max_processed = global.tune.runqueue_depth;
447
448 if (likely(niced_tasks))
449 max_processed = (max_processed + 3) / 4;
450
Willy Tarreau5c8be272020-06-19 12:17:55 +0200451 not_done_yet:
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200452 max[TL_URGENT] = max[TL_NORMAL] = max[TL_BULK] = 0;
Willy Tarreaucde79022019-04-12 18:03:41 +0200453
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200454 /* urgent tasklets list gets a default weight of ~50% */
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200455 if ((tt->tl_class_mask & (1 << TL_URGENT)) ||
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200456 !MT_LIST_ISEMPTY(&tt->shared_tasklet_list))
457 max[TL_URGENT] = default_weights[TL_URGENT];
Willy Tarreaua62917b2020-01-30 18:37:28 +0100458
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200459 /* normal tasklets list gets a default weight of ~37% */
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200460 if ((tt->tl_class_mask & (1 << TL_NORMAL)) ||
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200461 (sched->rqueue_size > 0) || (global_tasks_mask & tid_bit))
462 max[TL_NORMAL] = default_weights[TL_NORMAL];
Willy Tarreaua62917b2020-01-30 18:37:28 +0100463
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200464 /* bulk tasklets list gets a default weight of ~13% */
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200465 if ((tt->tl_class_mask & (1 << TL_BULK)))
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200466 max[TL_BULK] = default_weights[TL_BULK];
467
468 /* Now compute a fair share of the weights. Total may slightly exceed
469 * 100% due to rounding, this is not a problem. Note that by design
470 * the sum cannot be NULL as we cannot get there without tasklets to
471 * process.
472 */
473 max_total = max[TL_URGENT] + max[TL_NORMAL] + max[TL_BULK];
474 for (queue = 0; queue < TL_CLASSES; queue++)
475 max[queue] = ((unsigned)max_processed * max[queue] + max_total - 1) / max_total;
476
477 lrq = grq = NULL;
Christopher Faulet8a48f672017-11-14 10:38:36 +0100478
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200479 /* pick up to max[TL_NORMAL] regular tasks from prio-ordered run queues */
480 /* Note: the grq lock is always held when grq is not null */
481 while (tt->task_list_size < max[TL_NORMAL]) {
Willy Tarreaucde79022019-04-12 18:03:41 +0200482 if ((global_tasks_mask & tid_bit) && !grq) {
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200483#ifdef USE_THREAD
Willy Tarreaucde79022019-04-12 18:03:41 +0200484 HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
485 grq = eb32sc_lookup_ge(&rqueue, rqueue_ticks - TIMER_LOOK_BACK, tid_bit);
486 if (unlikely(!grq)) {
487 grq = eb32sc_first(&rqueue, tid_bit);
488 if (!grq) {
Olivier Houchardde82aea2019-04-17 19:10:22 +0200489 global_tasks_mask &= ~tid_bit;
Willy Tarreaucde79022019-04-12 18:03:41 +0200490 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Olivier Houchardc4aac9e2018-07-26 15:25:49 +0200491 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100492 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200493#endif
Willy Tarreaucde79022019-04-12 18:03:41 +0200494 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100495
Willy Tarreaucde79022019-04-12 18:03:41 +0200496 /* If a global task is available for this thread, it's in grq
497 * now and the global RQ is locked.
498 */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200499
Willy Tarreaucde79022019-04-12 18:03:41 +0200500 if (!lrq) {
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200501 lrq = eb32sc_lookup_ge(&tt->rqueue, rqueue_ticks - TIMER_LOOK_BACK, tid_bit);
Willy Tarreaucde79022019-04-12 18:03:41 +0200502 if (unlikely(!lrq))
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200503 lrq = eb32sc_first(&tt->rqueue, tid_bit);
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100504 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100505
Willy Tarreaucde79022019-04-12 18:03:41 +0200506 if (!lrq && !grq)
507 break;
508
509 if (likely(!grq || (lrq && (int)(lrq->key - grq->key) <= 0))) {
510 t = eb32sc_entry(lrq, struct task, rq);
511 lrq = eb32sc_next(lrq, tid_bit);
512 __task_unlink_rq(t);
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200513 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200514#ifdef USE_THREAD
Willy Tarreaucde79022019-04-12 18:03:41 +0200515 else {
516 t = eb32sc_entry(grq, struct task, rq);
517 grq = eb32sc_next(grq, tid_bit);
518 __task_unlink_rq(t);
519 if (unlikely(!grq)) {
520 grq = eb32sc_first(&rqueue, tid_bit);
521 if (!grq) {
Olivier Houchardde82aea2019-04-17 19:10:22 +0200522 global_tasks_mask &= ~tid_bit;
Willy Tarreaucde79022019-04-12 18:03:41 +0200523 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreaucde79022019-04-12 18:03:41 +0200524 }
525 }
Emeric Brun01948972017-03-30 15:37:25 +0200526 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200527#endif
Willy Tarreaucde79022019-04-12 18:03:41 +0200528
Olivier Houchardff1e9f32019-09-20 17:18:35 +0200529 /* Make sure the entry doesn't appear to be in a list */
Olivier Houchard06910462019-10-11 16:35:01 +0200530 LIST_INIT(&((struct tasklet *)t)->list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200531 /* And add it to the local task list */
Willy Tarreaua62917b2020-01-30 18:37:28 +0100532 tasklet_insert_into_tasklet_list(&tt->tasklets[TL_NORMAL], (struct tasklet *)t);
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200533 tt->tl_class_mask |= 1 << TL_NORMAL;
Olivier Houchard06910462019-10-11 16:35:01 +0200534 tt->task_list_size++;
Willy Tarreaubc13bec2019-04-30 14:55:18 +0200535 activity[tid].tasksw++;
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200536 }
Willy Tarreaucde79022019-04-12 18:03:41 +0200537
538 /* release the rqueue lock */
539 if (grq) {
540 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
541 grq = NULL;
542 }
543
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200544 /* Merge the list of tasklets waken up by other threads to the
545 * main list.
546 */
547 tmp_list = MT_LIST_BEHEAD(&tt->shared_tasklet_list);
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200548 if (tmp_list) {
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200549 LIST_SPLICE_END_DETACHED(&tt->tasklets[TL_URGENT], (struct list *)tmp_list);
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200550 if (!LIST_ISEMPTY(&tt->tasklets[TL_URGENT]))
551 tt->tl_class_mask |= 1 << TL_URGENT;
552 }
Willy Tarreaucde79022019-04-12 18:03:41 +0200553
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200554 /* execute tasklets in each queue */
555 for (queue = 0; queue < TL_CLASSES; queue++) {
Willy Tarreauc0a08ba2020-06-24 09:19:50 +0200556 if (max[queue] > 0) {
557 tt->current_queue = queue;
Willy Tarreau3ef7a192020-06-24 07:21:08 +0200558 max_processed -= run_tasks_from_list(&tt->tasklets[queue], max[queue]);
Willy Tarreauc0a08ba2020-06-24 09:19:50 +0200559 tt->current_queue = -1;
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200560 if (LIST_ISEMPTY(&tt->tasklets[queue]))
561 tt->tl_class_mask &= ~(1 << queue);
Willy Tarreauc0a08ba2020-06-24 09:19:50 +0200562 }
Willy Tarreau0c0c85e2020-06-23 11:32:35 +0200563 }
Willy Tarreaua62917b2020-01-30 18:37:28 +0100564
Willy Tarreau5c8be272020-06-19 12:17:55 +0200565 /* some tasks may have woken other ones up */
Willy Tarreau0c0c85e2020-06-23 11:32:35 +0200566 if (max_processed > 0 && thread_has_tasks())
Willy Tarreau5c8be272020-06-19 12:17:55 +0200567 goto not_done_yet;
568
Willy Tarreau49f90bf2020-06-24 09:39:48 +0200569 if (tt->tl_class_mask)
Willy Tarreaucde79022019-04-12 18:03:41 +0200570 activity[tid].long_rq++;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200571}
572
Willy Tarreau64e60122019-07-12 08:31:17 +0200573/* create a work list array for <nbthread> threads, using tasks made of
574 * function <fct>. The context passed to the function will be the pointer to
575 * the thread's work list, which will contain a copy of argument <arg>. The
576 * wake up reason will be TASK_WOKEN_OTHER. The pointer to the work_list array
577 * is returned on success, otherwise NULL on failure.
578 */
579struct work_list *work_list_create(int nbthread,
580 struct task *(*fct)(struct task *, void *, unsigned short),
581 void *arg)
582{
583 struct work_list *wl;
584 int i;
585
586 wl = calloc(nbthread, sizeof(*wl));
587 if (!wl)
588 goto fail;
589
590 for (i = 0; i < nbthread; i++) {
Olivier Houchard859dc802019-08-08 15:47:21 +0200591 MT_LIST_INIT(&wl[i].head);
Willy Tarreau64e60122019-07-12 08:31:17 +0200592 wl[i].task = task_new(1UL << i);
593 if (!wl[i].task)
594 goto fail;
595 wl[i].task->process = fct;
596 wl[i].task->context = &wl[i];
597 wl[i].arg = arg;
598 }
599 return wl;
600
601 fail:
602 work_list_destroy(wl, nbthread);
603 return NULL;
604}
605
606/* destroy work list <work> */
607void work_list_destroy(struct work_list *work, int nbthread)
608{
609 int t;
610
611 if (!work)
612 return;
613 for (t = 0; t < nbthread; t++)
614 task_destroy(work[t].task);
615 free(work);
616}
617
William Lallemand27f3fa52018-12-06 14:05:20 +0100618/*
619 * Delete every tasks before running the master polling loop
620 */
621void mworker_cleantasks()
622{
623 struct task *t;
624 int i;
William Lallemandb5823392018-12-06 15:14:37 +0100625 struct eb32_node *tmp_wq = NULL;
626 struct eb32sc_node *tmp_rq = NULL;
William Lallemand27f3fa52018-12-06 14:05:20 +0100627
628#ifdef USE_THREAD
629 /* cleanup the global run queue */
William Lallemandb5823392018-12-06 15:14:37 +0100630 tmp_rq = eb32sc_first(&rqueue, MAX_THREADS_MASK);
631 while (tmp_rq) {
632 t = eb32sc_entry(tmp_rq, struct task, rq);
633 tmp_rq = eb32sc_next(tmp_rq, MAX_THREADS_MASK);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200634 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100635 }
636 /* cleanup the timers queue */
William Lallemandb5823392018-12-06 15:14:37 +0100637 tmp_wq = eb32_first(&timers);
638 while (tmp_wq) {
639 t = eb32_entry(tmp_wq, struct task, wq);
640 tmp_wq = eb32_next(tmp_wq);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200641 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100642 }
643#endif
644 /* clean the per thread run queue */
645 for (i = 0; i < global.nbthread; i++) {
William Lallemandb5823392018-12-06 15:14:37 +0100646 tmp_rq = eb32sc_first(&task_per_thread[i].rqueue, MAX_THREADS_MASK);
647 while (tmp_rq) {
648 t = eb32sc_entry(tmp_rq, struct task, rq);
649 tmp_rq = eb32sc_next(tmp_rq, MAX_THREADS_MASK);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200650 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100651 }
652 /* cleanup the per thread timers queue */
William Lallemandb5823392018-12-06 15:14:37 +0100653 tmp_wq = eb32_first(&task_per_thread[i].timers);
654 while (tmp_wq) {
655 t = eb32_entry(tmp_wq, struct task, wq);
656 tmp_wq = eb32_next(tmp_wq);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200657 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100658 }
659 }
660}
661
Willy Tarreaub6b3df32018-11-26 16:31:20 +0100662/* perform minimal intializations */
663static void init_task()
Willy Tarreau4726f532009-03-07 17:25:21 +0100664{
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200665 int i;
666
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200667#ifdef USE_THREAD
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200668 memset(&timers, 0, sizeof(timers));
Willy Tarreau4726f532009-03-07 17:25:21 +0100669 memset(&rqueue, 0, sizeof(rqueue));
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200670#endif
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200671 memset(&task_per_thread, 0, sizeof(task_per_thread));
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200672 for (i = 0; i < MAX_THREADS; i++) {
Willy Tarreaua62917b2020-01-30 18:37:28 +0100673 LIST_INIT(&task_per_thread[i].tasklets[TL_URGENT]);
674 LIST_INIT(&task_per_thread[i].tasklets[TL_NORMAL]);
675 LIST_INIT(&task_per_thread[i].tasklets[TL_BULK]);
Olivier Houchard06910462019-10-11 16:35:01 +0200676 MT_LIST_INIT(&task_per_thread[i].shared_tasklet_list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200677 }
Willy Tarreau4726f532009-03-07 17:25:21 +0100678}
679
Willy Tarreaub6b3df32018-11-26 16:31:20 +0100680INITCALL0(STG_PREPARE, init_task);
681
Willy Tarreaubaaee002006-06-26 02:48:02 +0200682/*
683 * Local variables:
684 * c-indent-level: 8
685 * c-basic-offset: 8
686 * End:
687 */