blob: f38807c7a1e8549f6fd1ee1978f62936d35431be [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 Tarreau2dd0d472006-06-29 17:53:05 +020015#include <common/config.h>
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020016#include <common/memory.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020017#include <common/mini-clist.h>
Willy Tarreau96bcfd72007-04-29 10:41:56 +020018#include <common/standard.h>
Willy Tarreaua6a6a932007-04-28 22:40:08 +020019#include <common/time.h>
Willy Tarreau8d388052017-11-05 13:34:20 +010020#include <eb32sctree.h>
Willy Tarreau45cb4fb2009-10-26 21:10:04 +010021#include <eb32tree.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020022
Willy Tarreaud825eef2007-05-12 22:35:00 +020023#include <proto/proxy.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020024#include <proto/stream.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020025#include <proto/task.h>
Olivier Houchard79321b92018-07-26 17:55:11 +020026#include <proto/fd.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 Houchard9b03c0c2018-07-26 18:45:22 +020037volatile unsigned long active_tasks_mask = 0; /* Mask of threads with active tasks */
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 Tarreau6d1222c2017-11-26 10:08:06 +010044THREAD_LOCAL struct task *curr_task = NULL; /* task currently running or NULL */
45
Willy Tarreau86abe442018-11-25 20:12:18 +010046__decl_aligned_spinlock(rq_lock); /* spin lock related to run queue */
47__decl_aligned_spinlock(wq_lock); /* spin lock related to 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 Houchardd2b5d162019-03-08 13:47:21 +010081 __ha_barrier_atomic_store();
Olivier Houchardc4aac9e2018-07-26 15:25:49 +020082 }
83#endif
Olivier Houchard4c2832852019-03-08 18:48:47 +010084 _HA_ATOMIC_OR(&active_tasks_mask, t->thread_mask);
85 t->rq.key = _HA_ATOMIC_ADD(&rqueue_ticks, 1);
Willy Tarreau91e99932008-06-30 07:51:00 +020086
87 if (likely(t->nice)) {
88 int offset;
89
Olivier Houchard4c2832852019-03-08 18:48:47 +010090 _HA_ATOMIC_ADD(&niced_tasks, 1);
Willy Tarreau2d1fd0a2019-04-15 09:18:31 +020091 offset = t->nice * (int)global.tune.runqueue_depth;
Willy Tarreau4726f532009-03-07 17:25:21 +010092 t->rq.key += offset;
Willy Tarreau91e99932008-06-30 07:51:00 +020093 }
94
Willy Tarreau9efd7452018-05-31 14:48:54 +020095 if (profiling & HA_PROF_TASKS)
96 t->call_date = now_mono_time();
97
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020098 eb32sc_insert(root, &t->rq, t->thread_mask);
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020099#ifdef USE_THREAD
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200100 if (root == &rqueue) {
101 global_rqueue_size++;
Olivier Houchard4c2832852019-03-08 18:48:47 +0100102 _HA_ATOMIC_OR(&t->state, TASK_GLOBAL);
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200103 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200104 } else
105#endif
106 {
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200107 int nb = ((void *)root - (void *)&task_per_thread[0].rqueue) / sizeof(task_per_thread[0]);
108 task_per_thread[nb].rqueue_size++;
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200109 }
Willy Tarreau85d9b842018-07-27 17:14:41 +0200110#ifdef USE_THREAD
Olivier Houchard79321b92018-07-26 17:55:11 +0200111 /* If all threads that are supposed to handle this task are sleeping,
112 * wake one.
113 */
114 if ((((t->thread_mask & all_threads_mask) & sleeping_thread_mask) ==
Olivier Houchard1b327902019-03-15 00:23:10 +0100115 (t->thread_mask & all_threads_mask))) {
116 unsigned long m = (t->thread_mask & all_threads_mask) &~ tid_bit;
117
118 m = (m & (m - 1)) ^ m; // keep lowest bit set
119 _HA_ATOMIC_AND(&sleeping_thread_mask, ~m);
120 wake_thread(my_ffsl(m) - 1);
121 }
Willy Tarreau85d9b842018-07-27 17:14:41 +0200122#endif
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200123 return;
Willy Tarreaue33aece2007-04-30 13:15:14 +0200124}
Willy Tarreaud825eef2007-05-12 22:35:00 +0200125
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200126/*
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100127 * __task_queue()
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200128 *
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200129 * Inserts a task into wait queue <wq> at the position given by its expiration
Willy Tarreau4726f532009-03-07 17:25:21 +0100130 * date. It does not matter if the task was already in the wait queue or not,
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100131 * as it will be unlinked. The task must not have an infinite expiration timer.
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100132 * Last, tasks must not be queued further than the end of the tree, which is
133 * between <now_ms> and <now_ms> + 2^31 ms (now+24days in 32bit).
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100134 *
135 * This function should not be used directly, it is meant to be called by the
136 * inline version of task_queue() which performs a few cheap preliminary tests
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200137 * before deciding to call __task_queue(). Moreover this function doesn't care
138 * at all about locking so the caller must be careful when deciding whether to
139 * lock or not around this call.
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200140 */
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200141void __task_queue(struct task *task, struct eb_root *wq)
Willy Tarreau964c9362007-01-07 00:38:00 +0100142{
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100143 if (likely(task_in_wq(task)))
Willy Tarreau4726f532009-03-07 17:25:21 +0100144 __task_unlink_wq(task);
Willy Tarreau4726f532009-03-07 17:25:21 +0100145
146 /* the task is not in the queue now */
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100147 task->wq.key = task->expire;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200148#ifdef DEBUG_CHECK_INVALID_EXPIRATION_DATES
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100149 if (tick_is_lt(task->wq.key, now_ms))
Willy Tarreau28c41a42008-06-29 17:00:59 +0200150 /* we're queuing too far away or in the past (most likely) */
Willy Tarreau4726f532009-03-07 17:25:21 +0100151 return;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200152#endif
Willy Tarreauce44f122008-07-05 18:16:19 +0200153
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200154 eb32_insert(wq, &task->wq);
Willy Tarreau964c9362007-01-07 00:38:00 +0100155}
156
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200157/*
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200158 * Extract all expired timers from the timer queue, and wakes up all
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100159 * associated tasks. Returns the date of next event (or eternity).
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200160 */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100161int wake_expired_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200162{
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200163 struct task *task;
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200164 struct eb32_node *eb;
Willy Tarreaub992ba12017-11-05 19:09:27 +0100165 int ret = TICK_ETERNITY;
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 Tarreau8d8747a2018-10-15 16:12:48 +0200169 eb = eb32_lookup_ge(&task_per_thread[tid].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 Tarreau8d8747a2018-10-15 16:12:48 +0200175 eb = eb32_first(&task_per_thread[tid].timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200176 if (likely(!eb))
177 break;
178 }
179
180 if (tick_is_lt(now_ms, eb->key)) {
181 /* timer not expired yet, revisit it later */
182 ret = eb->key;
183 break;
184 }
185
186 /* timer looks expired, detach it from the queue */
187 task = eb32_entry(eb, struct task, wq);
188 __task_unlink_wq(task);
189
190 /* It is possible that this task was left at an earlier place in the
191 * tree because a recent call to task_queue() has not moved it. This
192 * happens when the new expiration date is later than the old one.
193 * Since it is very unlikely that we reach a timeout anyway, it's a
194 * lot cheaper to proceed like this because we almost never update
195 * the tree. We may also find disabled expiration dates there. Since
196 * we have detached the task from the tree, we simply call task_queue
197 * to take care of this. Note that we might occasionally requeue it at
198 * the same place, before <eb>, so we have to check if this happens,
199 * and adjust <eb>, otherwise we may skip it which is not what we want.
200 * We may also not requeue the task (and not point eb at it) if its
201 * expiration time is not set.
202 */
203 if (!tick_is_expired(task->expire, now_ms)) {
204 if (tick_isset(task->expire))
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200205 __task_queue(task, &task_per_thread[tid].timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200206 goto lookup_next_local;
207 }
208 task_wakeup(task, TASK_WOKEN_TIMER);
209 }
210
211#ifdef USE_THREAD
212 while (1) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100213 HA_SPIN_LOCK(TASK_WQ_LOCK, &wq_lock);
Emeric Brunc60def82017-09-27 14:59:38 +0200214 lookup_next:
Emeric Brun01948972017-03-30 15:37:25 +0200215 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
Emeric Brunc60def82017-09-27 14:59:38 +0200216 if (!eb) {
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100217 /* we might have reached the end of the tree, typically because
218 * <now_ms> is in the first half and we're first scanning the last
219 * half. Let's loop back to the beginning of the tree now.
220 */
221 eb = eb32_first(&timers);
Willy Tarreaub992ba12017-11-05 19:09:27 +0100222 if (likely(!eb))
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100223 break;
224 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200225
Willy Tarreaub992ba12017-11-05 19:09:27 +0100226 if (tick_is_lt(now_ms, eb->key)) {
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100227 /* timer not expired yet, revisit it later */
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200228 ret = tick_first(ret, eb->key);
Willy Tarreaub992ba12017-11-05 19:09:27 +0100229 break;
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100230 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200231
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100232 /* timer looks expired, detach it from the queue */
233 task = eb32_entry(eb, struct task, wq);
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100234 __task_unlink_wq(task);
Willy Tarreau41365222009-03-08 07:46:27 +0100235
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100236 /* It is possible that this task was left at an earlier place in the
237 * tree because a recent call to task_queue() has not moved it. This
238 * happens when the new expiration date is later than the old one.
239 * Since it is very unlikely that we reach a timeout anyway, it's a
240 * lot cheaper to proceed like this because we almost never update
241 * the tree. We may also find disabled expiration dates there. Since
242 * we have detached the task from the tree, we simply call task_queue
Willy Tarreau814c9782009-07-14 23:48:55 +0200243 * to take care of this. Note that we might occasionally requeue it at
244 * the same place, before <eb>, so we have to check if this happens,
245 * and adjust <eb>, otherwise we may skip it which is not what we want.
Willy Tarreau34e98ea2009-08-09 09:09:54 +0200246 * We may also not requeue the task (and not point eb at it) if its
247 * expiration time is not set.
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100248 */
249 if (!tick_is_expired(task->expire, now_ms)) {
Willy Tarreaub992ba12017-11-05 19:09:27 +0100250 if (tick_isset(task->expire))
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200251 __task_queue(task, &timers);
Emeric Brunc60def82017-09-27 14:59:38 +0200252 goto lookup_next;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200253 }
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100254 task_wakeup(task, TASK_WOKEN_TIMER);
Willy Tarreau51753452017-11-23 18:36:50 +0100255 HA_SPIN_UNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100256 }
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200257
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100258 HA_SPIN_UNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200259#endif
Willy Tarreaub992ba12017-11-05 19:09:27 +0100260 return ret;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200261}
262
Willy Tarreau58b458d2008-06-29 22:40:23 +0200263/* The run queue is chronologically sorted in a tree. An insertion counter is
264 * used to assign a position to each task. This counter may be combined with
265 * other variables (eg: nice value) to set the final position in the tree. The
266 * counter may wrap without a problem, of course. We then limit the number of
Christopher Faulet8a48f672017-11-14 10:38:36 +0100267 * tasks processed to 200 in any case, so that general latency remains low and
Willy Tarreaucde79022019-04-12 18:03:41 +0200268 * so that task positions have a chance to be considered. The function scans
269 * both the global and local run queues and picks the most urgent task between
270 * the two. We need to grab the global runqueue lock to touch it so it's taken
271 * on the very first access to the global run queue and is released as soon as
272 * it reaches the end.
Willy Tarreau58b458d2008-06-29 22:40:23 +0200273 *
274 * The function adjusts <next> if a new event is closer.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200275 */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100276void process_runnable_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200277{
Willy Tarreaucde79022019-04-12 18:03:41 +0200278 struct eb32sc_node *lrq = NULL; // next local run queue entry
279 struct eb32sc_node *grq = NULL; // next global run queue entry
Willy Tarreau964c9362007-01-07 00:38:00 +0100280 struct task *t;
Emeric Brun01948972017-03-30 15:37:25 +0200281 int max_processed;
Christopher Faulet3911ee82017-11-14 10:26:53 +0100282
Willy Tarreaucde79022019-04-12 18:03:41 +0200283 if (!(active_tasks_mask & tid_bit)) {
284 activity[tid].empty_rq++;
285 return;
286 }
287
Christopher Faulet34c5cc92016-12-06 09:15:30 +0100288 tasks_run_queue_cur = tasks_run_queue; /* keep a copy for reporting */
Willy Tarreauc7bdf092009-03-21 18:33:52 +0100289 nb_tasks_cur = nb_tasks;
Olivier Houchard1599b802018-05-24 18:59:04 +0200290 max_processed = global.tune.runqueue_depth;
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200291
Willy Tarreauc8da0442019-04-15 09:33:42 +0200292 if (likely(niced_tasks))
293 max_processed = (max_processed + 3) / 4;
294
Willy Tarreaucde79022019-04-12 18:03:41 +0200295 /* Note: the grq lock is always held when grq is not null */
Christopher Faulet8a48f672017-11-14 10:38:36 +0100296
Willy Tarreaucde79022019-04-12 18:03:41 +0200297 while (task_per_thread[tid].task_list_size < max_processed) {
298 if ((global_tasks_mask & tid_bit) && !grq) {
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200299#ifdef USE_THREAD
Willy Tarreaucde79022019-04-12 18:03:41 +0200300 HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
301 grq = eb32sc_lookup_ge(&rqueue, rqueue_ticks - TIMER_LOOK_BACK, tid_bit);
302 if (unlikely(!grq)) {
303 grq = eb32sc_first(&rqueue, tid_bit);
304 if (!grq) {
Olivier Houchardde82aea2019-04-17 19:10:22 +0200305 global_tasks_mask &= ~tid_bit;
Willy Tarreaucde79022019-04-12 18:03:41 +0200306 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Olivier Houchardc4aac9e2018-07-26 15:25:49 +0200307 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100308 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200309#endif
Willy Tarreaucde79022019-04-12 18:03:41 +0200310 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100311
Willy Tarreaucde79022019-04-12 18:03:41 +0200312 /* If a global task is available for this thread, it's in grq
313 * now and the global RQ is locked.
314 */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200315
Willy Tarreaucde79022019-04-12 18:03:41 +0200316 if (!lrq) {
317 lrq = eb32sc_lookup_ge(&task_per_thread[tid].rqueue, rqueue_ticks - TIMER_LOOK_BACK, tid_bit);
318 if (unlikely(!lrq))
319 lrq = eb32sc_first(&task_per_thread[tid].rqueue, tid_bit);
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100320 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100321
Willy Tarreaucde79022019-04-12 18:03:41 +0200322 if (!lrq && !grq)
323 break;
324
325 if (likely(!grq || (lrq && (int)(lrq->key - grq->key) <= 0))) {
326 t = eb32sc_entry(lrq, struct task, rq);
327 lrq = eb32sc_next(lrq, tid_bit);
328 __task_unlink_rq(t);
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200329 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200330#ifdef USE_THREAD
Willy Tarreaucde79022019-04-12 18:03:41 +0200331 else {
332 t = eb32sc_entry(grq, struct task, rq);
333 grq = eb32sc_next(grq, tid_bit);
334 __task_unlink_rq(t);
335 if (unlikely(!grq)) {
336 grq = eb32sc_first(&rqueue, tid_bit);
337 if (!grq) {
Olivier Houchardde82aea2019-04-17 19:10:22 +0200338 global_tasks_mask &= ~tid_bit;
Willy Tarreaucde79022019-04-12 18:03:41 +0200339 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreaucde79022019-04-12 18:03:41 +0200340 }
341 }
Emeric Brun01948972017-03-30 15:37:25 +0200342 }
Willy Tarreau3466e3c2019-04-15 18:52:40 +0200343#endif
Willy Tarreaucde79022019-04-12 18:03:41 +0200344
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200345 /* And add it to the local task list */
346 task_insert_into_tasklet_list(t);
347 }
Willy Tarreaucde79022019-04-12 18:03:41 +0200348
349 /* release the rqueue lock */
350 if (grq) {
351 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
352 grq = NULL;
353 }
354
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200355 if (!(global_tasks_mask & tid_bit) && task_per_thread[tid].rqueue_size == 0) {
Olivier Houchard4c2832852019-03-08 18:48:47 +0100356 _HA_ATOMIC_AND(&active_tasks_mask, ~tid_bit);
Olivier Houchardd2b5d162019-03-08 13:47:21 +0100357 __ha_barrier_atomic_load();
Olivier Houchardc4aac9e2018-07-26 15:25:49 +0200358 if (global_tasks_mask & tid_bit)
Olivier Houchard4c2832852019-03-08 18:48:47 +0100359 _HA_ATOMIC_OR(&active_tasks_mask, tid_bit);
Olivier Houchardc4aac9e2018-07-26 15:25:49 +0200360 }
Willy Tarreaucde79022019-04-12 18:03:41 +0200361
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200362 while (max_processed > 0 && !LIST_ISEMPTY(&task_per_thread[tid].task_list)) {
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200363 struct task *t;
364 unsigned short state;
365 void *ctx;
366 struct task *(*process)(struct task *t, void *ctx, unsigned short state);
367
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200368 t = (struct task *)LIST_ELEM(task_per_thread[tid].task_list.n, struct tasklet *, list);
Olivier Houchard4c2832852019-03-08 18:48:47 +0100369 state = _HA_ATOMIC_XCHG(&t->state, TASK_RUNNING);
Olivier Houchardd2b5d162019-03-08 13:47:21 +0100370 __ha_barrier_atomic_store();
Willy Tarreaue73256f2019-03-25 18:02:54 +0100371 __task_remove_from_tasklet_list(t);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200372
373 ctx = t->context;
374 process = t->process;
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200375 t->calls++;
Willy Tarreau9efd7452018-05-31 14:48:54 +0200376
377 if (unlikely(!TASK_IS_TASKLET(t) && t->call_date)) {
378 uint64_t now_ns = now_mono_time();
379
380 t->lat_time += now_ns - t->call_date;
381 t->call_date = now_ns;
382 }
383
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200384 curr_task = (struct task *)t;
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200385 if (likely(process == process_stream))
386 t = process_stream(t, ctx, state);
Willy Tarreau03dd0292019-04-17 22:32:27 +0200387 else if (process != NULL)
388 t = process(TASK_IS_TASKLET(t) ? NULL : t, ctx, state);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200389 else {
Willy Tarreau03dd0292019-04-17 22:32:27 +0200390 __task_free(t);
391 t = NULL;
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200392 }
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200393 curr_task = NULL;
394 /* If there is a pending state we have to wake up the task
Joseph Herlantcf92b6d2018-11-15 14:19:23 -0800395 * immediately, else we defer it into wait queue
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200396 */
397 if (t != NULL) {
Willy Tarreau9efd7452018-05-31 14:48:54 +0200398 if (unlikely(!TASK_IS_TASKLET(t) && t->call_date)) {
399 t->cpu_time += now_mono_time() - t->call_date;
400 t->call_date = 0;
401 }
402
Olivier Houchard4c2832852019-03-08 18:48:47 +0100403 state = _HA_ATOMIC_AND(&t->state, ~TASK_RUNNING);
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200404 if (state)
Willy Tarreaub0380072019-04-17 11:47:18 +0200405 task_wakeup(t, 0);
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200406 else
Willy Tarreau9d4b56b2017-11-06 08:36:53 +0100407 task_queue(t);
Willy Tarreau58b458d2008-06-29 22:40:23 +0200408 }
Willy Tarreauce4e0aa2017-11-05 23:57:00 +0100409
Olivier Houchard736ea412018-05-28 14:54:49 +0200410 max_processed--;
Willy Tarreaucde79022019-04-12 18:03:41 +0200411 }
412
413 if (!LIST_ISEMPTY(&task_per_thread[tid].task_list)) {
414 _HA_ATOMIC_OR(&active_tasks_mask, tid_bit);
415 activity[tid].long_rq++;
Christopher Faulet3911ee82017-11-14 10:26:53 +0100416 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200417}
418
William Lallemand27f3fa52018-12-06 14:05:20 +0100419/*
420 * Delete every tasks before running the master polling loop
421 */
422void mworker_cleantasks()
423{
424 struct task *t;
425 int i;
William Lallemandb5823392018-12-06 15:14:37 +0100426 struct eb32_node *tmp_wq = NULL;
427 struct eb32sc_node *tmp_rq = NULL;
William Lallemand27f3fa52018-12-06 14:05:20 +0100428
429#ifdef USE_THREAD
430 /* cleanup the global run queue */
William Lallemandb5823392018-12-06 15:14:37 +0100431 tmp_rq = eb32sc_first(&rqueue, MAX_THREADS_MASK);
432 while (tmp_rq) {
433 t = eb32sc_entry(tmp_rq, struct task, rq);
434 tmp_rq = eb32sc_next(tmp_rq, MAX_THREADS_MASK);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200435 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100436 }
437 /* cleanup the timers queue */
William Lallemandb5823392018-12-06 15:14:37 +0100438 tmp_wq = eb32_first(&timers);
439 while (tmp_wq) {
440 t = eb32_entry(tmp_wq, struct task, wq);
441 tmp_wq = eb32_next(tmp_wq);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200442 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100443 }
444#endif
445 /* clean the per thread run queue */
446 for (i = 0; i < global.nbthread; i++) {
William Lallemandb5823392018-12-06 15:14:37 +0100447 tmp_rq = eb32sc_first(&task_per_thread[i].rqueue, MAX_THREADS_MASK);
448 while (tmp_rq) {
449 t = eb32sc_entry(tmp_rq, struct task, rq);
450 tmp_rq = eb32sc_next(tmp_rq, MAX_THREADS_MASK);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200451 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100452 }
453 /* cleanup the per thread timers queue */
William Lallemandb5823392018-12-06 15:14:37 +0100454 tmp_wq = eb32_first(&task_per_thread[i].timers);
455 while (tmp_wq) {
456 t = eb32_entry(tmp_wq, struct task, wq);
457 tmp_wq = eb32_next(tmp_wq);
Olivier Houchard3f795f72019-04-17 22:51:06 +0200458 task_destroy(t);
William Lallemand27f3fa52018-12-06 14:05:20 +0100459 }
460 }
461}
462
Willy Tarreaub6b3df32018-11-26 16:31:20 +0100463/* perform minimal intializations */
464static void init_task()
Willy Tarreau4726f532009-03-07 17:25:21 +0100465{
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200466 int i;
467
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200468#ifdef USE_THREAD
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200469 memset(&timers, 0, sizeof(timers));
Willy Tarreau4726f532009-03-07 17:25:21 +0100470 memset(&rqueue, 0, sizeof(rqueue));
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200471#endif
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200472 memset(&task_per_thread, 0, sizeof(task_per_thread));
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200473 for (i = 0; i < MAX_THREADS; i++) {
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200474 LIST_INIT(&task_per_thread[i].task_list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200475 }
Willy Tarreau4726f532009-03-07 17:25:21 +0100476}
477
Willy Tarreaub6b3df32018-11-26 16:31:20 +0100478INITCALL0(STG_PREPARE, init_task);
479
Willy Tarreaubaaee002006-06-26 02:48:02 +0200480/*
481 * Local variables:
482 * c-indent-level: 8
483 * c-basic-offset: 8
484 * End:
485 */