blob: b46420a4a3158fb2560508b2adb928a5ffb646b2 [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 Tarreau9789f7b2008-06-24 08:17:16 +020016#include <common/eb32tree.h>
Willy Tarreauc6ca1a02007-05-13 19:43:47 +020017#include <common/memory.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020018#include <common/mini-clist.h>
Willy Tarreau96bcfd72007-04-29 10:41:56 +020019#include <common/standard.h>
Willy Tarreaua6a6a932007-04-28 22:40:08 +020020#include <common/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020021
Willy Tarreaud825eef2007-05-12 22:35:00 +020022#include <proto/proxy.h>
Willy Tarreau531cf0c2009-03-08 16:35:27 +010023#include <proto/session.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 Tarreau58b458d2008-06-29 22:40:23 +020028unsigned int run_queue = 0;
Willy Tarreaue35c94a2009-03-21 10:01:42 +010029unsigned int niced_tasks = 0; /* number of niced tasks in the run queue */
30struct task *last_timer = NULL; /* optimization: last queued timer */
Willy Tarreau964c9362007-01-07 00:38:00 +010031
Willy Tarreaue35c94a2009-03-21 10:01:42 +010032static struct eb_root timers; /* sorted timers tree */
33static struct eb_root rqueue; /* tree constituting the run queue */
34static unsigned int rqueue_ticks; /* insertion count */
Willy Tarreau9789f7b2008-06-24 08:17:16 +020035
Willy Tarreau4726f532009-03-07 17:25:21 +010036/* Puts the task <t> in run queue at a position depending on t->nice. <t> is
37 * returned. The nice value assigns boosts in 32th of the run queue size. A
38 * nice value of -1024 sets the task to -run_queue*32, while a nice value of
39 * 1024 sets the task to run_queue*32. The state flags are cleared, so the
40 * caller will have to set its flags after this call.
41 * The task must not already be in the run queue. If unsure, use the safer
42 * task_wakeup() function.
Willy Tarreau91e99932008-06-30 07:51:00 +020043 */
Willy Tarreau4df82062008-08-29 15:26:14 +020044struct task *__task_wakeup(struct task *t)
Willy Tarreaue33aece2007-04-30 13:15:14 +020045{
Willy Tarreau58b458d2008-06-29 22:40:23 +020046 run_queue++;
Willy Tarreau4726f532009-03-07 17:25:21 +010047 t->rq.key = ++rqueue_ticks;
Willy Tarreau91e99932008-06-30 07:51:00 +020048
49 if (likely(t->nice)) {
50 int offset;
51
52 niced_tasks++;
53 if (likely(t->nice > 0))
54 offset = (unsigned)((run_queue * (unsigned int)t->nice) / 32U);
55 else
56 offset = -(unsigned)((run_queue * (unsigned int)-t->nice) / 32U);
Willy Tarreau4726f532009-03-07 17:25:21 +010057 t->rq.key += offset;
Willy Tarreau91e99932008-06-30 07:51:00 +020058 }
59
Willy Tarreaufdccded2008-08-29 18:19:04 +020060 /* clear state flags at the same time */
Willy Tarreau4726f532009-03-07 17:25:21 +010061 t->state &= ~TASK_WOKEN_ANY;
Willy Tarreau58b458d2008-06-29 22:40:23 +020062
Willy Tarreaue35c94a2009-03-21 10:01:42 +010063 eb32_insert(&rqueue, &t->rq);
Willy Tarreau58b458d2008-06-29 22:40:23 +020064 return t;
Willy Tarreaue33aece2007-04-30 13:15:14 +020065}
Willy Tarreaud825eef2007-05-12 22:35:00 +020066
Willy Tarreau96bcfd72007-04-29 10:41:56 +020067/*
Willy Tarreau531cf0c2009-03-08 16:35:27 +010068 * __task_queue()
Willy Tarreau96bcfd72007-04-29 10:41:56 +020069 *
70 * Inserts a task into the wait queue at the position given by its expiration
Willy Tarreau4726f532009-03-07 17:25:21 +010071 * date. It does not matter if the task was already in the wait queue or not,
Willy Tarreau531cf0c2009-03-08 16:35:27 +010072 * as it will be unlinked. The task must not have an infinite expiration timer.
Willy Tarreaue35c94a2009-03-21 10:01:42 +010073 * Last, tasks must not be queued further than the end of the tree, which is
74 * between <now_ms> and <now_ms> + 2^31 ms (now+24days in 32bit).
Willy Tarreau531cf0c2009-03-08 16:35:27 +010075 *
76 * This function should not be used directly, it is meant to be called by the
77 * inline version of task_queue() which performs a few cheap preliminary tests
78 * before deciding to call __task_queue().
Willy Tarreau96bcfd72007-04-29 10:41:56 +020079 */
Willy Tarreau531cf0c2009-03-08 16:35:27 +010080void __task_queue(struct task *task)
Willy Tarreau964c9362007-01-07 00:38:00 +010081{
Willy Tarreau531cf0c2009-03-08 16:35:27 +010082 if (likely(task_in_wq(task)))
Willy Tarreau4726f532009-03-07 17:25:21 +010083 __task_unlink_wq(task);
Willy Tarreau4726f532009-03-07 17:25:21 +010084
85 /* the task is not in the queue now */
Willy Tarreaue35c94a2009-03-21 10:01:42 +010086 task->wq.key = task->expire;
Willy Tarreau28c41a42008-06-29 17:00:59 +020087#ifdef DEBUG_CHECK_INVALID_EXPIRATION_DATES
Willy Tarreaue35c94a2009-03-21 10:01:42 +010088 if (tick_is_lt(task->wq.key, now_ms))
Willy Tarreau28c41a42008-06-29 17:00:59 +020089 /* we're queuing too far away or in the past (most likely) */
Willy Tarreau4726f532009-03-07 17:25:21 +010090 return;
Willy Tarreau28c41a42008-06-29 17:00:59 +020091#endif
Willy Tarreauce44f122008-07-05 18:16:19 +020092
93 if (likely(last_timer &&
Willy Tarreau4726f532009-03-07 17:25:21 +010094 last_timer->wq.key == task->wq.key &&
Willy Tarreau531cf0c2009-03-08 16:35:27 +010095 last_timer->wq.node.bit == -1 &&
96 last_timer->wq.node.node_p)) {
Willy Tarreauce44f122008-07-05 18:16:19 +020097 /* Most often, last queued timer has the same expiration date, so
98 * if it's not queued at the root, let's queue a dup directly there.
Willy Tarreau1b8ca662009-03-08 00:26:28 +010099 * Note that we can only use dups at the dup tree's root (bit==-1).
Willy Tarreauce44f122008-07-05 18:16:19 +0200100 */
Willy Tarreau4726f532009-03-07 17:25:21 +0100101 eb_insert_dup(&last_timer->wq.node, &task->wq.node);
102 return;
Willy Tarreauce44f122008-07-05 18:16:19 +0200103 }
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100104 eb32_insert(&timers, &task->wq);
Willy Tarreau4726f532009-03-07 17:25:21 +0100105 if (task->wq.node.bit == -1)
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100106 last_timer = task; /* we only want a dup tree's root */
Willy Tarreau4726f532009-03-07 17:25:21 +0100107 return;
Willy Tarreau964c9362007-01-07 00:38:00 +0100108}
109
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200110/*
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200111 * Extract all expired timers from the timer queue, and wakes up all
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100112 * associated tasks. Returns the date of next event (or eternity) in <next>.
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200113 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200114void wake_expired_tasks(int *next)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200115{
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200116 struct task *task;
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200117 struct eb32_node *eb;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200118
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100119 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
120 while (1) {
121 if (unlikely(!eb)) {
122 /* we might have reached the end of the tree, typically because
123 * <now_ms> is in the first half and we're first scanning the last
124 * half. Let's loop back to the beginning of the tree now.
125 */
126 eb = eb32_first(&timers);
127 if (likely(!eb))
128 break;
129 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200130
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100131 if (likely(tick_is_lt(now_ms, eb->key))) {
132 /* timer not expired yet, revisit it later */
133 *next = eb->key;
134 return;
135 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200136
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100137 /* timer looks expired, detach it from the queue */
138 task = eb32_entry(eb, struct task, wq);
139 eb = eb32_next(eb);
140 __task_unlink_wq(task);
Willy Tarreau41365222009-03-08 07:46:27 +0100141
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100142 /* It is possible that this task was left at an earlier place in the
143 * tree because a recent call to task_queue() has not moved it. This
144 * happens when the new expiration date is later than the old one.
145 * Since it is very unlikely that we reach a timeout anyway, it's a
146 * lot cheaper to proceed like this because we almost never update
147 * the tree. We may also find disabled expiration dates there. Since
148 * we have detached the task from the tree, we simply call task_queue
149 * to take care of this.
150 */
151 if (!tick_is_expired(task->expire, now_ms)) {
152 task_queue(task);
153 continue;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200154 }
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100155 task_wakeup(task, TASK_WOKEN_TIMER);
156 }
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200157
Willy Tarreau28c41a42008-06-29 17:00:59 +0200158 /* We have found no task to expire in any tree */
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200159 *next = TICK_ETERNITY;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200160 return;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200161}
162
Willy Tarreau58b458d2008-06-29 22:40:23 +0200163/* The run queue is chronologically sorted in a tree. An insertion counter is
164 * used to assign a position to each task. This counter may be combined with
165 * other variables (eg: nice value) to set the final position in the tree. The
166 * counter may wrap without a problem, of course. We then limit the number of
Willy Tarreau91e99932008-06-30 07:51:00 +0200167 * tasks processed at once to 1/4 of the number of tasks in the queue, and to
168 * 200 max in any case, so that general latency remains low and so that task
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100169 * positions have a chance to be considered.
Willy Tarreau58b458d2008-06-29 22:40:23 +0200170 *
171 * The function adjusts <next> if a new event is closer.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200172 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200173void process_runnable_tasks(int *next)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200174{
Willy Tarreau964c9362007-01-07 00:38:00 +0100175 struct task *t;
Willy Tarreau58b458d2008-06-29 22:40:23 +0200176 struct eb32_node *eb;
Willy Tarreau58b458d2008-06-29 22:40:23 +0200177 unsigned int max_processed;
Willy Tarreau26c25062009-03-08 09:38:41 +0100178 int expire;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200179
Willy Tarreau91e99932008-06-30 07:51:00 +0200180 max_processed = run_queue;
181 if (max_processed > 200)
182 max_processed = 200;
183
184 if (likely(niced_tasks))
Willy Tarreau218859a2009-03-21 11:53:09 +0100185 max_processed = (max_processed + 3) / 4;
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200186
Willy Tarreau26c25062009-03-08 09:38:41 +0100187 expire = *next;
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100188 eb = eb32_lookup_ge(&rqueue, rqueue_ticks - TIMER_LOOK_BACK);
189 while (max_processed--) {
190 /* Note: this loop is one of the fastest code path in
191 * the whole program. It should not be re-arranged
192 * without a good reason.
193 */
194
195 if (unlikely(!eb)) {
196 /* we might have reached the end of the tree, typically because
197 * <rqueue_ticks> is in the first half and we're first scanning
198 * the last half. Let's loop back to the beginning of the tree now.
199 */
200 eb = eb32_first(&rqueue);
201 if (likely(!eb))
202 break;
203 }
Willy Tarreau58b458d2008-06-29 22:40:23 +0200204
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100205 /* detach the task from the queue */
206 t = eb32_entry(eb, struct task, rq);
207 eb = eb32_next(eb);
208 __task_unlink_rq(t);
Willy Tarreau58b458d2008-06-29 22:40:23 +0200209
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100210 t->state |= TASK_RUNNING;
211 /* This is an optimisation to help the processor's branch
212 * predictor take this most common call.
213 */
214 if (likely(t->process == process_session))
215 t = process_session(t);
216 else
217 t = t->process(t);
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100218
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100219 if (likely(t != NULL)) {
220 t->state &= ~TASK_RUNNING;
221 if (t->expire) {
222 task_queue(t);
223 expire = tick_first_2nz(expire, t->expire);
Willy Tarreau26c25062009-03-08 09:38:41 +0100224 }
Willy Tarreau58b458d2008-06-29 22:40:23 +0200225 }
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100226 }
Willy Tarreau26c25062009-03-08 09:38:41 +0100227 *next = expire;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200228}
229
Willy Tarreau4726f532009-03-07 17:25:21 +0100230/* perform minimal intializations, report 0 in case of error, 1 if OK. */
231int init_task()
232{
233 memset(&timers, 0, sizeof(timers));
234 memset(&rqueue, 0, sizeof(rqueue));
235 pool2_task = create_pool("task", sizeof(struct task), MEM_F_SHARED);
236 return pool2_task != NULL;
237}
238
Willy Tarreaubaaee002006-06-26 02:48:02 +0200239/*
240 * Local variables:
241 * c-indent-level: 8
242 * c-basic-offset: 8
243 * End:
244 */