blob: bcf18b239e494de07252bdee48917c23c9be46eb [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 Tarreau4c7e4b72020-05-27 12:58:42 +020015#include <haproxy/api.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020016#include <haproxy/pool.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020017#include <haproxy/list.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020018#include <haproxy/stream.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020019#include <haproxy/task.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020020#include <haproxy/tools.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020021#include <haproxy/time.h>
Willy Tarreau8d2b7772020-05-27 10:58:19 +020022#include <import/eb32sctree.h>
23#include <import/eb32tree.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020024
Willy Tarreau0f6ffd62020-06-03 19:33:00 +020025#include <haproxy/fd.h>
Willy Tarreau66347942020-06-01 12:18:08 +020026#include <haproxy/freq_ctr.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020027
Willy Tarreau8ceae722018-11-26 11:58:30 +010028DECLARE_POOL(pool_head_task, "task", sizeof(struct task));
29DECLARE_POOL(pool_head_tasklet, "tasklet", sizeof(struct tasklet));
Willy Tarreau96bcfd72007-04-29 10:41:56 +020030
Thierry FOURNIERd6975962017-07-12 14:31:10 +020031/* This is the memory pool containing all the signal structs. These
Joseph Herlantcf92b6d2018-11-15 14:19:23 -080032 * struct are used to store each required signal between two tasks.
Thierry FOURNIERd6975962017-07-12 14:31:10 +020033 */
Willy Tarreau8ceae722018-11-26 11:58:30 +010034DECLARE_POOL(pool_head_notification, "notification", sizeof(struct notification));
Thierry FOURNIERd6975962017-07-12 14:31:10 +020035
Willy Tarreaua4613182009-03-21 18:13:21 +010036unsigned int nb_tasks = 0;
Olivier Houchardeba0c0b2018-07-26 18:53:28 +020037volatile unsigned long global_tasks_mask = 0; /* Mask of threads with tasks in the global runqueue */
Christopher Faulet34c5cc92016-12-06 09:15:30 +010038unsigned int tasks_run_queue = 0;
39unsigned int tasks_run_queue_cur = 0; /* copy of the run queue size */
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 Tarreaub20aa9e2018-10-15 14:52:21 +020049struct eb_root timers; /* sorted timers tree, global */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020050struct eb_root rqueue; /* tree constituting the run queue */
Olivier Houchard77551ee2018-07-26 15:59:38 +020051int global_rqueue_size; /* Number of element sin the global runqueue */
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020052#endif
Willy Tarreaub20aa9e2018-10-15 14:52:21 +020053
Willy Tarreaue35c94a2009-03-21 10:01:42 +010054static unsigned int rqueue_ticks; /* insertion count */
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 Tarreau4726f532009-03-07 17:25:21 +010058/* Puts the task <t> in run queue at a position depending on t->nice. <t> is
59 * returned. The nice value assigns boosts in 32th of the run queue size. A
Christopher Faulet34c5cc92016-12-06 09:15:30 +010060 * nice value of -1024 sets the task to -tasks_run_queue*32, while a nice value
61 * of 1024 sets the task to tasks_run_queue*32. The state flags are cleared, so
62 * the caller will have to set its flags after this call.
Willy Tarreau4726f532009-03-07 17:25:21 +010063 * The task must not already be in the run queue. If unsure, use the safer
64 * task_wakeup() function.
Willy Tarreau91e99932008-06-30 07:51:00 +020065 */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020066void __task_wakeup(struct task *t, struct eb_root *root)
Willy Tarreaue33aece2007-04-30 13:15:14 +020067{
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020068#ifdef USE_THREAD
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020069 if (root == &rqueue) {
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020070 HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020071 }
Willy Tarreau2d1fd0a2019-04-15 09:18:31 +020072#endif
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020073 /* Make sure if the task isn't in the runqueue, nobody inserts it
74 * in the meanwhile.
75 */
Olivier Houchard4c2832852019-03-08 18:48:47 +010076 _HA_ATOMIC_ADD(&tasks_run_queue, 1);
Olivier Houchardc4aac9e2018-07-26 15:25:49 +020077#ifdef USE_THREAD
78 if (root == &rqueue) {
Olivier Houchardde82aea2019-04-17 19:10:22 +020079 global_tasks_mask |= t->thread_mask;
Olivier Houcharded1a6a02019-04-18 14:12:51 +020080 __ha_barrier_store();
Olivier Houchardc4aac9e2018-07-26 15:25:49 +020081 }
82#endif
Olivier Houchard4c2832852019-03-08 18:48:47 +010083 t->rq.key = _HA_ATOMIC_ADD(&rqueue_ticks, 1);
Willy Tarreau91e99932008-06-30 07:51:00 +020084
85 if (likely(t->nice)) {
86 int offset;
87
Olivier Houchard4c2832852019-03-08 18:48:47 +010088 _HA_ATOMIC_ADD(&niced_tasks, 1);
Willy Tarreau2d1fd0a2019-04-15 09:18:31 +020089 offset = t->nice * (int)global.tune.runqueue_depth;
Willy Tarreau4726f532009-03-07 17:25:21 +010090 t->rq.key += offset;
Willy Tarreau91e99932008-06-30 07:51:00 +020091 }
92
Willy Tarreaud9add3a2019-04-25 08:57:41 +020093 if (task_profiling_mask & tid_bit)
Willy Tarreau9efd7452018-05-31 14:48:54 +020094 t->call_date = now_mono_time();
95
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020096 eb32sc_insert(root, &t->rq, t->thread_mask);
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020097#ifdef USE_THREAD
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020098 if (root == &rqueue) {
99 global_rqueue_size++;
Olivier Houchard4c2832852019-03-08 18:48:47 +0100100 _HA_ATOMIC_OR(&t->state, TASK_GLOBAL);
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200101 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200102 } else
103#endif
104 {
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200105 int nb = ((void *)root - (void *)&task_per_thread[0].rqueue) / sizeof(task_per_thread[0]);
106 task_per_thread[nb].rqueue_size++;
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200107 }
Willy Tarreau85d9b842018-07-27 17:14:41 +0200108#ifdef USE_THREAD
Olivier Houchard79321b92018-07-26 17:55:11 +0200109 /* If all threads that are supposed to handle this task are sleeping,
110 * wake one.
111 */
112 if ((((t->thread_mask & all_threads_mask) & sleeping_thread_mask) ==
Olivier Houchard1b327902019-03-15 00:23:10 +0100113 (t->thread_mask & all_threads_mask))) {
114 unsigned long m = (t->thread_mask & all_threads_mask) &~ tid_bit;
115
116 m = (m & (m - 1)) ^ m; // keep lowest bit set
117 _HA_ATOMIC_AND(&sleeping_thread_mask, ~m);
118 wake_thread(my_ffsl(m) - 1);
119 }
Willy Tarreau85d9b842018-07-27 17:14:41 +0200120#endif
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200121 return;
Willy Tarreaue33aece2007-04-30 13:15:14 +0200122}
Willy Tarreaud825eef2007-05-12 22:35:00 +0200123
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200124/*
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100125 * __task_queue()
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200126 *
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200127 * Inserts a task into wait queue <wq> at the position given by its expiration
Willy Tarreau4726f532009-03-07 17:25:21 +0100128 * date. It does not matter if the task was already in the wait queue or not,
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100129 * as it will be unlinked. The task must not have an infinite expiration timer.
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100130 * Last, tasks must not be queued further than the end of the tree, which is
131 * between <now_ms> and <now_ms> + 2^31 ms (now+24days in 32bit).
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100132 *
133 * This function should not be used directly, it is meant to be called by the
134 * inline version of task_queue() which performs a few cheap preliminary tests
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200135 * before deciding to call __task_queue(). Moreover this function doesn't care
136 * at all about locking so the caller must be careful when deciding whether to
137 * lock or not around this call.
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200138 */
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200139void __task_queue(struct task *task, struct eb_root *wq)
Willy Tarreau964c9362007-01-07 00:38:00 +0100140{
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100141 if (likely(task_in_wq(task)))
Willy Tarreau4726f532009-03-07 17:25:21 +0100142 __task_unlink_wq(task);
Willy Tarreau4726f532009-03-07 17:25:21 +0100143
144 /* the task is not in the queue now */
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100145 task->wq.key = task->expire;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200146#ifdef DEBUG_CHECK_INVALID_EXPIRATION_DATES
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100147 if (tick_is_lt(task->wq.key, now_ms))
Willy Tarreau28c41a42008-06-29 17:00:59 +0200148 /* we're queuing too far away or in the past (most likely) */
Willy Tarreau4726f532009-03-07 17:25:21 +0100149 return;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200150#endif
Willy Tarreauce44f122008-07-05 18:16:19 +0200151
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200152 eb32_insert(wq, &task->wq);
Willy Tarreau964c9362007-01-07 00:38:00 +0100153}
154
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200155/*
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200156 * Extract all expired timers from the timer queue, and wakes up all
Willy Tarreauc49ba522019-12-11 08:12:23 +0100157 * associated tasks.
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200158 */
Willy Tarreauc49ba522019-12-11 08:12:23 +0100159void wake_expired_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200160{
Willy Tarreaud022e9c2019-09-24 08:25:15 +0200161 struct task_per_thread * const tt = sched; // thread's tasks
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200162 struct task *task;
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200163 struct eb32_node *eb;
Willy Tarreauaf613e82020-06-05 08:40:51 +0200164 __decl_thread(int key);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200165
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100166 while (1) {
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200167 lookup_next_local:
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200168 eb = eb32_lookup_ge(&tt->timers, now_ms - TIMER_LOOK_BACK);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200169 if (!eb) {
170 /* we might have reached the end of the tree, typically because
171 * <now_ms> is in the first half and we're first scanning the last
172 * half. Let's loop back to the beginning of the tree now.
173 */
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200174 eb = eb32_first(&tt->timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200175 if (likely(!eb))
176 break;
177 }
178
Willy Tarreauc49ba522019-12-11 08:12:23 +0100179 if (tick_is_lt(now_ms, eb->key))
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200180 break;
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200181
182 /* timer looks expired, detach it from the queue */
183 task = eb32_entry(eb, struct task, wq);
184 __task_unlink_wq(task);
185
186 /* It is possible that this task was left at an earlier place in the
187 * tree because a recent call to task_queue() has not moved it. This
188 * happens when the new expiration date is later than the old one.
189 * Since it is very unlikely that we reach a timeout anyway, it's a
190 * lot cheaper to proceed like this because we almost never update
191 * the tree. We may also find disabled expiration dates there. Since
192 * we have detached the task from the tree, we simply call task_queue
193 * to take care of this. Note that we might occasionally requeue it at
194 * the same place, before <eb>, so we have to check if this happens,
195 * and adjust <eb>, otherwise we may skip it which is not what we want.
196 * We may also not requeue the task (and not point eb at it) if its
197 * expiration time is not set.
198 */
199 if (!tick_is_expired(task->expire, now_ms)) {
200 if (tick_isset(task->expire))
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200201 __task_queue(task, &tt->timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200202 goto lookup_next_local;
203 }
204 task_wakeup(task, TASK_WOKEN_TIMER);
205 }
206
207#ifdef USE_THREAD
Willy Tarreau1e928c02019-05-28 18:57:25 +0200208 if (eb_is_empty(&timers))
209 goto leave;
210
211 HA_RWLOCK_RDLOCK(TASK_WQ_LOCK, &wq_lock);
212 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
213 if (!eb) {
214 eb = eb32_first(&timers);
215 if (likely(!eb)) {
216 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
217 goto leave;
218 }
219 }
220 key = eb->key;
221 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
222
Willy Tarreauc49ba522019-12-11 08:12:23 +0100223 if (tick_is_lt(now_ms, key))
Willy Tarreau1e928c02019-05-28 18:57:25 +0200224 goto leave;
Willy Tarreau1e928c02019-05-28 18:57:25 +0200225
226 /* There's really something of interest here, let's visit the queue */
227
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200228 while (1) {
Willy Tarreauef28dc12019-05-28 18:48:07 +0200229 HA_RWLOCK_WRLOCK(TASK_WQ_LOCK, &wq_lock);
Emeric Brunc60def82017-09-27 14:59:38 +0200230 lookup_next:
Emeric Brun01948972017-03-30 15:37:25 +0200231 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
Emeric Brunc60def82017-09-27 14:59:38 +0200232 if (!eb) {
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100233 /* we might have reached the end of the tree, typically because
234 * <now_ms> is in the first half and we're first scanning the last
235 * half. Let's loop back to the beginning of the tree now.
236 */
237 eb = eb32_first(&timers);
Willy Tarreaub992ba12017-11-05 19:09:27 +0100238 if (likely(!eb))
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100239 break;
240 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200241
Willy Tarreauc49ba522019-12-11 08:12:23 +0100242 if (tick_is_lt(now_ms, eb->key))
Willy Tarreaub992ba12017-11-05 19:09:27 +0100243 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200244
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100245 /* timer looks expired, detach it from the queue */
246 task = eb32_entry(eb, struct task, wq);
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100247 __task_unlink_wq(task);
Willy Tarreau41365222009-03-08 07:46:27 +0100248
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100249 /* It is possible that this task was left at an earlier place in the
250 * tree because a recent call to task_queue() has not moved it. This
251 * happens when the new expiration date is later than the old one.
252 * Since it is very unlikely that we reach a timeout anyway, it's a
253 * lot cheaper to proceed like this because we almost never update
254 * the tree. We may also find disabled expiration dates there. Since
255 * we have detached the task from the tree, we simply call task_queue
Willy Tarreau814c9782009-07-14 23:48:55 +0200256 * to take care of this. Note that we might occasionally requeue it at
257 * the same place, before <eb>, so we have to check if this happens,
258 * and adjust <eb>, otherwise we may skip it which is not what we want.
Willy Tarreau34e98ea2009-08-09 09:09:54 +0200259 * We may also not requeue the task (and not point eb at it) if its
260 * expiration time is not set.
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100261 */
262 if (!tick_is_expired(task->expire, now_ms)) {
Willy Tarreaub992ba12017-11-05 19:09:27 +0100263 if (tick_isset(task->expire))
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200264 __task_queue(task, &timers);
Emeric Brunc60def82017-09-27 14:59:38 +0200265 goto lookup_next;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200266 }
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100267 task_wakeup(task, TASK_WOKEN_TIMER);
Willy Tarreauef28dc12019-05-28 18:48:07 +0200268 HA_RWLOCK_WRUNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100269 }
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200270
Willy Tarreauef28dc12019-05-28 18:48:07 +0200271 HA_RWLOCK_WRUNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200272#endif
Willy Tarreau1e928c02019-05-28 18:57:25 +0200273leave:
Willy Tarreauc49ba522019-12-11 08:12:23 +0100274 return;
275}
276
277/* Checks the next timer for the current thread by looking into its own timer
278 * list and the global one. It may return TICK_ETERNITY if no timer is present.
Ilya Shipitsin856aabc2020-04-16 23:51:34 +0500279 * Note that the next timer might very well be slightly in the past.
Willy Tarreauc49ba522019-12-11 08:12:23 +0100280 */
281int next_timer_expiry()
282{
283 struct task_per_thread * const tt = sched; // thread's tasks
284 struct eb32_node *eb;
285 int ret = TICK_ETERNITY;
Willy Tarreauaf613e82020-06-05 08:40:51 +0200286 __decl_thread(int key);
Willy Tarreauc49ba522019-12-11 08:12:23 +0100287
288 /* first check in the thread-local timers */
289 eb = eb32_lookup_ge(&tt->timers, now_ms - TIMER_LOOK_BACK);
290 if (!eb) {
291 /* we might have reached the end of the tree, typically because
292 * <now_ms> is in the first half and we're first scanning the last
293 * half. Let's loop back to the beginning of the tree now.
294 */
295 eb = eb32_first(&tt->timers);
296 }
297
298 if (eb)
299 ret = eb->key;
300
301#ifdef USE_THREAD
302 if (!eb_is_empty(&timers)) {
303 HA_RWLOCK_RDLOCK(TASK_WQ_LOCK, &wq_lock);
304 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
305 if (!eb)
306 eb = eb32_first(&timers);
307 if (eb)
308 key = eb->key;
309 HA_RWLOCK_RDUNLOCK(TASK_WQ_LOCK, &wq_lock);
310 if (eb)
311 ret = tick_first(ret, key);
312 }
313#endif
Willy Tarreaub992ba12017-11-05 19:09:27 +0100314 return ret;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200315}
316
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100317/* Walks over tasklet list <list> and run at most <max> of them. Returns
318 * the number of entries effectively processed (tasks and tasklets merged).
319 * The count of tasks in the list for the current thread is adjusted.
320 */
Willy Tarreau27d00c02020-03-03 14:59:28 +0100321int run_tasks_from_list(struct list *list, int max)
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100322{
323 struct task *(*process)(struct task *t, void *ctx, unsigned short state);
324 struct task *t;
325 unsigned short state;
326 void *ctx;
327 int done = 0;
328
329 while (done < max && !LIST_ISEMPTY(list)) {
330 t = (struct task *)LIST_ELEM(list->n, struct tasklet *, list);
Willy Tarreau952c2642020-01-31 16:39:30 +0100331 state = (t->state & (TASK_SHARED_WQ|TASK_SELF_WAKING));
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100332
333 ti->flags &= ~TI_FL_STUCK; // this thread is still running
334 activity[tid].ctxsw++;
335 ctx = t->context;
336 process = t->process;
337 t->calls++;
Willy Tarreaud23d4132020-01-31 10:39:03 +0100338 sched->current = t;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100339
340 if (TASK_IS_TASKLET(t)) {
Willy Tarreau952c2642020-01-31 16:39:30 +0100341 state = _HA_ATOMIC_XCHG(&t->state, state);
342 __ha_barrier_atomic_store();
343 __tasklet_remove_from_tasklet_list((struct tasklet *)t);
Olivier Houchardc62d9ab2020-03-17 18:15:04 +0100344 process(t, ctx, state);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100345 done++;
Willy Tarreaud23d4132020-01-31 10:39:03 +0100346 sched->current = NULL;
347 __ha_barrier_store();
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100348 continue;
349 }
350
Willy Tarreau952c2642020-01-31 16:39:30 +0100351 state = _HA_ATOMIC_XCHG(&t->state, state | TASK_RUNNING);
352 __ha_barrier_atomic_store();
353 __tasklet_remove_from_tasklet_list((struct tasklet *)t);
354
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100355 /* OK then this is a regular task */
356
357 task_per_thread[tid].task_list_size--;
358 if (unlikely(t->call_date)) {
359 uint64_t now_ns = now_mono_time();
360
361 t->lat_time += now_ns - t->call_date;
362 t->call_date = now_ns;
363 }
364
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100365 __ha_barrier_store();
366 if (likely(process == process_stream))
367 t = process_stream(t, ctx, state);
368 else if (process != NULL)
369 t = process(t, ctx, state);
370 else {
371 __task_free(t);
372 sched->current = NULL;
373 __ha_barrier_store();
374 /* We don't want max_processed to be decremented if
375 * we're just freeing a destroyed task, we should only
376 * do so if we really ran a task.
377 */
378 continue;
379 }
380 sched->current = NULL;
381 __ha_barrier_store();
382 /* If there is a pending state we have to wake up the task
383 * immediately, else we defer it into wait queue
384 */
385 if (t != NULL) {
386 if (unlikely(t->call_date)) {
387 t->cpu_time += now_mono_time() - t->call_date;
388 t->call_date = 0;
389 }
390
391 state = _HA_ATOMIC_AND(&t->state, ~TASK_RUNNING);
392 if (state & TASK_WOKEN_ANY)
393 task_wakeup(t, 0);
394 else
395 task_queue(t);
396 }
397 done++;
398 }
399 return done;
400}
401
Willy Tarreau58b458d2008-06-29 22:40:23 +0200402/* The run queue is chronologically sorted in a tree. An insertion counter is
403 * used to assign a position to each task. This counter may be combined with
404 * other variables (eg: nice value) to set the final position in the tree. The
405 * counter may wrap without a problem, of course. We then limit the number of
Christopher Faulet8a48f672017-11-14 10:38:36 +0100406 * tasks processed to 200 in any case, so that general latency remains low and
Willy Tarreaucde79022019-04-12 18:03:41 +0200407 * so that task positions have a chance to be considered. The function scans
408 * both the global and local run queues and picks the most urgent task between
409 * the two. We need to grab the global runqueue lock to touch it so it's taken
410 * on the very first access to the global run queue and is released as soon as
411 * it reaches the end.
Willy Tarreau58b458d2008-06-29 22:40:23 +0200412 *
413 * The function adjusts <next> if a new event is closer.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200414 */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100415void process_runnable_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200416{
Willy Tarreaud022e9c2019-09-24 08:25:15 +0200417 struct task_per_thread * const tt = sched;
Willy Tarreaucde79022019-04-12 18:03:41 +0200418 struct eb32sc_node *lrq = NULL; // next local run queue entry
419 struct eb32sc_node *grq = NULL; // next global run queue entry
Willy Tarreau964c9362007-01-07 00:38:00 +0100420 struct task *t;
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100421 int max_processed, done;
Olivier Houchard06910462019-10-11 16:35:01 +0200422 struct mt_list *tmp_list;
Christopher Faulet3911ee82017-11-14 10:26:53 +0100423
Willy Tarreaue6a02fa2019-05-22 07:06:44 +0200424 ti->flags &= ~TI_FL_STUCK; // this thread is still running
425
Olivier Houchardcfbb3e62019-05-29 19:22:43 +0200426 if (!thread_has_tasks()) {
Willy Tarreaucde79022019-04-12 18:03:41 +0200427 activity[tid].empty_rq++;
428 return;
429 }
Olivier Houchard06910462019-10-11 16:35:01 +0200430 /* Merge the list of tasklets waken up by other threads to the
431 * main list.
432 */
433 tmp_list = MT_LIST_BEHEAD(&sched->shared_tasklet_list);
434 if (tmp_list)
Willy Tarreaua62917b2020-01-30 18:37:28 +0100435 LIST_SPLICE_END_DETACHED(&sched->tasklets[TL_URGENT], (struct list *)tmp_list);
Willy Tarreaucde79022019-04-12 18:03:41 +0200436
Christopher Faulet34c5cc92016-12-06 09:15:30 +0100437 tasks_run_queue_cur = tasks_run_queue; /* keep a copy for reporting */
Willy Tarreauc7bdf092009-03-21 18:33:52 +0100438 nb_tasks_cur = nb_tasks;
Olivier Houchard1599b802018-05-24 18:59:04 +0200439 max_processed = global.tune.runqueue_depth;
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200440
Willy Tarreauc8da0442019-04-15 09:33:42 +0200441 if (likely(niced_tasks))
442 max_processed = (max_processed + 3) / 4;
443
Willy Tarreau1dfc9bb2020-01-31 17:55:09 +0100444 /* run up to max_processed/3 urgent tasklets */
445 done = run_tasks_from_list(&tt->tasklets[TL_URGENT], (max_processed + 2) / 3);
Willy Tarreaua62917b2020-01-30 18:37:28 +0100446 max_processed -= done;
447
Willy Tarreau1dfc9bb2020-01-31 17:55:09 +0100448 /* pick up to max_processed/2 (~=3/4*(max_processed-done)) regular tasks from prio-ordered run queues */
Willy Tarreaua62917b2020-01-30 18:37:28 +0100449
Willy Tarreaucde79022019-04-12 18:03:41 +0200450 /* Note: the grq lock is always held when grq is not null */
Christopher Faulet8a48f672017-11-14 10:38:36 +0100451
Willy Tarreau1dfc9bb2020-01-31 17:55:09 +0100452 while (tt->task_list_size < (3 * max_processed + 3) / 4) {
Willy Tarreaucde79022019-04-12 18:03:41 +0200453 if ((global_tasks_mask & tid_bit) && !grq) {
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200454#ifdef USE_THREAD
Willy Tarreaucde79022019-04-12 18:03:41 +0200455 HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
456 grq = eb32sc_lookup_ge(&rqueue, rqueue_ticks - TIMER_LOOK_BACK, tid_bit);
457 if (unlikely(!grq)) {
458 grq = eb32sc_first(&rqueue, tid_bit);
459 if (!grq) {
Olivier Houchardde82aea2019-04-17 19:10:22 +0200460 global_tasks_mask &= ~tid_bit;
Willy Tarreaucde79022019-04-12 18:03:41 +0200461 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Olivier Houchardc4aac9e2018-07-26 15:25:49 +0200462 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100463 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200464#endif
Willy Tarreaucde79022019-04-12 18:03:41 +0200465 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100466
Willy Tarreaucde79022019-04-12 18:03:41 +0200467 /* If a global task is available for this thread, it's in grq
468 * now and the global RQ is locked.
469 */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200470
Willy Tarreaucde79022019-04-12 18:03:41 +0200471 if (!lrq) {
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200472 lrq = eb32sc_lookup_ge(&tt->rqueue, rqueue_ticks - TIMER_LOOK_BACK, tid_bit);
Willy Tarreaucde79022019-04-12 18:03:41 +0200473 if (unlikely(!lrq))
Willy Tarreau4c1e1ad2019-09-24 07:19:08 +0200474 lrq = eb32sc_first(&tt->rqueue, tid_bit);
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100475 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100476
Willy Tarreaucde79022019-04-12 18:03:41 +0200477 if (!lrq && !grq)
478 break;
479
480 if (likely(!grq || (lrq && (int)(lrq->key - grq->key) <= 0))) {
481 t = eb32sc_entry(lrq, struct task, rq);
482 lrq = eb32sc_next(lrq, tid_bit);
483 __task_unlink_rq(t);
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200484 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200485#ifdef USE_THREAD
Willy Tarreaucde79022019-04-12 18:03:41 +0200486 else {
487 t = eb32sc_entry(grq, struct task, rq);
488 grq = eb32sc_next(grq, tid_bit);
489 __task_unlink_rq(t);
490 if (unlikely(!grq)) {
491 grq = eb32sc_first(&rqueue, tid_bit);
492 if (!grq) {
Olivier Houchardde82aea2019-04-17 19:10:22 +0200493 global_tasks_mask &= ~tid_bit;
Willy Tarreaucde79022019-04-12 18:03:41 +0200494 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreaucde79022019-04-12 18:03:41 +0200495 }
496 }
Emeric Brun01948972017-03-30 15:37:25 +0200497 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200498#endif
Willy Tarreaucde79022019-04-12 18:03:41 +0200499
Olivier Houchardff1e9f32019-09-20 17:18:35 +0200500 /* Make sure the entry doesn't appear to be in a list */
Olivier Houchard06910462019-10-11 16:35:01 +0200501 LIST_INIT(&((struct tasklet *)t)->list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200502 /* And add it to the local task list */
Willy Tarreaua62917b2020-01-30 18:37:28 +0100503 tasklet_insert_into_tasklet_list(&tt->tasklets[TL_NORMAL], (struct tasklet *)t);
Olivier Houchard06910462019-10-11 16:35:01 +0200504 tt->task_list_size++;
Willy Tarreaubc13bec2019-04-30 14:55:18 +0200505 activity[tid].tasksw++;
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200506 }
Willy Tarreaucde79022019-04-12 18:03:41 +0200507
508 /* release the rqueue lock */
509 if (grq) {
510 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
511 grq = NULL;
512 }
513
Willy Tarreau1dfc9bb2020-01-31 17:55:09 +0100514 /* run between 0.4*max_processed and max_processed/2 regular tasks */
515 done = run_tasks_from_list(&tt->tasklets[TL_NORMAL], (3 * max_processed + 3) / 4);
Willy Tarreau4ffa0b52020-01-30 18:13:13 +0100516 max_processed -= done;
Willy Tarreaucde79022019-04-12 18:03:41 +0200517
Willy Tarreau1dfc9bb2020-01-31 17:55:09 +0100518 /* run between max_processed/4 and max_processed bulk tasklets */
Willy Tarreaua62917b2020-01-30 18:37:28 +0100519 done = run_tasks_from_list(&tt->tasklets[TL_BULK], max_processed);
520 max_processed -= done;
521
522 if (!LIST_ISEMPTY(&sched->tasklets[TL_URGENT]) |
523 !LIST_ISEMPTY(&sched->tasklets[TL_NORMAL]) |
524 !LIST_ISEMPTY(&sched->tasklets[TL_BULK]))
Willy Tarreaucde79022019-04-12 18:03:41 +0200525 activity[tid].long_rq++;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200526}
527
Willy Tarreau64e60122019-07-12 08:31:17 +0200528/* create a work list array for <nbthread> threads, using tasks made of
529 * function <fct>. The context passed to the function will be the pointer to
530 * the thread's work list, which will contain a copy of argument <arg>. The
531 * wake up reason will be TASK_WOKEN_OTHER. The pointer to the work_list array
532 * is returned on success, otherwise NULL on failure.
533 */
534struct work_list *work_list_create(int nbthread,
535 struct task *(*fct)(struct task *, void *, unsigned short),
536 void *arg)
537{
538 struct work_list *wl;
539 int i;
540
541 wl = calloc(nbthread, sizeof(*wl));
542 if (!wl)
543 goto fail;
544
545 for (i = 0; i < nbthread; i++) {
Olivier Houchard859dc802019-08-08 15:47:21 +0200546 MT_LIST_INIT(&wl[i].head);
Willy Tarreau64e60122019-07-12 08:31:17 +0200547 wl[i].task = task_new(1UL << i);
548 if (!wl[i].task)
549 goto fail;
550 wl[i].task->process = fct;
551 wl[i].task->context = &wl[i];
552 wl[i].arg = arg;
553 }
554 return wl;
555
556 fail:
557 work_list_destroy(wl, nbthread);
558 return NULL;
559}
560
561/* destroy work list <work> */
562void work_list_destroy(struct work_list *work, int nbthread)
563{
564 int t;
565
566 if (!work)
567 return;
568 for (t = 0; t < nbthread; t++)
569 task_destroy(work[t].task);
570 free(work);
571}
572
William Lallemand27f3fa52018-12-06 14:05:20 +0100573/*
574 * Delete every tasks before running the master polling loop
575 */
576void mworker_cleantasks()
577{
578 struct task *t;
579 int i;
William Lallemandb5823392018-12-06 15:14:37 +0100580 struct eb32_node *tmp_wq = NULL;
581 struct eb32sc_node *tmp_rq = NULL;
William Lallemand27f3fa52018-12-06 14:05:20 +0100582
583#ifdef USE_THREAD
584 /* cleanup the global run queue */
William Lallemandb5823392018-12-06 15:14:37 +0100585 tmp_rq = eb32sc_first(&rqueue, MAX_THREADS_MASK);
586 while (tmp_rq) {
587 t = eb32sc_entry(tmp_rq, struct task, rq);
588 tmp_rq = eb32sc_next(tmp_rq, MAX_THREADS_MASK);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200589 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100590 }
591 /* cleanup the timers queue */
William Lallemandb5823392018-12-06 15:14:37 +0100592 tmp_wq = eb32_first(&timers);
593 while (tmp_wq) {
594 t = eb32_entry(tmp_wq, struct task, wq);
595 tmp_wq = eb32_next(tmp_wq);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200596 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100597 }
598#endif
599 /* clean the per thread run queue */
600 for (i = 0; i < global.nbthread; i++) {
William Lallemandb5823392018-12-06 15:14:37 +0100601 tmp_rq = eb32sc_first(&task_per_thread[i].rqueue, MAX_THREADS_MASK);
602 while (tmp_rq) {
603 t = eb32sc_entry(tmp_rq, struct task, rq);
604 tmp_rq = eb32sc_next(tmp_rq, MAX_THREADS_MASK);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200605 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100606 }
607 /* cleanup the per thread timers queue */
William Lallemandb5823392018-12-06 15:14:37 +0100608 tmp_wq = eb32_first(&task_per_thread[i].timers);
609 while (tmp_wq) {
610 t = eb32_entry(tmp_wq, struct task, wq);
611 tmp_wq = eb32_next(tmp_wq);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200612 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100613 }
614 }
615}
616
Willy Tarreaub6b3df32018-11-26 16:31:20 +0100617/* perform minimal intializations */
618static void init_task()
Willy Tarreau4726f532009-03-07 17:25:21 +0100619{
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200620 int i;
621
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200622#ifdef USE_THREAD
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200623 memset(&timers, 0, sizeof(timers));
Willy Tarreau4726f532009-03-07 17:25:21 +0100624 memset(&rqueue, 0, sizeof(rqueue));
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200625#endif
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200626 memset(&task_per_thread, 0, sizeof(task_per_thread));
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200627 for (i = 0; i < MAX_THREADS; i++) {
Willy Tarreaua62917b2020-01-30 18:37:28 +0100628 LIST_INIT(&task_per_thread[i].tasklets[TL_URGENT]);
629 LIST_INIT(&task_per_thread[i].tasklets[TL_NORMAL]);
630 LIST_INIT(&task_per_thread[i].tasklets[TL_BULK]);
Olivier Houchard06910462019-10-11 16:35:01 +0200631 MT_LIST_INIT(&task_per_thread[i].shared_tasklet_list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200632 }
Willy Tarreau4726f532009-03-07 17:25:21 +0100633}
634
Willy Tarreaub6b3df32018-11-26 16:31:20 +0100635INITCALL0(STG_PREPARE, init_task);
636
Willy Tarreaubaaee002006-06-26 02:48:02 +0200637/*
638 * Local variables:
639 * c-indent-level: 8
640 * c-basic-offset: 8
641 * End:
642 */