blob: 0aea72630526e4892fe612df8cfc24e2816f5774 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002 * include/proto/task.h
3 * Functions for task management.
4 *
5 * Copyright (C) 2000-2010 Willy Tarreau - w@1wt.eu
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation, version 2.1
10 * exclusively.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
Willy Tarreaubaaee002006-06-26 02:48:02 +020021
22#ifndef _PROTO_TASK_H
23#define _PROTO_TASK_H
24
25
26#include <sys/time.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020027
28#include <common/config.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020029#include <common/memory.h>
Willy Tarreau96bcfd72007-04-29 10:41:56 +020030#include <common/mini-clist.h>
31#include <common/standard.h>
Willy Tarreaud0a201b2009-03-08 15:53:06 +010032#include <common/ticks.h>
Emeric Brunc60def82017-09-27 14:59:38 +020033#include <common/hathreads.h>
34
Willy Tarreau8d388052017-11-05 13:34:20 +010035#include <eb32sctree.h>
Willy Tarreau45cb4fb2009-10-26 21:10:04 +010036#include <eb32tree.h>
Willy Tarreau96bcfd72007-04-29 10:41:56 +020037
Willy Tarreaueb118892014-11-13 16:57:19 +010038#include <types/global.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020039#include <types/task.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020040
Willy Tarreaud0a201b2009-03-08 15:53:06 +010041/* Principle of the wait queue.
42 *
43 * We want to be able to tell whether an expiration date is before of after the
44 * current time <now>. We KNOW that expiration dates are never too far apart,
45 * because they are measured in ticks (milliseconds). We also know that almost
46 * all dates will be in the future, and that a very small part of them will be
47 * in the past, they are the ones which have expired since last time we checked
48 * them. Using ticks, we know if a date is in the future or in the past, but we
49 * cannot use that to store sorted information because that reference changes
50 * all the time.
51 *
Willy Tarreaue35c94a2009-03-21 10:01:42 +010052 * We'll use the fact that the time wraps to sort timers. Timers above <now>
53 * are in the future, timers below <now> are in the past. Here, "above" and
54 * "below" are to be considered modulo 2^31.
Willy Tarreaud0a201b2009-03-08 15:53:06 +010055 *
Willy Tarreaue35c94a2009-03-21 10:01:42 +010056 * Timers are stored sorted in an ebtree. We use the new ability for ebtrees to
57 * lookup values starting from X to only expire tasks between <now> - 2^31 and
58 * <now>. If the end of the tree is reached while walking over it, we simply
59 * loop back to the beginning. That way, we have no problem keeping sorted
60 * wrapping timers in a tree, between (now - 24 days) and (now + 24 days). The
61 * keys in the tree always reflect their real position, none can be infinite.
62 * This reduces the number of checks to be performed.
Willy Tarreaud0a201b2009-03-08 15:53:06 +010063 *
64 * Another nice optimisation is to allow a timer to stay at an old place in the
65 * queue as long as it's not further than the real expiration date. That way,
66 * we use the tree as a place holder for a minorant of the real expiration
67 * date. Since we have a very low chance of hitting a timeout anyway, we can
68 * bounce the nodes to their right place when we scan the tree if we encounter
69 * a misplaced node once in a while. This even allows us not to remove the
70 * infinite timers from the wait queue.
71 *
72 * So, to summarize, we have :
73 * - node->key always defines current position in the wait queue
74 * - timer is the real expiration date (possibly infinite)
Willy Tarreaue35c94a2009-03-21 10:01:42 +010075 * - node->key is always before or equal to timer
Willy Tarreaud0a201b2009-03-08 15:53:06 +010076 *
77 * The run queue works similarly to the wait queue except that the current date
78 * is replaced by an insertion counter which can also wrap without any problem.
79 */
80
Willy Tarreaue35c94a2009-03-21 10:01:42 +010081/* The farthest we can look back in a timer tree */
82#define TIMER_LOOK_BACK (1U << 31)
Willy Tarreaud0a201b2009-03-08 15:53:06 +010083
84/* a few exported variables */
Willy Tarreaua4613182009-03-21 18:13:21 +010085extern unsigned int nb_tasks; /* total number of tasks */
Olivier Houchard9b03c0c2018-07-26 18:45:22 +020086extern volatile unsigned long active_tasks_mask; /* Mask of threads with active tasks */
Willy Tarreauaa1e1be2019-05-16 17:37:27 +020087extern volatile unsigned long global_tasks_mask; /* Mask of threads with tasks in the global runqueue */
Christopher Faulet34c5cc92016-12-06 09:15:30 +010088extern unsigned int tasks_run_queue; /* run queue size */
89extern unsigned int tasks_run_queue_cur;
Willy Tarreauc7bdf092009-03-21 18:33:52 +010090extern unsigned int nb_tasks_cur;
Willy Tarreau91e99932008-06-30 07:51:00 +020091extern unsigned int niced_tasks; /* number of niced tasks in the run queue */
Willy Tarreaubafbe012017-11-24 17:34:44 +010092extern struct pool_head *pool_head_task;
Olivier Houchardb0bdae72018-05-18 18:45:28 +020093extern struct pool_head *pool_head_tasklet;
Willy Tarreaubafbe012017-11-24 17:34:44 +010094extern struct pool_head *pool_head_notification;
Olivier Houchard9b36cb42018-05-04 15:46:16 +020095extern THREAD_LOCAL struct task *curr_task; /* task currently running or NULL */
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020096#ifdef USE_THREAD
Willy Tarreaub20aa9e2018-10-15 14:52:21 +020097extern struct eb_root timers; /* sorted timers tree, global */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020098extern struct eb_root rqueue; /* tree constituting the run queue */
Olivier Houchard77551ee2018-07-26 15:59:38 +020099extern int global_rqueue_size; /* Number of element sin the global runqueue */
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200100#endif
Olivier Houchard77551ee2018-07-26 15:59:38 +0200101
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200102extern struct task_per_thread task_per_thread[MAX_THREADS];
Christopher Faulet9dcf9b62017-11-13 10:34:01 +0100103
104__decl_hathreads(extern HA_SPINLOCK_T rq_lock); /* spin lock related to run queue */
105__decl_hathreads(extern HA_SPINLOCK_T wq_lock); /* spin lock related to wait queue */
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200106
Olivier Houchard5d187182018-08-01 15:58:44 +0200107
108static inline void task_insert_into_tasklet_list(struct task *t);
109
Willy Tarreau4726f532009-03-07 17:25:21 +0100110/* return 0 if task is in run queue, otherwise non-zero */
111static inline int task_in_rq(struct task *t)
112{
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200113 /* Check if leaf_p is NULL, in case he's not in the runqueue, and if
114 * it's not 0x1, which would mean it's in the tasklet list.
115 */
Olivier Houchard4a1be0c2019-04-17 19:13:07 +0200116 return t->rq.node.leaf_p != NULL;
Willy Tarreau4726f532009-03-07 17:25:21 +0100117}
118
119/* return 0 if task is in wait queue, otherwise non-zero */
120static inline int task_in_wq(struct task *t)
121{
122 return t->wq.node.leaf_p != NULL;
123}
124
Willy Tarreaufdccded2008-08-29 18:19:04 +0200125/* puts the task <t> in run queue with reason flags <f>, and returns <t> */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200126/* This will put the task in the local runqueue if the task is only runnable
127 * by the current thread, in the global runqueue otherwies.
128 */
129void __task_wakeup(struct task *t, struct eb_root *);
130static inline void task_wakeup(struct task *t, unsigned int f)
Willy Tarreau4df82062008-08-29 15:26:14 +0200131{
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200132 unsigned short state;
Emeric Brunc60def82017-09-27 14:59:38 +0200133
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200134#ifdef USE_THREAD
135 struct eb_root *root;
Emeric Brunc60def82017-09-27 14:59:38 +0200136
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200137 if (t->thread_mask == tid_bit || global.nbthread == 1)
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200138 root = &task_per_thread[tid].rqueue;
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200139 else
140 root = &rqueue;
141#else
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200142 struct eb_root *root = &task_per_thread[tid].rqueue;
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200143#endif
144
Willy Tarreaub0380072019-04-17 11:47:18 +0200145 state = _HA_ATOMIC_OR(&t->state, f);
146 while (!(state & (TASK_RUNNING | TASK_QUEUED))) {
Willy Tarreau8c12e2f2019-04-17 20:52:51 +0200147 if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_QUEUED)) {
148 __task_wakeup(t, root);
Willy Tarreaub0380072019-04-17 11:47:18 +0200149 break;
Willy Tarreau8c12e2f2019-04-17 20:52:51 +0200150 }
Willy Tarreaub0380072019-04-17 11:47:18 +0200151 }
Willy Tarreau4df82062008-08-29 15:26:14 +0200152}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200153
Willy Tarreauf65610a2017-10-31 16:06:06 +0100154/* change the thread affinity of a task to <thread_mask> */
Emeric Brunc60def82017-09-27 14:59:38 +0200155static inline void task_set_affinity(struct task *t, unsigned long thread_mask)
156{
Willy Tarreauf65610a2017-10-31 16:06:06 +0100157 t->thread_mask = thread_mask;
Emeric Brunc60def82017-09-27 14:59:38 +0200158}
Willy Tarreauf65610a2017-10-31 16:06:06 +0100159
Willy Tarreau4726f532009-03-07 17:25:21 +0100160/*
161 * Unlink the task from the wait queue, and possibly update the last_timer
162 * pointer. A pointer to the task itself is returned. The task *must* already
163 * be in the wait queue before calling this function. If unsure, use the safer
164 * task_unlink_wq() function.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200165 */
Willy Tarreau4726f532009-03-07 17:25:21 +0100166static inline struct task *__task_unlink_wq(struct task *t)
167{
168 eb32_delete(&t->wq);
Willy Tarreau4726f532009-03-07 17:25:21 +0100169 return t;
170}
171
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200172/* remove a task from its wait queue. It may either be the local wait queue if
173 * the task is bound to a single thread (in which case there's no locking
174 * involved) or the global queue, with locking.
175 */
Willy Tarreau4726f532009-03-07 17:25:21 +0100176static inline struct task *task_unlink_wq(struct task *t)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200177{
Richard Russobc9d9842019-02-20 12:43:45 -0800178 unsigned long locked;
179
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200180 if (likely(task_in_wq(t))) {
Richard Russobc9d9842019-02-20 12:43:45 -0800181 locked = atleast2(t->thread_mask);
182 if (locked)
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200183 HA_SPIN_LOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau4726f532009-03-07 17:25:21 +0100184 __task_unlink_wq(t);
Richard Russobc9d9842019-02-20 12:43:45 -0800185 if (locked)
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200186 HA_SPIN_UNLOCK(TASK_WQ_LOCK, &wq_lock);
187 }
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200188 return t;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200189}
190
191/*
Christopher Faulet34c5cc92016-12-06 09:15:30 +0100192 * Unlink the task from the run queue. The tasks_run_queue size and number of
193 * niced tasks are updated too. A pointer to the task itself is returned. The
194 * task *must* already be in the run queue before calling this function. If
195 * unsure, use the safer task_unlink_rq() function. Note that the pointer to the
196 * next run queue entry is neither checked nor updated.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200197 */
Willy Tarreau4726f532009-03-07 17:25:21 +0100198static inline struct task *__task_unlink_rq(struct task *t)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200199{
Olivier Houchard4c2832852019-03-08 18:48:47 +0100200 _HA_ATOMIC_SUB(&tasks_run_queue, 1);
Olivier Houchard77551ee2018-07-26 15:59:38 +0200201#ifdef USE_THREAD
202 if (t->state & TASK_GLOBAL) {
Olivier Houchard4c2832852019-03-08 18:48:47 +0100203 _HA_ATOMIC_AND(&t->state, ~TASK_GLOBAL);
Olivier Houchard77551ee2018-07-26 15:59:38 +0200204 global_rqueue_size--;
205 } else
206#endif
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200207 task_per_thread[tid].rqueue_size--;
Olivier Houchard77551ee2018-07-26 15:59:38 +0200208 eb32sc_delete(&t->rq);
Willy Tarreau4726f532009-03-07 17:25:21 +0100209 if (likely(t->nice))
Olivier Houchard4c2832852019-03-08 18:48:47 +0100210 _HA_ATOMIC_SUB(&niced_tasks, 1);
Willy Tarreauce44f122008-07-05 18:16:19 +0200211 return t;
212}
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200213
Willy Tarreau501260b2015-02-23 16:07:01 +0100214/* This function unlinks task <t> from the run queue if it is in it. It also
215 * takes care of updating the next run queue task if it was this task.
216 */
Willy Tarreau4726f532009-03-07 17:25:21 +0100217static inline struct task *task_unlink_rq(struct task *t)
218{
Olivier Houchard1d7f37a2019-03-14 16:14:04 +0100219 int is_global = t->state & TASK_GLOBAL;
220
221 if (is_global)
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200222 HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreau24f382f2019-04-12 16:10:55 +0200223 if (likely(task_in_rq(t)))
Willy Tarreau4726f532009-03-07 17:25:21 +0100224 __task_unlink_rq(t);
Olivier Houchard1d7f37a2019-03-14 16:14:04 +0100225 if (is_global)
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200226 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreau4726f532009-03-07 17:25:21 +0100227 return t;
228}
229
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200230static inline void tasklet_wakeup(struct tasklet *tl)
231{
Olivier Houcharde17c2d32018-07-17 18:29:22 +0200232 if (!LIST_ISEMPTY(&tl->list))
233 return;
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200234 LIST_ADDQ(&task_per_thread[tid].task_list, &tl->list);
235 task_per_thread[tid].task_list_size++;
Olivier Houchard4c2832852019-03-08 18:48:47 +0100236 _HA_ATOMIC_OR(&active_tasks_mask, tid_bit);
237 _HA_ATOMIC_ADD(&tasks_run_queue, 1);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200238
239}
240
241static inline void task_insert_into_tasklet_list(struct task *t)
242{
243 struct tasklet *tl;
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200244
Olivier Houchard4c2832852019-03-08 18:48:47 +0100245 _HA_ATOMIC_ADD(&tasks_run_queue, 1);
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200246 task_per_thread[tid].task_list_size++;
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200247 tl = (struct tasklet *)t;
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200248 LIST_ADDQ(&task_per_thread[tid].task_list, &tl->list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200249}
250
Willy Tarreaue73256f2019-03-25 18:02:54 +0100251/* remove the task from the tasklet list. The task MUST already be there. If
252 * unsure, use task_remove_from_task_list() instead.
253 */
254static inline void __task_remove_from_tasklet_list(struct task *t)
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200255{
Willy Tarreaub238b122019-03-06 19:34:25 +0100256 LIST_DEL_INIT(&((struct tasklet *)t)->list);
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200257 task_per_thread[tid].task_list_size--;
Olivier Houchard4c2832852019-03-08 18:48:47 +0100258 _HA_ATOMIC_SUB(&tasks_run_queue, 1);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200259}
260
Willy Tarreaue73256f2019-03-25 18:02:54 +0100261static inline void task_remove_from_tasklet_list(struct task *t)
262{
263 if (likely(!LIST_ISEMPTY(&((struct tasklet *)t)->list)))
264 __task_remove_from_tasklet_list(t);
265}
266
Willy Tarreauce44f122008-07-05 18:16:19 +0200267/*
Willy Tarreaua4613182009-03-21 18:13:21 +0100268 * Initialize a new task. The bare minimum is performed (queue pointers and
269 * state). The task is returned. This function should not be used outside of
270 * task_new().
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200271 */
Emeric Brunc60def82017-09-27 14:59:38 +0200272static inline struct task *task_init(struct task *t, unsigned long thread_mask)
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200273{
Willy Tarreau4726f532009-03-07 17:25:21 +0100274 t->wq.node.leaf_p = NULL;
275 t->rq.node.leaf_p = NULL;
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200276 t->state = TASK_SLEEPING;
Willy Tarreauf65610a2017-10-31 16:06:06 +0100277 t->thread_mask = thread_mask;
Willy Tarreau91e99932008-06-30 07:51:00 +0200278 t->nice = 0;
Willy Tarreau3884cba2009-03-28 17:54:35 +0100279 t->calls = 0;
Willy Tarreau9efd7452018-05-31 14:48:54 +0200280 t->call_date = 0;
281 t->cpu_time = 0;
282 t->lat_time = 0;
Willy Tarreauf4219992017-07-24 17:52:58 +0200283 t->expire = TICK_ETERNITY;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200284 return t;
285}
286
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200287static inline void tasklet_init(struct tasklet *t)
288{
289 t->nice = -32768;
290 t->calls = 0;
291 t->state = 0;
Olivier Houchard9ddaf792018-07-19 16:02:16 +0200292 t->process = NULL;
Olivier Houcharddcd6f3a2018-06-08 17:08:19 +0200293 LIST_INIT(&t->list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200294}
295
296static inline struct tasklet *tasklet_new(void)
297{
298 struct tasklet *t = pool_alloc(pool_head_tasklet);
299
300 if (t) {
301 tasklet_init(t);
302 }
303 return t;
304}
305
Willy Tarreaubaaee002006-06-26 02:48:02 +0200306/*
Willy Tarreaua4613182009-03-21 18:13:21 +0100307 * Allocate and initialise a new task. The new task is returned, or NULL in
308 * case of lack of memory. The task count is incremented. Tasks should only
309 * be allocated this way, and must be freed using task_free().
310 */
Emeric Brunc60def82017-09-27 14:59:38 +0200311static inline struct task *task_new(unsigned long thread_mask)
Willy Tarreaua4613182009-03-21 18:13:21 +0100312{
Willy Tarreaubafbe012017-11-24 17:34:44 +0100313 struct task *t = pool_alloc(pool_head_task);
Willy Tarreaua4613182009-03-21 18:13:21 +0100314 if (t) {
Olivier Houchard4c2832852019-03-08 18:48:47 +0100315 _HA_ATOMIC_ADD(&nb_tasks, 1);
Emeric Brunc60def82017-09-27 14:59:38 +0200316 task_init(t, thread_mask);
Willy Tarreaua4613182009-03-21 18:13:21 +0100317 }
318 return t;
319}
320
321/*
Willy Tarreau29bf96d2019-05-17 14:16:51 +0200322 * Free a task. Its context must have been freed since it will be lost. The
323 * task count is decremented. It it is the current task, this one is reset.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200324 */
Olivier Houchard9b36cb42018-05-04 15:46:16 +0200325static inline void __task_free(struct task *t)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200326{
Willy Tarreau29bf96d2019-05-17 14:16:51 +0200327 if (t == curr_task) {
328 curr_task = NULL;
329 __ha_barrier_store();
330 }
Willy Tarreaubafbe012017-11-24 17:34:44 +0100331 pool_free(pool_head_task, t);
Willy Tarreaueb118892014-11-13 16:57:19 +0100332 if (unlikely(stopping))
Willy Tarreaubafbe012017-11-24 17:34:44 +0100333 pool_flush(pool_head_task);
Olivier Houchard4c2832852019-03-08 18:48:47 +0100334 _HA_ATOMIC_SUB(&nb_tasks, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200335}
336
Willy Tarreauf6562792019-05-07 19:05:35 +0200337/* Destroys a task : it's unlinked from the wait queues and is freed if it's
338 * the current task or not queued otherwise it's marked to be freed by the
339 * scheduler. It does nothing if <t> is NULL.
340 */
Olivier Houchard3f795f72019-04-17 22:51:06 +0200341static inline void task_destroy(struct task *t)
Olivier Houchard9b36cb42018-05-04 15:46:16 +0200342{
Dragan Dosen75bc6d32019-05-07 15:25:25 +0200343 if (!t)
344 return;
345
Olivier Houchard3f795f72019-04-17 22:51:06 +0200346 task_unlink_wq(t);
347 /* We don't have to explicitely remove from the run queue.
348 * If we are in the runqueue, the test below will set t->process
349 * to NULL, and the task will be free'd when it'll be its turn
350 * to run.
351 */
352
Olivier Houchard9b36cb42018-05-04 15:46:16 +0200353 /* There's no need to protect t->state with a lock, as the task
354 * has to run on the current thread.
355 */
Willy Tarreaua70bfaa2019-04-17 21:58:23 +0200356 if (t == curr_task || !(t->state & (TASK_QUEUED | TASK_RUNNING)))
Olivier Houchard9b36cb42018-05-04 15:46:16 +0200357 __task_free(t);
358 else
359 t->process = NULL;
360}
361
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200362static inline void tasklet_free(struct tasklet *tl)
363{
Olivier Houchard09e498f2018-12-24 14:03:10 +0100364 if (!LIST_ISEMPTY(&tl->list)) {
Willy Tarreaua33d39a2019-03-25 18:10:53 +0100365 LIST_DEL(&tl->list);
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200366 task_per_thread[tid].task_list_size--;
Olivier Houchard4c2832852019-03-08 18:48:47 +0100367 _HA_ATOMIC_SUB(&tasks_run_queue, 1);
Olivier Houchard09e498f2018-12-24 14:03:10 +0100368 }
Olivier Houcharddcd6f3a2018-06-08 17:08:19 +0200369
Willy Tarreau29bf96d2019-05-17 14:16:51 +0200370 if ((struct task *)tl == curr_task) {
371 curr_task = NULL;
372 __ha_barrier_store();
373 }
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200374 pool_free(pool_head_tasklet, tl);
375 if (unlikely(stopping))
376 pool_flush(pool_head_tasklet);
377}
378
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200379void __task_queue(struct task *task, struct eb_root *wq);
380
Willy Tarreau4726f532009-03-07 17:25:21 +0100381/* Place <task> into the wait queue, where it may already be. If the expiration
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100382 * timer is infinite, do nothing and rely on wake_expired_task to clean up.
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200383 * If the task is bound to a single thread, it's assumed to be bound to the
384 * current thread's queue and is queued without locking. Otherwise it's queued
385 * into the global wait queue, protected by locks.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200386 */
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100387static inline void task_queue(struct task *task)
388{
389 /* If we already have a place in the wait queue no later than the
390 * timeout we're trying to set, we'll stay there, because it is very
391 * unlikely that we will reach the timeout anyway. If the timeout
392 * has been disabled, it's useless to leave the queue as well. We'll
393 * rely on wake_expired_tasks() to catch the node and move it to the
394 * proper place should it ever happen. Finally we only add the task
395 * to the queue if it was not there or if it was further than what
396 * we want.
397 */
398 if (!tick_isset(task->expire))
399 return;
400
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200401#ifdef USE_THREAD
402 if (atleast2(task->thread_mask)) {
403 HA_SPIN_LOCK(TASK_WQ_LOCK, &wq_lock);
404 if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key))
405 __task_queue(task, &timers);
406 HA_SPIN_UNLOCK(TASK_WQ_LOCK, &wq_lock);
407 } else
408#endif
409 {
410 if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key))
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200411 __task_queue(task, &task_per_thread[tid].timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200412 }
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100413}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200414
Willy Tarreau26e48812011-07-25 14:30:42 +0200415/* Ensure <task> will be woken up at most at <when>. If the task is already in
416 * the run queue (but not running), nothing is done. It may be used that way
417 * with a delay : task_schedule(task, tick_add(now_ms, delay));
418 */
419static inline void task_schedule(struct task *task, int when)
420{
Emeric Brunc60def82017-09-27 14:59:38 +0200421 /* TODO: mthread, check if there is no tisk with this test */
Willy Tarreau26e48812011-07-25 14:30:42 +0200422 if (task_in_rq(task))
423 return;
424
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200425#ifdef USE_THREAD
426 if (atleast2(task->thread_mask)) {
427 HA_SPIN_LOCK(TASK_WQ_LOCK, &wq_lock);
428 if (task_in_wq(task))
429 when = tick_first(when, task->expire);
430
431 task->expire = when;
432 if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key))
433 __task_queue(task, &timers);
434 HA_SPIN_UNLOCK(TASK_WQ_LOCK, &wq_lock);
435 } else
436#endif
437 {
438 if (task_in_wq(task))
439 when = tick_first(when, task->expire);
Willy Tarreau26e48812011-07-25 14:30:42 +0200440
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200441 task->expire = when;
442 if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key))
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200443 __task_queue(task, &task_per_thread[tid].timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200444 }
Willy Tarreau26e48812011-07-25 14:30:42 +0200445}
446
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200447/* This function register a new signal. "lua" is the current lua
448 * execution context. It contains a pointer to the associated task.
449 * "link" is a list head attached to an other task that must be wake
450 * the lua task if an event occurs. This is useful with external
451 * events like TCP I/O or sleep functions. This funcion allocate
452 * memory for the signal.
453 */
454static inline struct notification *notification_new(struct list *purge, struct list *event, struct task *wakeup)
455{
Willy Tarreaubafbe012017-11-24 17:34:44 +0100456 struct notification *com = pool_alloc(pool_head_notification);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200457 if (!com)
458 return NULL;
459 LIST_ADDQ(purge, &com->purge_me);
460 LIST_ADDQ(event, &com->wake_me);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100461 HA_SPIN_INIT(&com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200462 com->task = wakeup;
463 return com;
464}
465
466/* This function purge all the pending signals when the LUA execution
467 * is finished. This prevent than a coprocess try to wake a deleted
468 * task. This function remove the memory associated to the signal.
Thierry FOURNIERd5b79832017-12-10 17:14:07 +0100469 * The purge list is not locked because it is owned by only one
470 * process. before browsing this list, the caller must ensure to be
471 * the only one browser.
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200472 */
473static inline void notification_purge(struct list *purge)
474{
475 struct notification *com, *back;
476
477 /* Delete all pending communication signals. */
478 list_for_each_entry_safe(com, back, purge, purge_me) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100479 HA_SPIN_LOCK(NOTIF_LOCK, &com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200480 LIST_DEL(&com->purge_me);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200481 if (!com->task) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100482 HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100483 pool_free(pool_head_notification, com);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200484 continue;
485 }
486 com->task = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100487 HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200488 }
489}
490
Thierry FOURNIERcb146882017-12-10 17:10:57 +0100491/* In some cases, the disconnected notifications must be cleared.
492 * This function just release memory blocs. The purge list is not
493 * locked because it is owned by only one process. Before browsing
494 * this list, the caller must ensure to be the only one browser.
495 * The "com" is not locked because when com->task is NULL, the
496 * notification is no longer used.
497 */
498static inline void notification_gc(struct list *purge)
499{
500 struct notification *com, *back;
501
502 /* Delete all pending communication signals. */
503 list_for_each_entry_safe (com, back, purge, purge_me) {
504 if (com->task)
505 continue;
506 LIST_DEL(&com->purge_me);
507 pool_free(pool_head_notification, com);
508 }
509}
510
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200511/* This function sends signals. It wakes all the tasks attached
512 * to a list head, and remove the signal, and free the used
Thierry FOURNIERd5b79832017-12-10 17:14:07 +0100513 * memory. The wake list is not locked because it is owned by
514 * only one process. before browsing this list, the caller must
515 * ensure to be the only one browser.
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200516 */
517static inline void notification_wake(struct list *wake)
518{
519 struct notification *com, *back;
520
521 /* Wake task and delete all pending communication signals. */
522 list_for_each_entry_safe(com, back, wake, wake_me) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100523 HA_SPIN_LOCK(NOTIF_LOCK, &com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200524 LIST_DEL(&com->wake_me);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200525 if (!com->task) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100526 HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100527 pool_free(pool_head_notification, com);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200528 continue;
529 }
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200530 task_wakeup(com->task, TASK_WOKEN_MSG);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200531 com->task = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100532 HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200533 }
534}
535
Thierry FOURNIER9d5422a2018-05-30 11:40:08 +0200536/* This function returns true is some notification are pending
537 */
538static inline int notification_registered(struct list *wake)
539{
540 return !LIST_ISEMPTY(wake);
541}
542
Willy Tarreaubaaee002006-06-26 02:48:02 +0200543/*
Willy Tarreau918ff602011-07-25 16:33:49 +0200544 * This does 3 things :
Willy Tarreaubaaee002006-06-26 02:48:02 +0200545 * - wake up all expired tasks
546 * - call all runnable tasks
Willy Tarreaud825eef2007-05-12 22:35:00 +0200547 * - return the date of next event in <next> or eternity.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200548 */
549
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100550void process_runnable_tasks();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200551
Willy Tarreau58b458d2008-06-29 22:40:23 +0200552/*
553 * Extract all expired timers from the timer queue, and wakes up all
554 * associated tasks. Returns the date of next event (or eternity).
555 */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100556int wake_expired_tasks();
Willy Tarreau58b458d2008-06-29 22:40:23 +0200557
William Lallemand27f3fa52018-12-06 14:05:20 +0100558/*
559 * Delete every tasks before running the master polling loop
560 */
561void mworker_cleantasks();
562
Willy Tarreaubaaee002006-06-26 02:48:02 +0200563#endif /* _PROTO_TASK_H */
564
565/*
566 * Local variables:
567 * c-indent-level: 8
568 * c-basic-offset: 8
569 * End:
570 */