blob: 63b46c87e5d7078ef924a4b6a805bdf03d667b14 [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 Tarreau45cb4fb2009-10-26 21:10:04 +010020#include <eb32tree.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020021
Willy Tarreaud825eef2007-05-12 22:35:00 +020022#include <proto/proxy.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020023#include <proto/stream.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020024#include <proto/task.h>
25
Willy Tarreau9789f7b2008-06-24 08:17:16 +020026struct pool_head *pool2_task;
Willy Tarreau96bcfd72007-04-29 10:41:56 +020027
Willy Tarreaua4613182009-03-21 18:13:21 +010028unsigned int nb_tasks = 0;
Christopher Faulet34c5cc92016-12-06 09:15:30 +010029unsigned int tasks_run_queue = 0;
30unsigned int tasks_run_queue_cur = 0; /* copy of the run queue size */
Willy Tarreauc7bdf092009-03-21 18:33:52 +010031unsigned int nb_tasks_cur = 0; /* copy of the tasks count */
Willy Tarreaue35c94a2009-03-21 10:01:42 +010032unsigned int niced_tasks = 0; /* number of niced tasks in the run queue */
Emeric Brun01948972017-03-30 15:37:25 +020033
Willy Tarreau964c9362007-01-07 00:38:00 +010034
Willy Tarreaue35c94a2009-03-21 10:01:42 +010035static struct eb_root timers; /* sorted timers tree */
36static struct eb_root rqueue; /* tree constituting the run queue */
37static unsigned int rqueue_ticks; /* insertion count */
Willy Tarreau9789f7b2008-06-24 08:17:16 +020038
Willy Tarreau4726f532009-03-07 17:25:21 +010039/* Puts the task <t> in run queue at a position depending on t->nice. <t> is
40 * returned. The nice value assigns boosts in 32th of the run queue size. A
Christopher Faulet34c5cc92016-12-06 09:15:30 +010041 * nice value of -1024 sets the task to -tasks_run_queue*32, while a nice value
42 * of 1024 sets the task to tasks_run_queue*32. The state flags are cleared, so
43 * the caller will have to set its flags after this call.
Willy Tarreau4726f532009-03-07 17:25:21 +010044 * The task must not already be in the run queue. If unsure, use the safer
45 * task_wakeup() function.
Willy Tarreau91e99932008-06-30 07:51:00 +020046 */
Willy Tarreau4df82062008-08-29 15:26:14 +020047struct task *__task_wakeup(struct task *t)
Willy Tarreaue33aece2007-04-30 13:15:14 +020048{
Christopher Faulet34c5cc92016-12-06 09:15:30 +010049 tasks_run_queue++;
Willy Tarreau4726f532009-03-07 17:25:21 +010050 t->rq.key = ++rqueue_ticks;
Willy Tarreau91e99932008-06-30 07:51:00 +020051
52 if (likely(t->nice)) {
53 int offset;
54
55 niced_tasks++;
56 if (likely(t->nice > 0))
Christopher Faulet34c5cc92016-12-06 09:15:30 +010057 offset = (unsigned)((tasks_run_queue * (unsigned int)t->nice) / 32U);
Willy Tarreau91e99932008-06-30 07:51:00 +020058 else
Christopher Faulet34c5cc92016-12-06 09:15:30 +010059 offset = -(unsigned)((tasks_run_queue * (unsigned int)-t->nice) / 32U);
Willy Tarreau4726f532009-03-07 17:25:21 +010060 t->rq.key += offset;
Willy Tarreau91e99932008-06-30 07:51:00 +020061 }
62
Emeric Brun01948972017-03-30 15:37:25 +020063 /* reset flag to pending ones
64 * Note: __task_wakeup must not be called
65 * if task is running
66 */
67 t->state = t->pending_state;
Willy Tarreaue35c94a2009-03-21 10:01:42 +010068 eb32_insert(&rqueue, &t->rq);
Willy Tarreau58b458d2008-06-29 22:40:23 +020069 return t;
Willy Tarreaue33aece2007-04-30 13:15:14 +020070}
Willy Tarreaud825eef2007-05-12 22:35:00 +020071
Willy Tarreau96bcfd72007-04-29 10:41:56 +020072/*
Willy Tarreau531cf0c2009-03-08 16:35:27 +010073 * __task_queue()
Willy Tarreau96bcfd72007-04-29 10:41:56 +020074 *
75 * Inserts a task into the wait queue at the position given by its expiration
Willy Tarreau4726f532009-03-07 17:25:21 +010076 * date. It does not matter if the task was already in the wait queue or not,
Willy Tarreau531cf0c2009-03-08 16:35:27 +010077 * as it will be unlinked. The task must not have an infinite expiration timer.
Willy Tarreaue35c94a2009-03-21 10:01:42 +010078 * Last, tasks must not be queued further than the end of the tree, which is
79 * between <now_ms> and <now_ms> + 2^31 ms (now+24days in 32bit).
Willy Tarreau531cf0c2009-03-08 16:35:27 +010080 *
81 * This function should not be used directly, it is meant to be called by the
82 * inline version of task_queue() which performs a few cheap preliminary tests
83 * before deciding to call __task_queue().
Willy Tarreau96bcfd72007-04-29 10:41:56 +020084 */
Willy Tarreau531cf0c2009-03-08 16:35:27 +010085void __task_queue(struct task *task)
Willy Tarreau964c9362007-01-07 00:38:00 +010086{
Willy Tarreau531cf0c2009-03-08 16:35:27 +010087 if (likely(task_in_wq(task)))
Willy Tarreau4726f532009-03-07 17:25:21 +010088 __task_unlink_wq(task);
Willy Tarreau4726f532009-03-07 17:25:21 +010089
90 /* the task is not in the queue now */
Willy Tarreaue35c94a2009-03-21 10:01:42 +010091 task->wq.key = task->expire;
Willy Tarreau28c41a42008-06-29 17:00:59 +020092#ifdef DEBUG_CHECK_INVALID_EXPIRATION_DATES
Willy Tarreaue35c94a2009-03-21 10:01:42 +010093 if (tick_is_lt(task->wq.key, now_ms))
Willy Tarreau28c41a42008-06-29 17:00:59 +020094 /* we're queuing too far away or in the past (most likely) */
Willy Tarreau4726f532009-03-07 17:25:21 +010095 return;
Willy Tarreau28c41a42008-06-29 17:00:59 +020096#endif
Willy Tarreauce44f122008-07-05 18:16:19 +020097
Willy Tarreaue35c94a2009-03-21 10:01:42 +010098 eb32_insert(&timers, &task->wq);
SaVaGe1d7a4202009-10-06 18:53:37 +030099
Willy Tarreau4726f532009-03-07 17:25:21 +0100100 return;
Willy Tarreau964c9362007-01-07 00:38:00 +0100101}
102
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200103/*
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200104 * Extract all expired timers from the timer queue, and wakes up all
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100105 * associated tasks. Returns the date of next event (or eternity).
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200106 */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100107int wake_expired_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200108{
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200109 struct task *task;
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200110 struct eb32_node *eb;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200111
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100112 while (1) {
Emeric Brun01948972017-03-30 15:37:25 +0200113 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100114 if (unlikely(!eb)) {
115 /* we might have reached the end of the tree, typically because
116 * <now_ms> is in the first half and we're first scanning the last
117 * half. Let's loop back to the beginning of the tree now.
118 */
119 eb = eb32_first(&timers);
120 if (likely(!eb))
121 break;
122 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200123
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100124 if (likely(tick_is_lt(now_ms, eb->key))) {
125 /* timer not expired yet, revisit it later */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100126 return eb->key;
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100127 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200128
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100129 /* timer looks expired, detach it from the queue */
130 task = eb32_entry(eb, struct task, wq);
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100131 __task_unlink_wq(task);
Willy Tarreau41365222009-03-08 07:46:27 +0100132
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100133 /* It is possible that this task was left at an earlier place in the
134 * tree because a recent call to task_queue() has not moved it. This
135 * happens when the new expiration date is later than the old one.
136 * Since it is very unlikely that we reach a timeout anyway, it's a
137 * lot cheaper to proceed like this because we almost never update
138 * the tree. We may also find disabled expiration dates there. Since
139 * we have detached the task from the tree, we simply call task_queue
Willy Tarreau814c9782009-07-14 23:48:55 +0200140 * to take care of this. Note that we might occasionally requeue it at
141 * the same place, before <eb>, so we have to check if this happens,
142 * and adjust <eb>, otherwise we may skip it which is not what we want.
Willy Tarreau34e98ea2009-08-09 09:09:54 +0200143 * We may also not requeue the task (and not point eb at it) if its
144 * expiration time is not set.
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100145 */
146 if (!tick_is_expired(task->expire, now_ms)) {
Willy Tarreau34e98ea2009-08-09 09:09:54 +0200147 if (!tick_isset(task->expire))
148 continue;
149 __task_queue(task);
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100150 continue;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200151 }
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100152 task_wakeup(task, TASK_WOKEN_TIMER);
153 }
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200154
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100155 /* No task is expired */
156 return TICK_ETERNITY;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200157}
158
Willy Tarreau58b458d2008-06-29 22:40:23 +0200159/* The run queue is chronologically sorted in a tree. An insertion counter is
160 * used to assign a position to each task. This counter may be combined with
161 * other variables (eg: nice value) to set the final position in the tree. The
162 * counter may wrap without a problem, of course. We then limit the number of
Willy Tarreau91e99932008-06-30 07:51:00 +0200163 * tasks processed at once to 1/4 of the number of tasks in the queue, and to
164 * 200 max in any case, so that general latency remains low and so that task
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100165 * positions have a chance to be considered.
Willy Tarreau58b458d2008-06-29 22:40:23 +0200166 *
167 * The function adjusts <next> if a new event is closer.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200168 */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100169void process_runnable_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200170{
Willy Tarreau964c9362007-01-07 00:38:00 +0100171 struct task *t;
Emeric Brun01948972017-03-30 15:37:25 +0200172 int i;
173 int max_processed;
174 struct eb32_node *rq_next;
175 int rewind;
176 struct task *local_tasks[16];
177 int local_tasks_count;
Christopher Faulet34c5cc92016-12-06 09:15:30 +0100178 tasks_run_queue_cur = tasks_run_queue; /* keep a copy for reporting */
Willy Tarreauc7bdf092009-03-21 18:33:52 +0100179 nb_tasks_cur = nb_tasks;
Christopher Faulet34c5cc92016-12-06 09:15:30 +0100180 max_processed = tasks_run_queue;
Christopher Faulet34c5cc92016-12-06 09:15:30 +0100181 if (!tasks_run_queue)
Willy Tarreau98c61212011-09-10 20:08:49 +0200182 return;
183
Willy Tarreau91e99932008-06-30 07:51:00 +0200184 if (max_processed > 200)
185 max_processed = 200;
186
187 if (likely(niced_tasks))
Willy Tarreau218859a2009-03-21 11:53:09 +0100188 max_processed = (max_processed + 3) / 4;
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200189
Emeric Brun01948972017-03-30 15:37:25 +0200190 while (max_processed > 0) {
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100191 /* Note: this loop is one of the fastest code path in
192 * the whole program. It should not be re-arranged
193 * without a good reason.
194 */
Emeric Brun01948972017-03-30 15:37:25 +0200195
196 rewind = 0;
197 rq_next = eb32_lookup_ge(&rqueue, rqueue_ticks - TIMER_LOOK_BACK);
198 if (!rq_next) {
199 /* we might have reached the end of the tree, typically because
200 * <rqueue_ticks> is in the first half and we're first scanning
201 * the last half. Let's loop back to the beginning of the tree now.
202 */
203 rq_next = eb32_first(&rqueue);
Willy Tarreau501260b2015-02-23 16:07:01 +0100204 if (!rq_next) {
Emeric Brun01948972017-03-30 15:37:25 +0200205 break;
206 }
207 rewind = 1;
208 }
209
210 local_tasks_count = 0;
211 while (local_tasks_count < 16) {
212 t = eb32_entry(rq_next, struct task, rq);
213 rq_next = eb32_next(rq_next);
214 /* detach the task from the queue */
215 __task_unlink_rq(t);
216 t->state |= TASK_RUNNING;
217 t->pending_state = 0;
218 t->calls++;
219 local_tasks[local_tasks_count++] = t;
220 if (!rq_next) {
221 if (rewind || !(rq_next = eb32_first(&rqueue))) {
Willy Tarreau501260b2015-02-23 16:07:01 +0100222 break;
Emeric Brun01948972017-03-30 15:37:25 +0200223 }
224 rewind = 1;
Willy Tarreau501260b2015-02-23 16:07:01 +0100225 }
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100226 }
Willy Tarreau58b458d2008-06-29 22:40:23 +0200227
Emeric Brun01948972017-03-30 15:37:25 +0200228 if (!local_tasks_count)
229 break;
Willy Tarreau58b458d2008-06-29 22:40:23 +0200230
Emeric Brun01948972017-03-30 15:37:25 +0200231
232 for (i = 0; i < local_tasks_count ; i++) {
233 t = local_tasks[i];
234 /* This is an optimisation to help the processor's branch
235 * predictor take this most common call.
236 */
237 if (likely(t->process == process_stream))
238 t = process_stream(t);
239 else
240 t = t->process(t);
241 local_tasks[i] = t;
242 }
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100243
Emeric Brun01948972017-03-30 15:37:25 +0200244 max_processed -= local_tasks_count;
245 for (i = 0; i < local_tasks_count ; i++) {
246 t = local_tasks[i];
247 if (likely(t != NULL)) {
248 t->state &= ~TASK_RUNNING;
249 /* If there is a pending state
250 * we have to wake up the task
251 * immediatly, else we defer
252 * it into wait queue
253 */
254 if (t->pending_state)
255 __task_wakeup(t);
256 else
257 task_queue(t);
258 }
Willy Tarreau58b458d2008-06-29 22:40:23 +0200259 }
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100260 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200261}
262
Willy Tarreau4726f532009-03-07 17:25:21 +0100263/* perform minimal intializations, report 0 in case of error, 1 if OK. */
264int init_task()
265{
266 memset(&timers, 0, sizeof(timers));
267 memset(&rqueue, 0, sizeof(rqueue));
268 pool2_task = create_pool("task", sizeof(struct task), MEM_F_SHARED);
269 return pool2_task != NULL;
270}
271
Willy Tarreaubaaee002006-06-26 02:48:02 +0200272/*
273 * Local variables:
274 * c-indent-level: 8
275 * c-basic-offset: 8
276 * End:
277 */