blob: 6bc4f43cf20efa681f3ffb3c972f5ea580e60f30 [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 */
Christopher Faulet34c5cc92016-12-06 09:15:30 +010087extern unsigned int tasks_run_queue; /* run queue size */
88extern unsigned int tasks_run_queue_cur;
Willy Tarreauc7bdf092009-03-21 18:33:52 +010089extern unsigned int nb_tasks_cur;
Willy Tarreau91e99932008-06-30 07:51:00 +020090extern unsigned int niced_tasks; /* number of niced tasks in the run queue */
Willy Tarreaubafbe012017-11-24 17:34:44 +010091extern struct pool_head *pool_head_task;
Olivier Houchardb0bdae72018-05-18 18:45:28 +020092extern struct pool_head *pool_head_tasklet;
Willy Tarreaubafbe012017-11-24 17:34:44 +010093extern struct pool_head *pool_head_notification;
Olivier Houchard9b36cb42018-05-04 15:46:16 +020094extern THREAD_LOCAL struct task *curr_task; /* task currently running or NULL */
95extern THREAD_LOCAL struct eb32sc_node *rq_next; /* Next task to be potentially run */
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 Tarreaub20aa9e2018-10-15 14:52:21 +0200102extern struct eb_root timers_local[MAX_THREADS]; /* tree constituting the per-thread run queue */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200103extern struct eb_root rqueue_local[MAX_THREADS]; /* tree constituting the per-thread run queue */
Olivier Houchard77551ee2018-07-26 15:59:38 +0200104extern int rqueue_size[MAX_THREADS]; /* Number of elements in the per-thread run queue */
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200105extern struct list task_list[MAX_THREADS]; /* List of tasks to be run, mixing tasks and tasklets */
106extern int task_list_size[MAX_THREADS]; /* Number of task sin the task_list */
Christopher Faulet9dcf9b62017-11-13 10:34:01 +0100107
108__decl_hathreads(extern HA_SPINLOCK_T rq_lock); /* spin lock related to run queue */
109__decl_hathreads(extern HA_SPINLOCK_T wq_lock); /* spin lock related to wait queue */
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200110
Olivier Houchard5d187182018-08-01 15:58:44 +0200111
112static inline void task_insert_into_tasklet_list(struct task *t);
113
Willy Tarreau4726f532009-03-07 17:25:21 +0100114/* return 0 if task is in run queue, otherwise non-zero */
115static inline int task_in_rq(struct task *t)
116{
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200117 /* Check if leaf_p is NULL, in case he's not in the runqueue, and if
118 * it's not 0x1, which would mean it's in the tasklet list.
119 */
120 return t->rq.node.leaf_p != NULL && t->rq.node.leaf_p != (void *)0x1;
Willy Tarreau4726f532009-03-07 17:25:21 +0100121}
122
123/* return 0 if task is in wait queue, otherwise non-zero */
124static inline int task_in_wq(struct task *t)
125{
126 return t->wq.node.leaf_p != NULL;
127}
128
Willy Tarreaufdccded2008-08-29 18:19:04 +0200129/* puts the task <t> in run queue with reason flags <f>, and returns <t> */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200130/* This will put the task in the local runqueue if the task is only runnable
131 * by the current thread, in the global runqueue otherwies.
132 */
133void __task_wakeup(struct task *t, struct eb_root *);
134static inline void task_wakeup(struct task *t, unsigned int f)
Willy Tarreau4df82062008-08-29 15:26:14 +0200135{
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200136 unsigned short state;
Emeric Brunc60def82017-09-27 14:59:38 +0200137
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200138#ifdef USE_THREAD
139 struct eb_root *root;
Emeric Brunc60def82017-09-27 14:59:38 +0200140
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200141 if (t->thread_mask == tid_bit || global.nbthread == 1)
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200142 root = &rqueue_local[tid];
143 else
144 root = &rqueue;
145#else
Olivier Houcharde13ab8b2018-06-06 14:01:08 +0200146 struct eb_root *root = &rqueue_local[tid];
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200147#endif
148
149 state = HA_ATOMIC_OR(&t->state, f);
150 if (!(state & TASK_RUNNING))
151 __task_wakeup(t, root);
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{
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200178 if (likely(task_in_wq(t))) {
179 if (atleast2(t->thread_mask))
180 HA_SPIN_LOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau4726f532009-03-07 17:25:21 +0100181 __task_unlink_wq(t);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200182 if (atleast2(t->thread_mask))
183 HA_SPIN_UNLOCK(TASK_WQ_LOCK, &wq_lock);
184 }
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200185 return t;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200186}
187
188/*
Christopher Faulet34c5cc92016-12-06 09:15:30 +0100189 * Unlink the task from the run queue. The tasks_run_queue size and number of
190 * niced tasks are updated too. A pointer to the task itself is returned. The
191 * task *must* already be in the run queue before calling this function. If
192 * unsure, use the safer task_unlink_rq() function. Note that the pointer to the
193 * next run queue entry is neither checked nor updated.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200194 */
Willy Tarreau4726f532009-03-07 17:25:21 +0100195static inline struct task *__task_unlink_rq(struct task *t)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200196{
Olivier Houchard09eeb762018-05-28 13:51:06 +0200197 HA_ATOMIC_SUB(&tasks_run_queue, 1);
Olivier Houchard77551ee2018-07-26 15:59:38 +0200198#ifdef USE_THREAD
199 if (t->state & TASK_GLOBAL) {
Olivier Houchard76e45182018-07-26 16:19:58 +0200200 HA_ATOMIC_AND(&t->state, ~TASK_GLOBAL);
Olivier Houchard77551ee2018-07-26 15:59:38 +0200201 global_rqueue_size--;
202 } else
203#endif
204 rqueue_size[tid]--;
205 eb32sc_delete(&t->rq);
Willy Tarreau4726f532009-03-07 17:25:21 +0100206 if (likely(t->nice))
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200207 HA_ATOMIC_SUB(&niced_tasks, 1);
Willy Tarreauce44f122008-07-05 18:16:19 +0200208 return t;
209}
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200210
Willy Tarreau501260b2015-02-23 16:07:01 +0100211/* This function unlinks task <t> from the run queue if it is in it. It also
212 * takes care of updating the next run queue task if it was this task.
213 */
Willy Tarreau4726f532009-03-07 17:25:21 +0100214static inline struct task *task_unlink_rq(struct task *t)
215{
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200216 if (t->thread_mask != tid_bit)
217 HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
Olivier Houchard9b36cb42018-05-04 15:46:16 +0200218 if (likely(task_in_rq(t))) {
219 if (&t->rq == rq_next)
220 rq_next = eb32sc_next(rq_next, tid_bit);
Willy Tarreau4726f532009-03-07 17:25:21 +0100221 __task_unlink_rq(t);
Olivier Houchard9b36cb42018-05-04 15:46:16 +0200222 }
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200223 if (t->thread_mask != tid_bit)
224 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreau4726f532009-03-07 17:25:21 +0100225 return t;
226}
227
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200228static inline void tasklet_wakeup(struct tasklet *tl)
229{
Olivier Houchard5d187182018-08-01 15:58:44 +0200230 if (!TASK_IS_TASKLET(tl)) {
231 task_insert_into_tasklet_list((struct task *)tl);
232 return;
233 }
Olivier Houcharde17c2d32018-07-17 18:29:22 +0200234 if (!LIST_ISEMPTY(&tl->list))
235 return;
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200236 LIST_ADDQ(&task_list[tid], &tl->list);
237 task_list_size[tid]++;
Olivier Houchardabedf5f2018-08-17 18:57:51 +0200238 HA_ATOMIC_OR(&active_tasks_mask, tid_bit);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200239 HA_ATOMIC_ADD(&tasks_run_queue, 1);
240
241}
242
243static inline void task_insert_into_tasklet_list(struct task *t)
244{
245 struct tasklet *tl;
246 void *expected = NULL;
247
248 /* Protect ourself against anybody trying to insert the task into
249 * another runqueue. We set leaf_p to 0x1 to indicate that the node is
250 * not in a tree but that it's in the tasklet list. See task_in_rq().
251 */
David Carliercaa8a372018-06-01 14:32:39 +0200252 if (unlikely(!HA_ATOMIC_CAS(&t->rq.node.leaf_p, &expected, (void *)0x1)))
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200253 return;
Olivier Houchard09eeb762018-05-28 13:51:06 +0200254 HA_ATOMIC_ADD(&tasks_run_queue, 1);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200255 task_list_size[tid]++;
256 tl = (struct tasklet *)t;
257 LIST_ADDQ(&task_list[tid], &tl->list);
258}
259
260static inline void task_remove_from_task_list(struct task *t)
261{
262 LIST_DEL(&((struct tasklet *)t)->list);
Olivier Houcharddcd6f3a2018-06-08 17:08:19 +0200263 LIST_INIT(&((struct tasklet *)t)->list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200264 task_list_size[tid]--;
265 HA_ATOMIC_SUB(&tasks_run_queue, 1);
266 if (!TASK_IS_TASKLET(t)) {
267 t->rq.node.leaf_p = NULL; // was 0x1
268 __ha_barrier_store();
269 }
270}
271
Willy Tarreauce44f122008-07-05 18:16:19 +0200272/*
273 * Unlinks the task and adjusts run queue stats.
274 * A pointer to the task itself is returned.
275 */
276static inline struct task *task_delete(struct task *t)
277{
Willy Tarreau4726f532009-03-07 17:25:21 +0100278 task_unlink_wq(t);
279 task_unlink_rq(t);
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200280 return t;
281}
282
283/*
Willy Tarreaua4613182009-03-21 18:13:21 +0100284 * Initialize a new task. The bare minimum is performed (queue pointers and
285 * state). The task is returned. This function should not be used outside of
286 * task_new().
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200287 */
Emeric Brunc60def82017-09-27 14:59:38 +0200288static inline struct task *task_init(struct task *t, unsigned long thread_mask)
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200289{
Willy Tarreau4726f532009-03-07 17:25:21 +0100290 t->wq.node.leaf_p = NULL;
291 t->rq.node.leaf_p = NULL;
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200292 t->state = TASK_SLEEPING;
Willy Tarreauf65610a2017-10-31 16:06:06 +0100293 t->thread_mask = thread_mask;
Willy Tarreau91e99932008-06-30 07:51:00 +0200294 t->nice = 0;
Willy Tarreau3884cba2009-03-28 17:54:35 +0100295 t->calls = 0;
Willy Tarreauf4219992017-07-24 17:52:58 +0200296 t->expire = TICK_ETERNITY;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200297 return t;
298}
299
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200300static inline void tasklet_init(struct tasklet *t)
301{
302 t->nice = -32768;
303 t->calls = 0;
304 t->state = 0;
Olivier Houchard9ddaf792018-07-19 16:02:16 +0200305 t->process = NULL;
Olivier Houcharddcd6f3a2018-06-08 17:08:19 +0200306 LIST_INIT(&t->list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200307}
308
309static inline struct tasklet *tasklet_new(void)
310{
311 struct tasklet *t = pool_alloc(pool_head_tasklet);
312
313 if (t) {
314 tasklet_init(t);
315 }
316 return t;
317}
318
Willy Tarreaubaaee002006-06-26 02:48:02 +0200319/*
Willy Tarreaua4613182009-03-21 18:13:21 +0100320 * Allocate and initialise a new task. The new task is returned, or NULL in
321 * case of lack of memory. The task count is incremented. Tasks should only
322 * be allocated this way, and must be freed using task_free().
323 */
Emeric Brunc60def82017-09-27 14:59:38 +0200324static inline struct task *task_new(unsigned long thread_mask)
Willy Tarreaua4613182009-03-21 18:13:21 +0100325{
Willy Tarreaubafbe012017-11-24 17:34:44 +0100326 struct task *t = pool_alloc(pool_head_task);
Willy Tarreaua4613182009-03-21 18:13:21 +0100327 if (t) {
Emeric Brunc60def82017-09-27 14:59:38 +0200328 HA_ATOMIC_ADD(&nb_tasks, 1);
329 task_init(t, thread_mask);
Willy Tarreaua4613182009-03-21 18:13:21 +0100330 }
331 return t;
332}
333
334/*
335 * Free a task. Its context must have been freed since it will be lost.
336 * The task count is decremented.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200337 */
Olivier Houchard9b36cb42018-05-04 15:46:16 +0200338static inline void __task_free(struct task *t)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200339{
Willy Tarreaubafbe012017-11-24 17:34:44 +0100340 pool_free(pool_head_task, t);
Willy Tarreaueb118892014-11-13 16:57:19 +0100341 if (unlikely(stopping))
Willy Tarreaubafbe012017-11-24 17:34:44 +0100342 pool_flush(pool_head_task);
Emeric Brunc60def82017-09-27 14:59:38 +0200343 HA_ATOMIC_SUB(&nb_tasks, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200344}
345
Olivier Houchard9b36cb42018-05-04 15:46:16 +0200346static inline void task_free(struct task *t)
347{
348 /* There's no need to protect t->state with a lock, as the task
349 * has to run on the current thread.
350 */
351 if (t == curr_task || !(t->state & TASK_RUNNING))
352 __task_free(t);
353 else
354 t->process = NULL;
355}
356
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200357static inline void tasklet_free(struct tasklet *tl)
358{
Olivier Houchard931624a2018-09-12 14:55:03 +0200359 if (!LIST_ISEMPTY(&tl->list))
360 task_list_size[tid]--;
Olivier Houcharddcd6f3a2018-06-08 17:08:19 +0200361 LIST_DEL(&tl->list);
362
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200363 pool_free(pool_head_tasklet, tl);
364 if (unlikely(stopping))
365 pool_flush(pool_head_tasklet);
366}
367
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200368void __task_queue(struct task *task, struct eb_root *wq);
369
Willy Tarreau4726f532009-03-07 17:25:21 +0100370/* Place <task> into the wait queue, where it may already be. If the expiration
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100371 * timer is infinite, do nothing and rely on wake_expired_task to clean up.
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200372 * If the task is bound to a single thread, it's assumed to be bound to the
373 * current thread's queue and is queued without locking. Otherwise it's queued
374 * into the global wait queue, protected by locks.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200375 */
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100376static inline void task_queue(struct task *task)
377{
378 /* If we already have a place in the wait queue no later than the
379 * timeout we're trying to set, we'll stay there, because it is very
380 * unlikely that we will reach the timeout anyway. If the timeout
381 * has been disabled, it's useless to leave the queue as well. We'll
382 * rely on wake_expired_tasks() to catch the node and move it to the
383 * proper place should it ever happen. Finally we only add the task
384 * to the queue if it was not there or if it was further than what
385 * we want.
386 */
387 if (!tick_isset(task->expire))
388 return;
389
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200390#ifdef USE_THREAD
391 if (atleast2(task->thread_mask)) {
392 HA_SPIN_LOCK(TASK_WQ_LOCK, &wq_lock);
393 if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key))
394 __task_queue(task, &timers);
395 HA_SPIN_UNLOCK(TASK_WQ_LOCK, &wq_lock);
396 } else
397#endif
398 {
399 if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key))
400 __task_queue(task, &timers_local[tid]);
401 }
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100402}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200403
Willy Tarreau26e48812011-07-25 14:30:42 +0200404/* Ensure <task> will be woken up at most at <when>. If the task is already in
405 * the run queue (but not running), nothing is done. It may be used that way
406 * with a delay : task_schedule(task, tick_add(now_ms, delay));
407 */
408static inline void task_schedule(struct task *task, int when)
409{
Emeric Brunc60def82017-09-27 14:59:38 +0200410 /* TODO: mthread, check if there is no tisk with this test */
Willy Tarreau26e48812011-07-25 14:30:42 +0200411 if (task_in_rq(task))
412 return;
413
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200414#ifdef USE_THREAD
415 if (atleast2(task->thread_mask)) {
416 HA_SPIN_LOCK(TASK_WQ_LOCK, &wq_lock);
417 if (task_in_wq(task))
418 when = tick_first(when, task->expire);
419
420 task->expire = when;
421 if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key))
422 __task_queue(task, &timers);
423 HA_SPIN_UNLOCK(TASK_WQ_LOCK, &wq_lock);
424 } else
425#endif
426 {
427 if (task_in_wq(task))
428 when = tick_first(when, task->expire);
Willy Tarreau26e48812011-07-25 14:30:42 +0200429
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200430 task->expire = when;
431 if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key))
432 __task_queue(task, &timers_local[tid]);
433 }
Willy Tarreau26e48812011-07-25 14:30:42 +0200434}
435
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200436/* This function register a new signal. "lua" is the current lua
437 * execution context. It contains a pointer to the associated task.
438 * "link" is a list head attached to an other task that must be wake
439 * the lua task if an event occurs. This is useful with external
440 * events like TCP I/O or sleep functions. This funcion allocate
441 * memory for the signal.
442 */
443static inline struct notification *notification_new(struct list *purge, struct list *event, struct task *wakeup)
444{
Willy Tarreaubafbe012017-11-24 17:34:44 +0100445 struct notification *com = pool_alloc(pool_head_notification);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200446 if (!com)
447 return NULL;
448 LIST_ADDQ(purge, &com->purge_me);
449 LIST_ADDQ(event, &com->wake_me);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100450 HA_SPIN_INIT(&com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200451 com->task = wakeup;
452 return com;
453}
454
455/* This function purge all the pending signals when the LUA execution
456 * is finished. This prevent than a coprocess try to wake a deleted
457 * task. This function remove the memory associated to the signal.
Thierry FOURNIERd5b79832017-12-10 17:14:07 +0100458 * The purge list is not locked because it is owned by only one
459 * process. before browsing this list, the caller must ensure to be
460 * the only one browser.
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200461 */
462static inline void notification_purge(struct list *purge)
463{
464 struct notification *com, *back;
465
466 /* Delete all pending communication signals. */
467 list_for_each_entry_safe(com, back, purge, purge_me) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100468 HA_SPIN_LOCK(NOTIF_LOCK, &com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200469 LIST_DEL(&com->purge_me);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200470 if (!com->task) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100471 HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100472 pool_free(pool_head_notification, com);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200473 continue;
474 }
475 com->task = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100476 HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200477 }
478}
479
Thierry FOURNIERcb146882017-12-10 17:10:57 +0100480/* In some cases, the disconnected notifications must be cleared.
481 * This function just release memory blocs. The purge list is not
482 * locked because it is owned by only one process. Before browsing
483 * this list, the caller must ensure to be the only one browser.
484 * The "com" is not locked because when com->task is NULL, the
485 * notification is no longer used.
486 */
487static inline void notification_gc(struct list *purge)
488{
489 struct notification *com, *back;
490
491 /* Delete all pending communication signals. */
492 list_for_each_entry_safe (com, back, purge, purge_me) {
493 if (com->task)
494 continue;
495 LIST_DEL(&com->purge_me);
496 pool_free(pool_head_notification, com);
497 }
498}
499
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200500/* This function sends signals. It wakes all the tasks attached
501 * to a list head, and remove the signal, and free the used
Thierry FOURNIERd5b79832017-12-10 17:14:07 +0100502 * memory. The wake list is not locked because it is owned by
503 * only one process. before browsing this list, the caller must
504 * ensure to be the only one browser.
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200505 */
506static inline void notification_wake(struct list *wake)
507{
508 struct notification *com, *back;
509
510 /* Wake task and delete all pending communication signals. */
511 list_for_each_entry_safe(com, back, wake, wake_me) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100512 HA_SPIN_LOCK(NOTIF_LOCK, &com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200513 LIST_DEL(&com->wake_me);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200514 if (!com->task) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100515 HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100516 pool_free(pool_head_notification, com);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200517 continue;
518 }
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200519 task_wakeup(com->task, TASK_WOKEN_MSG);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200520 com->task = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100521 HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200522 }
523}
524
Thierry FOURNIER9d5422a2018-05-30 11:40:08 +0200525/* This function returns true is some notification are pending
526 */
527static inline int notification_registered(struct list *wake)
528{
529 return !LIST_ISEMPTY(wake);
530}
531
Willy Tarreaubaaee002006-06-26 02:48:02 +0200532/*
Willy Tarreau918ff602011-07-25 16:33:49 +0200533 * This does 3 things :
Willy Tarreaubaaee002006-06-26 02:48:02 +0200534 * - wake up all expired tasks
535 * - call all runnable tasks
Willy Tarreaud825eef2007-05-12 22:35:00 +0200536 * - return the date of next event in <next> or eternity.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200537 */
538
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100539void process_runnable_tasks();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200540
Willy Tarreau58b458d2008-06-29 22:40:23 +0200541/*
542 * Extract all expired timers from the timer queue, and wakes up all
543 * associated tasks. Returns the date of next event (or eternity).
544 */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100545int wake_expired_tasks();
Willy Tarreau58b458d2008-06-29 22:40:23 +0200546
Willy Tarreaud0a201b2009-03-08 15:53:06 +0100547/* Perform minimal initializations, report 0 in case of error, 1 if OK. */
548int init_task();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200549
550#endif /* _PROTO_TASK_H */
551
552/*
553 * Local variables:
554 * c-indent-level: 8
555 * c-basic-offset: 8
556 * End:
557 */