blob: e1692015722a0cdfb9c880b07f51ef5aa16639fa [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 Tarreaubafbe012017-11-24 17:34:44 +010027struct pool_head *pool_head_task;
Olivier Houchardb0bdae72018-05-18 18:45:28 +020028struct pool_head *pool_head_tasklet;
Willy Tarreau96bcfd72007-04-29 10:41:56 +020029
Thierry FOURNIERd6975962017-07-12 14:31:10 +020030/* This is the memory pool containing all the signal structs. These
31 * struct are used to store each requiered signal between two tasks.
32 */
Willy Tarreaubafbe012017-11-24 17:34:44 +010033struct pool_head *pool_head_notification;
Thierry FOURNIERd6975962017-07-12 14:31:10 +020034
Willy Tarreaua4613182009-03-21 18:13:21 +010035unsigned int nb_tasks = 0;
Olivier Houchard9b03c0c2018-07-26 18:45:22 +020036volatile unsigned long active_tasks_mask = 0; /* Mask of threads with active tasks */
Olivier Houchardc4aac9e2018-07-26 15:25:49 +020037unsigned 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 Tarreau6d1222c2017-11-26 10:08:06 +010043THREAD_LOCAL struct task *curr_task = NULL; /* task currently running or NULL */
Olivier Houchard9b36cb42018-05-04 15:46:16 +020044THREAD_LOCAL struct eb32sc_node *rq_next = NULL; /* Next task to be potentially run */
Willy Tarreau6d1222c2017-11-26 10:08:06 +010045
Olivier Houchardb0bdae72018-05-18 18:45:28 +020046struct list task_list[MAX_THREADS]; /* List of tasks to be run, mixing tasks and tasklets */
47int task_list_size[MAX_THREADS]; /* Number of tasks in the task_list */
48
Willy Tarreaua24d1d02017-11-26 10:19:16 +010049__decl_hathreads(HA_SPINLOCK_T __attribute__((aligned(64))) rq_lock); /* spin lock related to run queue */
50__decl_hathreads(HA_SPINLOCK_T __attribute__((aligned(64))) wq_lock); /* spin lock related to wait queue */
Willy Tarreau964c9362007-01-07 00:38:00 +010051
Willy Tarreaue35c94a2009-03-21 10:01:42 +010052static struct eb_root timers; /* sorted timers tree */
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020053#ifdef USE_THREAD
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020054struct eb_root rqueue; /* tree constituting the run queue */
Olivier Houchard77551ee2018-07-26 15:59:38 +020055int global_rqueue_size; /* Number of element sin the global runqueue */
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020056#endif
57struct eb_root rqueue_local[MAX_THREADS]; /* tree constituting the per-thread run queue */
Olivier Houchard77551ee2018-07-26 15:59:38 +020058int rqueue_size[MAX_THREADS]; /* Number of elements in the per-thread run queue */
Willy Tarreaue35c94a2009-03-21 10:01:42 +010059static unsigned int rqueue_ticks; /* insertion count */
Willy Tarreau9789f7b2008-06-24 08:17:16 +020060
Willy Tarreau4726f532009-03-07 17:25:21 +010061/* Puts the task <t> in run queue at a position depending on t->nice. <t> is
62 * returned. The nice value assigns boosts in 32th of the run queue size. A
Christopher Faulet34c5cc92016-12-06 09:15:30 +010063 * nice value of -1024 sets the task to -tasks_run_queue*32, while a nice value
64 * of 1024 sets the task to tasks_run_queue*32. The state flags are cleared, so
65 * the caller will have to set its flags after this call.
Willy Tarreau4726f532009-03-07 17:25:21 +010066 * The task must not already be in the run queue. If unsure, use the safer
67 * task_wakeup() function.
Willy Tarreau91e99932008-06-30 07:51:00 +020068 */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020069void __task_wakeup(struct task *t, struct eb_root *root)
Willy Tarreaue33aece2007-04-30 13:15:14 +020070{
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020071 void *expected = NULL;
72 int *rq_size;
73
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020074#ifdef USE_THREAD
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020075 if (root == &rqueue) {
76 rq_size = &global_rqueue_size;
77 HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020078 } else
79#endif
80 {
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020081 int nb = root - &rqueue_local[0];
82 rq_size = &rqueue_size[nb];
83 }
84 /* Make sure if the task isn't in the runqueue, nobody inserts it
85 * in the meanwhile.
86 */
87redo:
David Carliercc0a9572018-06-05 10:41:03 +000088 if (unlikely(!HA_ATOMIC_CAS(&t->rq.node.leaf_p, &expected, (void *)0x1))) {
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020089#ifdef USE_THREAD
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020090 if (root == &rqueue)
91 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020092#endif
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020093 return;
94 }
95 /* There's a small race condition, when running a task, the thread
96 * first sets TASK_RUNNING, and then unlink the task.
97 * If an another thread calls task_wakeup() for the same task,
98 * it may set t->state before TASK_RUNNING was set, and then try
99 * to set t->rq.nod.leaf_p after it was unlinked.
100 * To make sure it is not a problem, we check if TASK_RUNNING is set
101 * again. If it is, we unset t->rq.node.leaf_p.
102 * We then check for TASK_RUNNING a third time. If it is still there,
103 * then we can give up, the task will be re-queued later if it needs
104 * to be. If it's not there, and there is still something in t->state,
105 * then we have to requeue.
106 */
107 if (((volatile unsigned short)(t->state)) & TASK_RUNNING) {
108 unsigned short state;
109 t->rq.node.leaf_p = NULL;
110 __ha_barrier_store();
111
112 state = (volatile unsigned short)(t->state);
113 if (unlikely(state != 0 && !(state & TASK_RUNNING)))
114 goto redo;
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200115#ifdef USE_THREAD
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200116 if (root == &rqueue)
117 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200118#endif
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200119 return;
120 }
121 HA_ATOMIC_ADD(&tasks_run_queue, 1);
Olivier Houchardc4aac9e2018-07-26 15:25:49 +0200122#ifdef USE_THREAD
123 if (root == &rqueue) {
124 HA_ATOMIC_OR(&global_tasks_mask, t->thread_mask);
125 __ha_barrier_store();
126 }
127#endif
Willy Tarreau189ea852018-07-26 15:16:43 +0200128 HA_ATOMIC_OR(&active_tasks_mask, t->thread_mask);
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200129 t->rq.key = HA_ATOMIC_ADD(&rqueue_ticks, 1);
Willy Tarreau91e99932008-06-30 07:51:00 +0200130
131 if (likely(t->nice)) {
132 int offset;
133
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200134 HA_ATOMIC_ADD(&niced_tasks, 1);
Willy Tarreau91e99932008-06-30 07:51:00 +0200135 if (likely(t->nice > 0))
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200136 offset = (unsigned)((*rq_size * (unsigned int)t->nice) / 32U);
Willy Tarreau91e99932008-06-30 07:51:00 +0200137 else
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200138 offset = -(unsigned)((*rq_size * (unsigned int)-t->nice) / 32U);
Willy Tarreau4726f532009-03-07 17:25:21 +0100139 t->rq.key += offset;
Willy Tarreau91e99932008-06-30 07:51:00 +0200140 }
141
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200142 eb32sc_insert(root, &t->rq, t->thread_mask);
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200143#ifdef USE_THREAD
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200144 if (root == &rqueue) {
145 global_rqueue_size++;
Olivier Houchard76e45182018-07-26 16:19:58 +0200146 HA_ATOMIC_OR(&t->state, TASK_GLOBAL);
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200147 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200148 } else
149#endif
150 {
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200151 int nb = root - &rqueue_local[0];
152
153 rqueue_size[nb]++;
154 }
155 return;
Willy Tarreaue33aece2007-04-30 13:15:14 +0200156}
Willy Tarreaud825eef2007-05-12 22:35:00 +0200157
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200158/*
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100159 * __task_queue()
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200160 *
161 * Inserts a task into the wait queue at the position given by its expiration
Willy Tarreau4726f532009-03-07 17:25:21 +0100162 * date. It does not matter if the task was already in the wait queue or not,
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100163 * as it will be unlinked. The task must not have an infinite expiration timer.
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100164 * Last, tasks must not be queued further than the end of the tree, which is
165 * between <now_ms> and <now_ms> + 2^31 ms (now+24days in 32bit).
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100166 *
167 * This function should not be used directly, it is meant to be called by the
168 * inline version of task_queue() which performs a few cheap preliminary tests
169 * before deciding to call __task_queue().
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200170 */
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100171void __task_queue(struct task *task)
Willy Tarreau964c9362007-01-07 00:38:00 +0100172{
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100173 if (likely(task_in_wq(task)))
Willy Tarreau4726f532009-03-07 17:25:21 +0100174 __task_unlink_wq(task);
Willy Tarreau4726f532009-03-07 17:25:21 +0100175
176 /* the task is not in the queue now */
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100177 task->wq.key = task->expire;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200178#ifdef DEBUG_CHECK_INVALID_EXPIRATION_DATES
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100179 if (tick_is_lt(task->wq.key, now_ms))
Willy Tarreau28c41a42008-06-29 17:00:59 +0200180 /* we're queuing too far away or in the past (most likely) */
Willy Tarreau4726f532009-03-07 17:25:21 +0100181 return;
Willy Tarreau28c41a42008-06-29 17:00:59 +0200182#endif
Willy Tarreauce44f122008-07-05 18:16:19 +0200183
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100184 eb32_insert(&timers, &task->wq);
SaVaGe1d7a4202009-10-06 18:53:37 +0300185
Willy Tarreau4726f532009-03-07 17:25:21 +0100186 return;
Willy Tarreau964c9362007-01-07 00:38:00 +0100187}
188
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200189/*
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200190 * Extract all expired timers from the timer queue, and wakes up all
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100191 * associated tasks. Returns the date of next event (or eternity).
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200192 */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100193int wake_expired_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200194{
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200195 struct task *task;
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200196 struct eb32_node *eb;
Willy Tarreaub992ba12017-11-05 19:09:27 +0100197 int ret = TICK_ETERNITY;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200198
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100199 while (1) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100200 HA_SPIN_LOCK(TASK_WQ_LOCK, &wq_lock);
Emeric Brunc60def82017-09-27 14:59:38 +0200201 lookup_next:
Emeric Brun01948972017-03-30 15:37:25 +0200202 eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK);
Emeric Brunc60def82017-09-27 14:59:38 +0200203 if (!eb) {
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100204 /* we might have reached the end of the tree, typically because
205 * <now_ms> is in the first half and we're first scanning the last
206 * half. Let's loop back to the beginning of the tree now.
207 */
208 eb = eb32_first(&timers);
Willy Tarreaub992ba12017-11-05 19:09:27 +0100209 if (likely(!eb))
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100210 break;
211 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200212
Willy Tarreaub992ba12017-11-05 19:09:27 +0100213 if (tick_is_lt(now_ms, eb->key)) {
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100214 /* timer not expired yet, revisit it later */
Willy Tarreaub992ba12017-11-05 19:09:27 +0100215 ret = eb->key;
216 break;
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100217 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200218
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100219 /* timer looks expired, detach it from the queue */
220 task = eb32_entry(eb, struct task, wq);
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100221 __task_unlink_wq(task);
Willy Tarreau41365222009-03-08 07:46:27 +0100222
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100223 /* It is possible that this task was left at an earlier place in the
224 * tree because a recent call to task_queue() has not moved it. This
225 * happens when the new expiration date is later than the old one.
226 * Since it is very unlikely that we reach a timeout anyway, it's a
227 * lot cheaper to proceed like this because we almost never update
228 * the tree. We may also find disabled expiration dates there. Since
229 * we have detached the task from the tree, we simply call task_queue
Willy Tarreau814c9782009-07-14 23:48:55 +0200230 * to take care of this. Note that we might occasionally requeue it at
231 * the same place, before <eb>, so we have to check if this happens,
232 * and adjust <eb>, otherwise we may skip it which is not what we want.
Willy Tarreau34e98ea2009-08-09 09:09:54 +0200233 * We may also not requeue the task (and not point eb at it) if its
234 * expiration time is not set.
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100235 */
236 if (!tick_is_expired(task->expire, now_ms)) {
Willy Tarreaub992ba12017-11-05 19:09:27 +0100237 if (tick_isset(task->expire))
238 __task_queue(task);
Emeric Brunc60def82017-09-27 14:59:38 +0200239 goto lookup_next;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200240 }
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100241 task_wakeup(task, TASK_WOKEN_TIMER);
Willy Tarreau51753452017-11-23 18:36:50 +0100242 HA_SPIN_UNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100243 }
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200244
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100245 HA_SPIN_UNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaub992ba12017-11-05 19:09:27 +0100246 return ret;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200247}
248
Willy Tarreau58b458d2008-06-29 22:40:23 +0200249/* The run queue is chronologically sorted in a tree. An insertion counter is
250 * used to assign a position to each task. This counter may be combined with
251 * other variables (eg: nice value) to set the final position in the tree. The
252 * counter may wrap without a problem, of course. We then limit the number of
Christopher Faulet8a48f672017-11-14 10:38:36 +0100253 * tasks processed to 200 in any case, so that general latency remains low and
254 * so that task positions have a chance to be considered.
Willy Tarreau58b458d2008-06-29 22:40:23 +0200255 *
256 * The function adjusts <next> if a new event is closer.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200257 */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100258void process_runnable_tasks()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200259{
Willy Tarreau964c9362007-01-07 00:38:00 +0100260 struct task *t;
Emeric Brun01948972017-03-30 15:37:25 +0200261 int max_processed;
Christopher Faulet3911ee82017-11-14 10:26:53 +0100262
Christopher Faulet34c5cc92016-12-06 09:15:30 +0100263 tasks_run_queue_cur = tasks_run_queue; /* keep a copy for reporting */
Willy Tarreauc7bdf092009-03-21 18:33:52 +0100264 nb_tasks_cur = nb_tasks;
Olivier Houchard1599b802018-05-24 18:59:04 +0200265 max_processed = global.tune.runqueue_depth;
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200266
267 if (likely(global.nbthread > 1)) {
268 HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100269 if (!(active_tasks_mask & tid_bit)) {
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200270 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100271 activity[tid].empty_rq++;
Christopher Faulet8a48f672017-11-14 10:38:36 +0100272 return;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100273 }
Christopher Faulet8a48f672017-11-14 10:38:36 +0100274
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200275#ifdef USE_THREAD
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200276 /* Get some elements from the global run queue and put it in the
277 * local run queue. To try to keep a bit of fairness, just get as
278 * much elements from the global list as to have a bigger local queue
279 * than the average.
280 */
Willy Tarreau9a771862018-07-26 13:36:01 +0200281 while ((task_list_size[tid] + rqueue_size[tid]) * global.nbthread <= tasks_run_queue) {
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200282 /* we have to restart looking up after every batch */
283 rq_next = eb32sc_lookup_ge(&rqueue, rqueue_ticks - TIMER_LOOK_BACK, tid_bit);
284 if (unlikely(!rq_next)) {
285 /* either we just started or we reached the end
286 * of the tree, typically because <rqueue_ticks>
287 * is in the first half and we're first scanning
288 * the last half. Let's loop back to the beginning
289 * of the tree now.
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100290 */
291 rq_next = eb32sc_first(&rqueue, tid_bit);
Olivier Houchardc4aac9e2018-07-26 15:25:49 +0200292 if (!rq_next) {
293 HA_ATOMIC_AND(&global_tasks_mask, ~tid_bit);
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100294 break;
Olivier Houchardc4aac9e2018-07-26 15:25:49 +0200295 }
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100296 }
297
298 t = eb32sc_entry(rq_next, struct task, rq);
299 rq_next = eb32sc_next(rq_next, tid_bit);
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200300
301 /* detach the task from the queue */
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100302 __task_unlink_rq(t);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200303 __task_wakeup(t, &rqueue_local[tid]);
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100304 }
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200305#endif
Willy Tarreauf0c531a2017-11-05 16:35:59 +0100306
Christopher Faulet8a48f672017-11-14 10:38:36 +0100307 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200308 } else {
309 if (!(active_tasks_mask & tid_bit)) {
310 activity[tid].empty_rq++;
311 return;
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200312 }
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200313 }
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200314 /* Get some tasks from the run queue, make sure we don't
315 * get too much in the task list, but put a bit more than
316 * the max that will be run, to give a bit more fairness
317 */
Olivier Houchard1599b802018-05-24 18:59:04 +0200318 while (max_processed + (max_processed / 10) > task_list_size[tid]) {
Willy Tarreaue35c94a2009-03-21 10:01:42 +0100319 /* Note: this loop is one of the fastest code path in
320 * the whole program. It should not be re-arranged
321 * without a good reason.
322 */
Willy Tarreau9e45b332017-11-08 14:05:19 +0100323
324 /* we have to restart looking up after every batch */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200325 rq_next = eb32sc_lookup_ge(&rqueue_local[tid], rqueue_ticks - TIMER_LOOK_BACK, tid_bit);
326 if (unlikely(!rq_next)) {
327 /* either we just started or we reached the end
328 * of the tree, typically because <rqueue_ticks>
329 * is in the first half and we're first scanning
330 * the last half. Let's loop back to the beginning
331 * of the tree now.
Emeric Brun01948972017-03-30 15:37:25 +0200332 */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200333 rq_next = eb32sc_first(&rqueue_local[tid], tid_bit);
334 if (!rq_next)
335 break;
Emeric Brun01948972017-03-30 15:37:25 +0200336 }
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200337 t = eb32sc_entry(rq_next, struct task, rq);
338 rq_next = eb32sc_next(rq_next, tid_bit);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200339 /* Make sure nobody re-adds the task in the runqueue */
340 HA_ATOMIC_OR(&t->state, TASK_RUNNING);
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100341
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200342 /* detach the task from the queue */
343 __task_unlink_rq(t);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200344 /* And add it to the local task list */
345 task_insert_into_tasklet_list(t);
346 }
Olivier Houchardc4aac9e2018-07-26 15:25:49 +0200347 if (!(global_tasks_mask & tid_bit) && rqueue_size[tid] == 0) {
348 HA_ATOMIC_AND(&active_tasks_mask, ~tid_bit);
349 __ha_barrier_load();
350 if (global_tasks_mask & tid_bit)
351 HA_ATOMIC_OR(&active_tasks_mask, tid_bit);
352 }
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200353 while (max_processed > 0 && !LIST_ISEMPTY(&task_list[tid])) {
354 struct task *t;
355 unsigned short state;
356 void *ctx;
357 struct task *(*process)(struct task *t, void *ctx, unsigned short state);
358
359 t = (struct task *)LIST_ELEM(task_list[tid].n, struct tasklet *, list);
360 state = HA_ATOMIC_XCHG(&t->state, TASK_RUNNING);
361 __ha_barrier_store();
362 task_remove_from_task_list(t);
363
364 ctx = t->context;
365 process = t->process;
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200366 t->calls++;
367 curr_task = (struct task *)t;
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200368 if (likely(process == process_stream))
369 t = process_stream(t, ctx, state);
370 else {
371 if (t->process != NULL)
Olivier Houchard9db0fed2018-06-14 15:40:47 +0200372 t = process(TASK_IS_TASKLET(t) ? NULL : t, ctx, state);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200373 else {
374 __task_free(t);
375 t = NULL;
376 }
377 }
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200378 curr_task = NULL;
379 /* If there is a pending state we have to wake up the task
380 * immediatly, else we defer it into wait queue
381 */
382 if (t != NULL) {
383 state = HA_ATOMIC_AND(&t->state, ~TASK_RUNNING);
384 if (state)
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200385#ifdef USE_THREAD
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200386 __task_wakeup(t, (t->thread_mask == tid_bit) ?
387 &rqueue_local[tid] : &rqueue);
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200388#else
389 __task_wakeup(t, &rqueue_local[tid]);
390#endif
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200391 else
Willy Tarreau9d4b56b2017-11-06 08:36:53 +0100392 task_queue(t);
Willy Tarreau58b458d2008-06-29 22:40:23 +0200393 }
Willy Tarreauce4e0aa2017-11-05 23:57:00 +0100394
Olivier Houchard736ea412018-05-28 14:54:49 +0200395 max_processed--;
Christopher Faulet3911ee82017-11-14 10:26:53 +0100396 if (max_processed <= 0) {
Willy Tarreau189ea852018-07-26 15:16:43 +0200397 HA_ATOMIC_OR(&active_tasks_mask, tid_bit);
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100398 activity[tid].long_rq++;
Christopher Faulet3911ee82017-11-14 10:26:53 +0100399 break;
400 }
401 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200402}
403
Willy Tarreau4726f532009-03-07 17:25:21 +0100404/* perform minimal intializations, report 0 in case of error, 1 if OK. */
405int init_task()
406{
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200407 int i;
408
Willy Tarreau4726f532009-03-07 17:25:21 +0100409 memset(&timers, 0, sizeof(timers));
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200410#ifdef USE_THREAD
Willy Tarreau4726f532009-03-07 17:25:21 +0100411 memset(&rqueue, 0, sizeof(rqueue));
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200412#endif
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100413 HA_SPIN_INIT(&wq_lock);
414 HA_SPIN_INIT(&rq_lock);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200415 for (i = 0; i < MAX_THREADS; i++) {
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200416 memset(&rqueue_local[i], 0, sizeof(rqueue_local[i]));
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200417 LIST_INIT(&task_list[i]);
418 task_list_size[i] = 0;
419 }
Willy Tarreaubafbe012017-11-24 17:34:44 +0100420 pool_head_task = create_pool("task", sizeof(struct task), MEM_F_SHARED);
421 if (!pool_head_task)
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200422 return 0;
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200423 pool_head_tasklet = create_pool("tasklet", sizeof(struct tasklet), MEM_F_SHARED);
424 if (!pool_head_tasklet)
425 return 0;
Willy Tarreaubafbe012017-11-24 17:34:44 +0100426 pool_head_notification = create_pool("notification", sizeof(struct notification), MEM_F_SHARED);
427 if (!pool_head_notification)
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200428 return 0;
429 return 1;
Willy Tarreau4726f532009-03-07 17:25:21 +0100430}
431
Willy Tarreaubaaee002006-06-26 02:48:02 +0200432/*
433 * Local variables:
434 * c-indent-level: 8
435 * c-basic-offset: 8
436 * End:
437 */