blob: a466de67617aaee26538e256e5bc873fbac2d31c [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>
26
Willy Tarreau9789f7b2008-06-24 08:17:16 +020027struct pool_head *pool2_task;
Willy Tarreau96bcfd72007-04-29 10:41:56 +020028
Thierry FOURNIERd6975962017-07-12 14:31:10 +020029/* This is the memory pool containing all the signal structs. These
30 * struct are used to store each requiered signal between two tasks.
31 */
32struct pool_head *pool2_notification;
33
Willy Tarreaua4613182009-03-21 18:13:21 +010034unsigned int nb_tasks = 0;
Christopher Faulet34c5cc92016-12-06 09:15:30 +010035unsigned int tasks_run_queue = 0;
36unsigned int tasks_run_queue_cur = 0; /* copy of the run queue size */
Willy Tarreauc7bdf092009-03-21 18:33:52 +010037unsigned int nb_tasks_cur = 0; /* copy of the tasks count */
Willy Tarreaue35c94a2009-03-21 10:01:42 +010038unsigned int niced_tasks = 0; /* number of niced tasks in the run queue */
Emeric Brun01948972017-03-30 15:37:25 +020039
Emeric Brunc60def82017-09-27 14:59:38 +020040#ifdef USE_THREAD
41HA_SPINLOCK_T rq_lock; /* spin lock related to run queue */
42HA_SPINLOCK_T wq_lock; /* spin lock related to wait queue */
43#endif
Willy Tarreau964c9362007-01-07 00:38:00 +010044
Willy Tarreaue35c94a2009-03-21 10:01:42 +010045static struct eb_root timers; /* sorted timers tree */
46static struct eb_root rqueue; /* tree constituting the run queue */
47static unsigned int rqueue_ticks; /* insertion count */
Willy Tarreau9789f7b2008-06-24 08:17:16 +020048
Willy Tarreau4726f532009-03-07 17:25:21 +010049/* Puts the task <t> in run queue at a position depending on t->nice. <t> is
50 * returned. The nice value assigns boosts in 32th of the run queue size. A
Christopher Faulet34c5cc92016-12-06 09:15:30 +010051 * nice value of -1024 sets the task to -tasks_run_queue*32, while a nice value
52 * of 1024 sets the task to tasks_run_queue*32. The state flags are cleared, so
53 * the caller will have to set its flags after this call.
Willy Tarreau4726f532009-03-07 17:25:21 +010054 * The task must not already be in the run queue. If unsure, use the safer
55 * task_wakeup() function.
Willy Tarreau91e99932008-06-30 07:51:00 +020056 */
Willy Tarreau4df82062008-08-29 15:26:14 +020057struct task *__task_wakeup(struct task *t)
Willy Tarreaue33aece2007-04-30 13:15:14 +020058{
Christopher Faulet34c5cc92016-12-06 09:15:30 +010059 tasks_run_queue++;
Willy Tarreau4726f532009-03-07 17:25:21 +010060 t->rq.key = ++rqueue_ticks;
Willy Tarreau91e99932008-06-30 07:51:00 +020061
62 if (likely(t->nice)) {
63 int offset;
64
65 niced_tasks++;
66 if (likely(t->nice > 0))
Christopher Faulet34c5cc92016-12-06 09:15:30 +010067 offset = (unsigned)((tasks_run_queue * (unsigned int)t->nice) / 32U);
Willy Tarreau91e99932008-06-30 07:51:00 +020068 else
Christopher Faulet34c5cc92016-12-06 09:15:30 +010069 offset = -(unsigned)((tasks_run_queue * (unsigned int)-t->nice) / 32U);
Willy Tarreau4726f532009-03-07 17:25:21 +010070 t->rq.key += offset;
Willy Tarreau91e99932008-06-30 07:51:00 +020071 }
72
Emeric Brun01948972017-03-30 15:37:25 +020073 /* reset flag to pending ones
74 * Note: __task_wakeup must not be called
75 * if task is running
76 */
77 t->state = t->pending_state;
Willy Tarreau8d388052017-11-05 13:34:20 +010078 eb32sc_insert(&rqueue, &t->rq, t->thread_mask);
Willy Tarreau58b458d2008-06-29 22:40:23 +020079 return t;
Willy Tarreaue33aece2007-04-30 13:15:14 +020080}
Willy Tarreaud825eef2007-05-12 22:35:00 +020081
Willy Tarreau96bcfd72007-04-29 10:41:56 +020082/*
Willy Tarreau531cf0c2009-03-08 16:35:27 +010083 * __task_queue()
Willy Tarreau96bcfd72007-04-29 10:41:56 +020084 *
85 * Inserts a task into the wait queue at the position given by its expiration
Willy Tarreau4726f532009-03-07 17:25:21 +010086 * date. It does not matter if the task was already in the wait queue or not,
Willy Tarreau531cf0c2009-03-08 16:35:27 +010087 * as it will be unlinked. The task must not have an infinite expiration timer.
Willy Tarreaue35c94a2009-03-21 10:01:42 +010088 * Last, tasks must not be queued further than the end of the tree, which is
89 * between <now_ms> and <now_ms> + 2^31 ms (now+24days in 32bit).
Willy Tarreau531cf0c2009-03-08 16:35:27 +010090 *
91 * This function should not be used directly, it is meant to be called by the
92 * inline version of task_queue() which performs a few cheap preliminary tests
93 * before deciding to call __task_queue().
Willy Tarreau96bcfd72007-04-29 10:41:56 +020094 */
Willy Tarreau531cf0c2009-03-08 16:35:27 +010095void __task_queue(struct task *task)
Willy Tarreau964c9362007-01-07 00:38:00 +010096{
Willy Tarreau531cf0c2009-03-08 16:35:27 +010097 if (likely(task_in_wq(task)))
Willy Tarreau4726f532009-03-07 17:25:21 +010098 __task_unlink_wq(task);
Willy Tarreau4726f532009-03-07 17:25:21 +010099
100 /* the task is not in the queue now */
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100101 task->wq.key = task->expire;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200102#ifdef DEBUG_CHECK_INVALID_EXPIRATION_DATES
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100103 if (tick_is_lt(task->wq.key, now_ms))
Willy Tarreau28c41a42008-06-29 17:00:59 +0200104 /* we're queuing too far away or in the past (most likely) */
Willy Tarreau4726f532009-03-07 17:25:21 +0100105 return;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200106#endif
Willy Tarreauce44f122008-07-05 18:16:19 +0200107
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100108 eb32_insert(&timers, &task->wq);
SaVaGe1d7a4202009-10-06 18:53:37 +0300109
Willy Tarreau4726f532009-03-07 17:25:21 +0100110 return;
Willy Tarreau964c9362007-01-07 00:38:00 +0100111}
112
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200113/*
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200114 * Extract all expired timers from the timer queue, and wakes up all
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100115 * associated tasks. Returns the date of next event (or eternity).
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200116 */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100117int wake_expired_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200118{
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200119 struct task *task;
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200120 struct eb32_node *eb;
Willy Tarreaub992ba12017-11-05 19:09:27 +0100121 int ret = TICK_ETERNITY;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200122
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100123 while (1) {
Emeric Brunc60def82017-09-27 14:59:38 +0200124 SPIN_LOCK(TASK_WQ_LOCK, &wq_lock);
125 lookup_next:
Emeric Brun01948972017-03-30 15:37:25 +0200126 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
Emeric Brunc60def82017-09-27 14:59:38 +0200127 if (!eb) {
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100128 /* we might have reached the end of the tree, typically because
129 * <now_ms> is in the first half and we're first scanning the last
130 * half. Let's loop back to the beginning of the tree now.
131 */
132 eb = eb32_first(&timers);
Willy Tarreaub992ba12017-11-05 19:09:27 +0100133 if (likely(!eb))
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100134 break;
135 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200136
Willy Tarreaub992ba12017-11-05 19:09:27 +0100137 if (tick_is_lt(now_ms, eb->key)) {
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100138 /* timer not expired yet, revisit it later */
Willy Tarreaub992ba12017-11-05 19:09:27 +0100139 ret = eb->key;
140 break;
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100141 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200142
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100143 /* timer looks expired, detach it from the queue */
144 task = eb32_entry(eb, struct task, wq);
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100145 __task_unlink_wq(task);
Willy Tarreau41365222009-03-08 07:46:27 +0100146
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100147 /* It is possible that this task was left at an earlier place in the
148 * tree because a recent call to task_queue() has not moved it. This
149 * happens when the new expiration date is later than the old one.
150 * Since it is very unlikely that we reach a timeout anyway, it's a
151 * lot cheaper to proceed like this because we almost never update
152 * the tree. We may also find disabled expiration dates there. Since
153 * we have detached the task from the tree, we simply call task_queue
Willy Tarreau814c9782009-07-14 23:48:55 +0200154 * to take care of this. Note that we might occasionally requeue it at
155 * the same place, before <eb>, so we have to check if this happens,
156 * and adjust <eb>, otherwise we may skip it which is not what we want.
Willy Tarreau34e98ea2009-08-09 09:09:54 +0200157 * We may also not requeue the task (and not point eb at it) if its
158 * expiration time is not set.
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100159 */
160 if (!tick_is_expired(task->expire, now_ms)) {
Willy Tarreaub992ba12017-11-05 19:09:27 +0100161 if (tick_isset(task->expire))
162 __task_queue(task);
Emeric Brunc60def82017-09-27 14:59:38 +0200163 goto lookup_next;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200164 }
Emeric Brunc60def82017-09-27 14:59:38 +0200165 SPIN_UNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100166 task_wakeup(task, TASK_WOKEN_TIMER);
167 }
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200168
Willy Tarreaub992ba12017-11-05 19:09:27 +0100169 SPIN_UNLOCK(TASK_WQ_LOCK, &wq_lock);
170 return ret;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200171}
172
Willy Tarreau58b458d2008-06-29 22:40:23 +0200173/* The run queue is chronologically sorted in a tree. An insertion counter is
174 * used to assign a position to each task. This counter may be combined with
175 * other variables (eg: nice value) to set the final position in the tree. The
176 * counter may wrap without a problem, of course. We then limit the number of
Willy Tarreau91e99932008-06-30 07:51:00 +0200177 * tasks processed at once to 1/4 of the number of tasks in the queue, and to
178 * 200 max in any case, so that general latency remains low and so that task
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100179 * positions have a chance to be considered.
Willy Tarreau58b458d2008-06-29 22:40:23 +0200180 *
181 * The function adjusts <next> if a new event is closer.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200182 */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100183void process_runnable_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200184{
Willy Tarreau964c9362007-01-07 00:38:00 +0100185 struct task *t;
Emeric Brun01948972017-03-30 15:37:25 +0200186 int i;
187 int max_processed;
Willy Tarreau8d388052017-11-05 13:34:20 +0100188 struct eb32sc_node *rq_next;
Emeric Brun01948972017-03-30 15:37:25 +0200189 struct task *local_tasks[16];
190 int local_tasks_count;
Willy Tarreau9d4b56b2017-11-06 08:36:53 +0100191 int final_tasks_count;
Christopher Faulet34c5cc92016-12-06 09:15:30 +0100192 tasks_run_queue_cur = tasks_run_queue; /* keep a copy for reporting */
Willy Tarreauc7bdf092009-03-21 18:33:52 +0100193 nb_tasks_cur = nb_tasks;
Christopher Faulet34c5cc92016-12-06 09:15:30 +0100194 max_processed = tasks_run_queue;
Willy Tarreauce4e0aa2017-11-05 23:57:00 +0100195
Christopher Faulet34c5cc92016-12-06 09:15:30 +0100196 if (!tasks_run_queue)
Willy Tarreau98c61212011-09-10 20:08:49 +0200197 return;
198
Willy Tarreau91e99932008-06-30 07:51:00 +0200199 if (max_processed > 200)
200 max_processed = 200;
201
202 if (likely(niced_tasks))
Willy Tarreau218859a2009-03-21 11:53:09 +0100203 max_processed = (max_processed + 3) / 4;
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200204
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100205 if (unlikely(global.nbthread <= 1)) {
206 /* when no lock is needed, this loop is much faster */
207 rq_next = eb32sc_lookup_ge(&rqueue, rqueue_ticks - TIMER_LOOK_BACK, tid_bit);
208 while (1) {
209 if (!rq_next) {
210 /* we might have reached the end of the tree, typically because
211 * <rqueue_ticks> is in the first half and we're first scanning
212 * the last half. Let's loop back to the beginning of the tree now.
213 */
214 rq_next = eb32sc_first(&rqueue, tid_bit);
215 if (!rq_next)
216 break;
217 }
218
219 t = eb32sc_entry(rq_next, struct task, rq);
220 rq_next = eb32sc_next(rq_next, tid_bit);
221 __task_unlink_rq(t);
222 t->state |= TASK_RUNNING;
223 t->pending_state = 0;
224
225 t->calls++;
226 /* This is an optimisation to help the processor's branch
227 * predictor take this most common call.
228 */
229 if (likely(t->process == process_stream))
230 t = process_stream(t);
231 else
232 t = t->process(t);
233
234 if (likely(t != NULL)) {
235 t->state &= ~TASK_RUNNING;
236 /* If there is a pending state
237 * we have to wake up the task
238 * immediatly, else we defer
239 * it into wait queue
240 */
241 if (t->pending_state)
242 __task_wakeup(t);
243 else
244 task_queue(t);
245 }
246
247 max_processed--;
248 if (max_processed <= 0)
249 break;
250 }
251 return;
252 }
253
Emeric Brunc60def82017-09-27 14:59:38 +0200254 SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreauce4e0aa2017-11-05 23:57:00 +0100255 rq_next = eb32sc_lookup_ge(&rqueue, rqueue_ticks - TIMER_LOOK_BACK, tid_bit);
256
257 do {
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100258 /* Note: this loop is one of the fastest code path in
259 * the whole program. It should not be re-arranged
260 * without a good reason.
261 */
Willy Tarreauce4e0aa2017-11-05 23:57:00 +0100262 for (local_tasks_count = 0; local_tasks_count < 16; local_tasks_count++) {
263 if (unlikely(!rq_next)) {
264 /* either we just started or we reached the end
265 * of the tree, typically because <rqueue_ticks>
266 * is in the first half and we're first scanning
267 * the last half. Let's loop back to the beginning
268 * of the tree now.
269 */
270 if (unlikely(!rq_next)) {
271 rq_next = eb32sc_first(&rqueue, tid_bit);
272 if (!rq_next)
273 break;
274 }
Emeric Brun01948972017-03-30 15:37:25 +0200275 }
Emeric Brun01948972017-03-30 15:37:25 +0200276
Willy Tarreau8d388052017-11-05 13:34:20 +0100277 t = eb32sc_entry(rq_next, struct task, rq);
278 rq_next = eb32sc_next(rq_next, tid_bit);
Willy Tarreauce4e0aa2017-11-05 23:57:00 +0100279
280 /* detach the task from the queue */
281 __task_unlink_rq(t);
282 local_tasks[local_tasks_count] = t;
283 t->state |= TASK_RUNNING;
284 t->pending_state = 0;
285 t->calls++;
286 max_processed--;
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100287 }
Willy Tarreau58b458d2008-06-29 22:40:23 +0200288
Emeric Brun01948972017-03-30 15:37:25 +0200289 if (!local_tasks_count)
290 break;
Willy Tarreau58b458d2008-06-29 22:40:23 +0200291
Emeric Brunc60def82017-09-27 14:59:38 +0200292 SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Emeric Brun01948972017-03-30 15:37:25 +0200293
Willy Tarreau9d4b56b2017-11-06 08:36:53 +0100294 final_tasks_count = 0;
Emeric Brun01948972017-03-30 15:37:25 +0200295 for (i = 0; i < local_tasks_count ; i++) {
296 t = local_tasks[i];
297 /* This is an optimisation to help the processor's branch
298 * predictor take this most common call.
299 */
300 if (likely(t->process == process_stream))
301 t = process_stream(t);
302 else
303 t = t->process(t);
Willy Tarreau9d4b56b2017-11-06 08:36:53 +0100304 if (t)
305 local_tasks[final_tasks_count++] = t;
Emeric Brun01948972017-03-30 15:37:25 +0200306 }
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100307
Emeric Brunc60def82017-09-27 14:59:38 +0200308 SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreau9d4b56b2017-11-06 08:36:53 +0100309 for (i = 0; i < final_tasks_count ; i++) {
Emeric Brun01948972017-03-30 15:37:25 +0200310 t = local_tasks[i];
Willy Tarreau9d4b56b2017-11-06 08:36:53 +0100311 t->state &= ~TASK_RUNNING;
312 /* If there is a pending state
313 * we have to wake up the task
314 * immediatly, else we defer
315 * it into wait queue
316 */
317 if (t->pending_state)
318 __task_wakeup(t);
319 else
320 task_queue(t);
Willy Tarreau58b458d2008-06-29 22:40:23 +0200321 }
Willy Tarreauce4e0aa2017-11-05 23:57:00 +0100322 } while (max_processed > 0);
323
Emeric Brunc60def82017-09-27 14:59:38 +0200324 SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200325}
326
Willy Tarreau4726f532009-03-07 17:25:21 +0100327/* perform minimal intializations, report 0 in case of error, 1 if OK. */
328int init_task()
329{
330 memset(&timers, 0, sizeof(timers));
331 memset(&rqueue, 0, sizeof(rqueue));
Emeric Brunc60def82017-09-27 14:59:38 +0200332 SPIN_INIT(&wq_lock);
333 SPIN_INIT(&rq_lock);
Willy Tarreau4726f532009-03-07 17:25:21 +0100334 pool2_task = create_pool("task", sizeof(struct task), MEM_F_SHARED);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200335 if (!pool2_task)
336 return 0;
337 pool2_notification = create_pool("notification", sizeof(struct notification), MEM_F_SHARED);
338 if (!pool2_notification)
339 return 0;
340 return 1;
Willy Tarreau4726f532009-03-07 17:25:21 +0100341}
342
Willy Tarreaubaaee002006-06-26 02:48:02 +0200343/*
344 * Local variables:
345 * c-indent-level: 8
346 * c-basic-offset: 8
347 * End:
348 */