blob: 5c7aa6ae643c1fcae25084e0ad8cc680178a50b8 [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 */
Willy Tarreauaa1e1be2019-05-16 17:37:27 +020086extern volatile unsigned long global_tasks_mask; /* Mask of threads with tasks in the global runqueue */
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 */
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020095#ifdef USE_THREAD
Willy Tarreaub20aa9e2018-10-15 14:52:21 +020096extern struct eb_root timers; /* sorted timers tree, global */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020097extern struct eb_root rqueue; /* tree constituting the run queue */
Olivier Houchard77551ee2018-07-26 15:59:38 +020098extern int global_rqueue_size; /* Number of element sin the global runqueue */
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020099#endif
Olivier Houchard77551ee2018-07-26 15:59:38 +0200100
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200101extern struct task_per_thread task_per_thread[MAX_THREADS];
Christopher Faulet9dcf9b62017-11-13 10:34:01 +0100102
103__decl_hathreads(extern HA_SPINLOCK_T rq_lock); /* spin lock related to run queue */
Willy Tarreauef28dc12019-05-28 18:48:07 +0200104__decl_hathreads(extern HA_RWLOCK_T wq_lock); /* RW lock related to the wait queue */
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200105
Olivier Houchardd5d0fc92019-12-05 15:11:19 +0100106static inline struct task *task_unlink_wq(struct task *t);
107static inline void task_queue(struct task *task);
Olivier Houchard5d187182018-08-01 15:58:44 +0200108
Willy Tarreau4726f532009-03-07 17:25:21 +0100109/* return 0 if task is in run queue, otherwise non-zero */
110static inline int task_in_rq(struct task *t)
111{
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200112 /* Check if leaf_p is NULL, in case he's not in the runqueue, and if
113 * it's not 0x1, which would mean it's in the tasklet list.
114 */
Olivier Houchard4a1be0c2019-04-17 19:13:07 +0200115 return t->rq.node.leaf_p != NULL;
Willy Tarreau4726f532009-03-07 17:25:21 +0100116}
117
118/* return 0 if task is in wait queue, otherwise non-zero */
119static inline int task_in_wq(struct task *t)
120{
121 return t->wq.node.leaf_p != NULL;
122}
123
Willy Tarreaufdccded2008-08-29 18:19:04 +0200124/* puts the task <t> in run queue with reason flags <f>, and returns <t> */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200125/* This will put the task in the local runqueue if the task is only runnable
126 * by the current thread, in the global runqueue otherwies.
127 */
128void __task_wakeup(struct task *t, struct eb_root *);
129static inline void task_wakeup(struct task *t, unsigned int f)
Willy Tarreau4df82062008-08-29 15:26:14 +0200130{
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200131 unsigned short state;
Emeric Brunc60def82017-09-27 14:59:38 +0200132
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200133#ifdef USE_THREAD
134 struct eb_root *root;
Emeric Brunc60def82017-09-27 14:59:38 +0200135
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200136 if (t->thread_mask == tid_bit || global.nbthread == 1)
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200137 root = &task_per_thread[tid].rqueue;
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200138 else
139 root = &rqueue;
140#else
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200141 struct eb_root *root = &task_per_thread[tid].rqueue;
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200142#endif
143
Willy Tarreaub0380072019-04-17 11:47:18 +0200144 state = _HA_ATOMIC_OR(&t->state, f);
145 while (!(state & (TASK_RUNNING | TASK_QUEUED))) {
Willy Tarreau8c12e2f2019-04-17 20:52:51 +0200146 if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_QUEUED)) {
147 __task_wakeup(t, root);
Willy Tarreaub0380072019-04-17 11:47:18 +0200148 break;
Willy Tarreau8c12e2f2019-04-17 20:52:51 +0200149 }
Willy Tarreaub0380072019-04-17 11:47:18 +0200150 }
Willy Tarreau4df82062008-08-29 15:26:14 +0200151}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200152
Willy Tarreaue69893b2019-12-19 07:39:06 +0100153/* change the thread affinity of a task to <thread_mask>.
154 * This may only be done from within the running task itself or during its
155 * initialization. It will unqueue and requeue the task from the wait queue
156 * if it was in it. This is safe against a concurrent task_queue() call because
157 * task_queue() itself will unlink again if needed after taking into account
158 * the new thread_mask.
159 */
Emeric Brunc60def82017-09-27 14:59:38 +0200160static inline void task_set_affinity(struct task *t, unsigned long thread_mask)
161{
Willy Tarreaufcd74012019-12-11 09:11:58 +0100162 if (unlikely(task_in_wq(t))) {
Olivier Houchardd5d0fc92019-12-05 15:11:19 +0100163 task_unlink_wq(t);
Willy Tarreaufcd74012019-12-11 09:11:58 +0100164 t->thread_mask = thread_mask;
Olivier Houchardd5d0fc92019-12-05 15:11:19 +0100165 task_queue(t);
Willy Tarreaufcd74012019-12-11 09:11:58 +0100166 }
167 else
168 t->thread_mask = thread_mask;
Emeric Brunc60def82017-09-27 14:59:38 +0200169}
Willy Tarreauf65610a2017-10-31 16:06:06 +0100170
Willy Tarreau4726f532009-03-07 17:25:21 +0100171/*
172 * Unlink the task from the wait queue, and possibly update the last_timer
173 * pointer. A pointer to the task itself is returned. The task *must* already
174 * be in the wait queue before calling this function. If unsure, use the safer
175 * task_unlink_wq() function.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200176 */
Willy Tarreau4726f532009-03-07 17:25:21 +0100177static inline struct task *__task_unlink_wq(struct task *t)
178{
179 eb32_delete(&t->wq);
Willy Tarreau4726f532009-03-07 17:25:21 +0100180 return t;
181}
182
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200183/* remove a task from its wait queue. It may either be the local wait queue if
Willy Tarreaue69893b2019-12-19 07:39:06 +0100184 * the task is bound to a single thread or the global queue. If the task uses a
185 * shared wait queue, the global wait queue lock is used.
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200186 */
Willy Tarreau4726f532009-03-07 17:25:21 +0100187static inline struct task *task_unlink_wq(struct task *t)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200188{
Richard Russobc9d9842019-02-20 12:43:45 -0800189 unsigned long locked;
190
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200191 if (likely(task_in_wq(t))) {
Willy Tarreaue69893b2019-12-19 07:39:06 +0100192 locked = t->state & TASK_SHARED_WQ;
Richard Russobc9d9842019-02-20 12:43:45 -0800193 if (locked)
Willy Tarreauef28dc12019-05-28 18:48:07 +0200194 HA_RWLOCK_WRLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau4726f532009-03-07 17:25:21 +0100195 __task_unlink_wq(t);
Richard Russobc9d9842019-02-20 12:43:45 -0800196 if (locked)
Willy Tarreauef28dc12019-05-28 18:48:07 +0200197 HA_RWLOCK_WRUNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200198 }
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200199 return t;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200200}
201
202/*
Christopher Faulet34c5cc92016-12-06 09:15:30 +0100203 * Unlink the task from the run queue. The tasks_run_queue size and number of
204 * niced tasks are updated too. A pointer to the task itself is returned. The
205 * task *must* already be in the run queue before calling this function. If
206 * unsure, use the safer task_unlink_rq() function. Note that the pointer to the
207 * next run queue entry is neither checked nor updated.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200208 */
Willy Tarreau4726f532009-03-07 17:25:21 +0100209static inline struct task *__task_unlink_rq(struct task *t)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200210{
Olivier Houchard4c2832852019-03-08 18:48:47 +0100211 _HA_ATOMIC_SUB(&tasks_run_queue, 1);
Olivier Houchard77551ee2018-07-26 15:59:38 +0200212#ifdef USE_THREAD
213 if (t->state & TASK_GLOBAL) {
Olivier Houchard4c2832852019-03-08 18:48:47 +0100214 _HA_ATOMIC_AND(&t->state, ~TASK_GLOBAL);
Olivier Houchard77551ee2018-07-26 15:59:38 +0200215 global_rqueue_size--;
216 } else
217#endif
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200218 task_per_thread[tid].rqueue_size--;
Olivier Houchard77551ee2018-07-26 15:59:38 +0200219 eb32sc_delete(&t->rq);
Willy Tarreau4726f532009-03-07 17:25:21 +0100220 if (likely(t->nice))
Olivier Houchard4c2832852019-03-08 18:48:47 +0100221 _HA_ATOMIC_SUB(&niced_tasks, 1);
Willy Tarreauce44f122008-07-05 18:16:19 +0200222 return t;
223}
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200224
Willy Tarreau501260b2015-02-23 16:07:01 +0100225/* This function unlinks task <t> from the run queue if it is in it. It also
226 * takes care of updating the next run queue task if it was this task.
227 */
Willy Tarreau4726f532009-03-07 17:25:21 +0100228static inline struct task *task_unlink_rq(struct task *t)
229{
Olivier Houchard1d7f37a2019-03-14 16:14:04 +0100230 int is_global = t->state & TASK_GLOBAL;
231
232 if (is_global)
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200233 HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreau24f382f2019-04-12 16:10:55 +0200234 if (likely(task_in_rq(t)))
Willy Tarreau4726f532009-03-07 17:25:21 +0100235 __task_unlink_rq(t);
Olivier Houchard1d7f37a2019-03-14 16:14:04 +0100236 if (is_global)
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200237 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreau4726f532009-03-07 17:25:21 +0100238 return t;
239}
240
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200241static inline void tasklet_wakeup(struct tasklet *tl)
242{
Olivier Houcharde17c2d32018-07-17 18:29:22 +0200243 if (!LIST_ISEMPTY(&tl->list))
244 return;
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200245 LIST_ADDQ(&task_per_thread[tid].task_list, &tl->list);
Olivier Houchard4c2832852019-03-08 18:48:47 +0100246 _HA_ATOMIC_ADD(&tasks_run_queue, 1);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200247
248}
249
Willy Tarreaubd20a9d2019-06-14 18:05:54 +0200250/* Insert a tasklet into the tasklet list. If used with a plain task instead,
251 * the caller must update the task_list_size.
252 */
253static inline void tasklet_insert_into_tasklet_list(struct tasklet *tl)
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200254{
Olivier Houchard4c2832852019-03-08 18:48:47 +0100255 _HA_ATOMIC_ADD(&tasks_run_queue, 1);
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200256 LIST_ADDQ(&task_per_thread[tid].task_list, &tl->list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200257}
258
Willy Tarreaubd20a9d2019-06-14 18:05:54 +0200259/* Remove the tasklet from the tasklet list. The tasklet MUST already be there.
260 * If unsure, use tasklet_remove_from_tasklet_list() instead. If used with a
261 * plain task, the caller must update the task_list_size.
Willy Tarreaue73256f2019-03-25 18:02:54 +0100262 */
Willy Tarreau86eded62019-06-14 14:47:49 +0200263static inline void __tasklet_remove_from_tasklet_list(struct tasklet *t)
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200264{
Willy Tarreau86eded62019-06-14 14:47:49 +0200265 LIST_DEL_INIT(&t->list);
Olivier Houchard4c2832852019-03-08 18:48:47 +0100266 _HA_ATOMIC_SUB(&tasks_run_queue, 1);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200267}
268
Willy Tarreau86eded62019-06-14 14:47:49 +0200269static inline void tasklet_remove_from_tasklet_list(struct tasklet *t)
Willy Tarreaue73256f2019-03-25 18:02:54 +0100270{
Willy Tarreau86eded62019-06-14 14:47:49 +0200271 if (likely(!LIST_ISEMPTY(&t->list)))
272 __tasklet_remove_from_tasklet_list(t);
Willy Tarreaue73256f2019-03-25 18:02:54 +0100273}
274
Willy Tarreauce44f122008-07-05 18:16:19 +0200275/*
Willy Tarreaua4613182009-03-21 18:13:21 +0100276 * Initialize a new task. The bare minimum is performed (queue pointers and
277 * state). The task is returned. This function should not be used outside of
Willy Tarreaue69893b2019-12-19 07:39:06 +0100278 * task_new(). If the thread mask contains more than one thread, TASK_SHARED_WQ
279 * is set.
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200280 */
Emeric Brunc60def82017-09-27 14:59:38 +0200281static inline struct task *task_init(struct task *t, unsigned long thread_mask)
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200282{
Willy Tarreau4726f532009-03-07 17:25:21 +0100283 t->wq.node.leaf_p = NULL;
284 t->rq.node.leaf_p = NULL;
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200285 t->state = TASK_SLEEPING;
Willy Tarreauf65610a2017-10-31 16:06:06 +0100286 t->thread_mask = thread_mask;
Willy Tarreaue69893b2019-12-19 07:39:06 +0100287 if (atleast2(thread_mask))
288 t->state |= TASK_SHARED_WQ;
Willy Tarreau91e99932008-06-30 07:51:00 +0200289 t->nice = 0;
Willy Tarreau3884cba2009-03-28 17:54:35 +0100290 t->calls = 0;
Willy Tarreau9efd7452018-05-31 14:48:54 +0200291 t->call_date = 0;
292 t->cpu_time = 0;
293 t->lat_time = 0;
Willy Tarreauf4219992017-07-24 17:52:58 +0200294 t->expire = TICK_ETERNITY;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200295 return t;
296}
297
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200298static inline void tasklet_init(struct tasklet *t)
299{
300 t->nice = -32768;
301 t->calls = 0;
302 t->state = 0;
Olivier Houchard9ddaf792018-07-19 16:02:16 +0200303 t->process = NULL;
Olivier Houcharddcd6f3a2018-06-08 17:08:19 +0200304 LIST_INIT(&t->list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200305}
306
307static inline struct tasklet *tasklet_new(void)
308{
309 struct tasklet *t = pool_alloc(pool_head_tasklet);
310
311 if (t) {
312 tasklet_init(t);
313 }
314 return t;
315}
316
Willy Tarreaubaaee002006-06-26 02:48:02 +0200317/*
Willy Tarreaua4613182009-03-21 18:13:21 +0100318 * Allocate and initialise a new task. The new task is returned, or NULL in
319 * case of lack of memory. The task count is incremented. Tasks should only
320 * be allocated this way, and must be freed using task_free().
321 */
Emeric Brunc60def82017-09-27 14:59:38 +0200322static inline struct task *task_new(unsigned long thread_mask)
Willy Tarreaua4613182009-03-21 18:13:21 +0100323{
Willy Tarreaubafbe012017-11-24 17:34:44 +0100324 struct task *t = pool_alloc(pool_head_task);
Willy Tarreaua4613182009-03-21 18:13:21 +0100325 if (t) {
Olivier Houchard4c2832852019-03-08 18:48:47 +0100326 _HA_ATOMIC_ADD(&nb_tasks, 1);
Emeric Brunc60def82017-09-27 14:59:38 +0200327 task_init(t, thread_mask);
Willy Tarreaua4613182009-03-21 18:13:21 +0100328 }
329 return t;
330}
331
332/*
Willy Tarreau29bf96d2019-05-17 14:16:51 +0200333 * Free a task. Its context must have been freed since it will be lost. The
334 * task count is decremented. It it is the current task, this one is reset.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200335 */
Olivier Houchard9b36cb42018-05-04 15:46:16 +0200336static inline void __task_free(struct task *t)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200337{
Willy Tarreau29bf96d2019-05-17 14:16:51 +0200338 if (t == curr_task) {
339 curr_task = NULL;
340 __ha_barrier_store();
341 }
Willy Tarreaubafbe012017-11-24 17:34:44 +0100342 pool_free(pool_head_task, t);
Willy Tarreaueb118892014-11-13 16:57:19 +0100343 if (unlikely(stopping))
Willy Tarreaubafbe012017-11-24 17:34:44 +0100344 pool_flush(pool_head_task);
Olivier Houchard4c2832852019-03-08 18:48:47 +0100345 _HA_ATOMIC_SUB(&nb_tasks, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200346}
347
Willy Tarreauf6562792019-05-07 19:05:35 +0200348/* Destroys a task : it's unlinked from the wait queues and is freed if it's
349 * the current task or not queued otherwise it's marked to be freed by the
350 * scheduler. It does nothing if <t> is NULL.
351 */
Olivier Houchard3f795f72019-04-17 22:51:06 +0200352static inline void task_destroy(struct task *t)
Olivier Houchard9b36cb42018-05-04 15:46:16 +0200353{
Dragan Dosen75bc6d32019-05-07 15:25:25 +0200354 if (!t)
355 return;
356
Olivier Houchard3f795f72019-04-17 22:51:06 +0200357 task_unlink_wq(t);
358 /* We don't have to explicitely remove from the run queue.
359 * If we are in the runqueue, the test below will set t->process
360 * to NULL, and the task will be free'd when it'll be its turn
361 * to run.
362 */
363
Olivier Houchard9b36cb42018-05-04 15:46:16 +0200364 /* There's no need to protect t->state with a lock, as the task
365 * has to run on the current thread.
366 */
Willy Tarreaua70bfaa2019-04-17 21:58:23 +0200367 if (t == curr_task || !(t->state & (TASK_QUEUED | TASK_RUNNING)))
Olivier Houchard9b36cb42018-05-04 15:46:16 +0200368 __task_free(t);
369 else
370 t->process = NULL;
371}
372
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200373static inline void tasklet_free(struct tasklet *tl)
374{
Olivier Houchard09e498f2018-12-24 14:03:10 +0100375 if (!LIST_ISEMPTY(&tl->list)) {
Willy Tarreaua33d39a2019-03-25 18:10:53 +0100376 LIST_DEL(&tl->list);
Olivier Houchard4c2832852019-03-08 18:48:47 +0100377 _HA_ATOMIC_SUB(&tasks_run_queue, 1);
Olivier Houchard09e498f2018-12-24 14:03:10 +0100378 }
Olivier Houcharddcd6f3a2018-06-08 17:08:19 +0200379
Willy Tarreau29bf96d2019-05-17 14:16:51 +0200380 if ((struct task *)tl == curr_task) {
381 curr_task = NULL;
382 __ha_barrier_store();
383 }
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200384 pool_free(pool_head_tasklet, tl);
385 if (unlikely(stopping))
386 pool_flush(pool_head_tasklet);
387}
388
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200389void __task_queue(struct task *task, struct eb_root *wq);
390
Willy Tarreau4726f532009-03-07 17:25:21 +0100391/* Place <task> into the wait queue, where it may already be. If the expiration
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100392 * timer is infinite, do nothing and rely on wake_expired_task to clean up.
Willy Tarreaue69893b2019-12-19 07:39:06 +0100393 * If the task uses a shared wait queue, it's queued into the global wait queue,
394 * protected by the global wq_lock, otherwise by it necessarily belongs to the
395 * current thread'sand is queued without locking.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200396 */
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100397static inline void task_queue(struct task *task)
398{
399 /* If we already have a place in the wait queue no later than the
400 * timeout we're trying to set, we'll stay there, because it is very
401 * unlikely that we will reach the timeout anyway. If the timeout
402 * has been disabled, it's useless to leave the queue as well. We'll
403 * rely on wake_expired_tasks() to catch the node and move it to the
404 * proper place should it ever happen. Finally we only add the task
405 * to the queue if it was not there or if it was further than what
406 * we want.
407 */
408 if (!tick_isset(task->expire))
409 return;
410
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200411#ifdef USE_THREAD
Willy Tarreaue69893b2019-12-19 07:39:06 +0100412 if (task->state & TASK_SHARED_WQ) {
Willy Tarreauef28dc12019-05-28 18:48:07 +0200413 HA_RWLOCK_WRLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200414 if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key))
415 __task_queue(task, &timers);
Willy Tarreauef28dc12019-05-28 18:48:07 +0200416 HA_RWLOCK_WRUNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200417 } else
418#endif
419 {
Willy Tarreaue69893b2019-12-19 07:39:06 +0100420 BUG_ON((task->thread_mask & tid_bit) == 0); // should have TASK_SHARED_WQ
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200421 if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key))
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200422 __task_queue(task, &task_per_thread[tid].timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200423 }
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100424}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200425
Willy Tarreau26e48812011-07-25 14:30:42 +0200426/* Ensure <task> will be woken up at most at <when>. If the task is already in
427 * the run queue (but not running), nothing is done. It may be used that way
428 * with a delay : task_schedule(task, tick_add(now_ms, delay));
429 */
430static inline void task_schedule(struct task *task, int when)
431{
Emeric Brunc60def82017-09-27 14:59:38 +0200432 /* TODO: mthread, check if there is no tisk with this test */
Willy Tarreau26e48812011-07-25 14:30:42 +0200433 if (task_in_rq(task))
434 return;
435
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200436#ifdef USE_THREAD
Willy Tarreaue69893b2019-12-19 07:39:06 +0100437 if (task->state & TASK_SHARED_WQ) {
Willy Tarreauef28dc12019-05-28 18:48:07 +0200438 /* FIXME: is it really needed to lock the WQ during the check ? */
439 HA_RWLOCK_WRLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200440 if (task_in_wq(task))
441 when = tick_first(when, task->expire);
442
443 task->expire = when;
444 if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key))
445 __task_queue(task, &timers);
Willy Tarreauef28dc12019-05-28 18:48:07 +0200446 HA_RWLOCK_WRUNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200447 } else
448#endif
449 {
Willy Tarreaue69893b2019-12-19 07:39:06 +0100450 BUG_ON((task->thread_mask & tid_bit) == 0); // should have TASK_SHARED_WQ
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200451 if (task_in_wq(task))
452 when = tick_first(when, task->expire);
Willy Tarreau26e48812011-07-25 14:30:42 +0200453
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200454 task->expire = when;
455 if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key))
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200456 __task_queue(task, &task_per_thread[tid].timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200457 }
Willy Tarreau26e48812011-07-25 14:30:42 +0200458}
459
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200460/* This function register a new signal. "lua" is the current lua
461 * execution context. It contains a pointer to the associated task.
462 * "link" is a list head attached to an other task that must be wake
463 * the lua task if an event occurs. This is useful with external
464 * events like TCP I/O or sleep functions. This funcion allocate
465 * memory for the signal.
466 */
467static inline struct notification *notification_new(struct list *purge, struct list *event, struct task *wakeup)
468{
Willy Tarreaubafbe012017-11-24 17:34:44 +0100469 struct notification *com = pool_alloc(pool_head_notification);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200470 if (!com)
471 return NULL;
472 LIST_ADDQ(purge, &com->purge_me);
473 LIST_ADDQ(event, &com->wake_me);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100474 HA_SPIN_INIT(&com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200475 com->task = wakeup;
476 return com;
477}
478
479/* This function purge all the pending signals when the LUA execution
480 * is finished. This prevent than a coprocess try to wake a deleted
481 * task. This function remove the memory associated to the signal.
Thierry FOURNIERd5b79832017-12-10 17:14:07 +0100482 * The purge list is not locked because it is owned by only one
483 * process. before browsing this list, the caller must ensure to be
484 * the only one browser.
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200485 */
486static inline void notification_purge(struct list *purge)
487{
488 struct notification *com, *back;
489
490 /* Delete all pending communication signals. */
491 list_for_each_entry_safe(com, back, purge, purge_me) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100492 HA_SPIN_LOCK(NOTIF_LOCK, &com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200493 LIST_DEL(&com->purge_me);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200494 if (!com->task) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100495 HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100496 pool_free(pool_head_notification, com);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200497 continue;
498 }
499 com->task = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100500 HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200501 }
502}
503
Thierry FOURNIERcb146882017-12-10 17:10:57 +0100504/* In some cases, the disconnected notifications must be cleared.
505 * This function just release memory blocs. The purge list is not
506 * locked because it is owned by only one process. Before browsing
507 * this list, the caller must ensure to be the only one browser.
508 * The "com" is not locked because when com->task is NULL, the
509 * notification is no longer used.
510 */
511static inline void notification_gc(struct list *purge)
512{
513 struct notification *com, *back;
514
515 /* Delete all pending communication signals. */
516 list_for_each_entry_safe (com, back, purge, purge_me) {
517 if (com->task)
518 continue;
519 LIST_DEL(&com->purge_me);
520 pool_free(pool_head_notification, com);
521 }
522}
523
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200524/* This function sends signals. It wakes all the tasks attached
525 * to a list head, and remove the signal, and free the used
Thierry FOURNIERd5b79832017-12-10 17:14:07 +0100526 * memory. The wake list is not locked because it is owned by
527 * only one process. before browsing this list, the caller must
528 * ensure to be the only one browser.
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200529 */
530static inline void notification_wake(struct list *wake)
531{
532 struct notification *com, *back;
533
534 /* Wake task and delete all pending communication signals. */
535 list_for_each_entry_safe(com, back, wake, wake_me) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100536 HA_SPIN_LOCK(NOTIF_LOCK, &com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200537 LIST_DEL(&com->wake_me);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200538 if (!com->task) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100539 HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100540 pool_free(pool_head_notification, com);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200541 continue;
542 }
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200543 task_wakeup(com->task, TASK_WOKEN_MSG);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200544 com->task = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100545 HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200546 }
547}
548
Thierry FOURNIER9d5422a2018-05-30 11:40:08 +0200549/* This function returns true is some notification are pending
550 */
551static inline int notification_registered(struct list *wake)
552{
553 return !LIST_ISEMPTY(wake);
554}
555
Olivier Houchardcfbb3e62019-05-29 19:22:43 +0200556static inline int thread_has_tasks(void)
557{
558 return (!!(global_tasks_mask & tid_bit) |
559 (task_per_thread[tid].rqueue_size > 0) |
560 !LIST_ISEMPTY(&task_per_thread[tid].task_list));
561}
562
Willy Tarreau42facc52019-07-12 08:31:17 +0200563/* adds list item <item> to work list <work> and wake up the associated task */
564static inline void work_list_add(struct work_list *work, struct list *item)
565{
566 LIST_ADDQ_LOCKED(&work->head, item);
567 task_wakeup(work->task, TASK_WOKEN_OTHER);
568}
569
570struct work_list *work_list_create(int nbthread,
571 struct task *(*fct)(struct task *, void *, unsigned short),
572 void *arg);
573
574void work_list_destroy(struct work_list *work, int nbthread);
575
Willy Tarreaubaaee002006-06-26 02:48:02 +0200576/*
Willy Tarreau918ff602011-07-25 16:33:49 +0200577 * This does 3 things :
Willy Tarreaubaaee002006-06-26 02:48:02 +0200578 * - wake up all expired tasks
579 * - call all runnable tasks
Willy Tarreaud825eef2007-05-12 22:35:00 +0200580 * - return the date of next event in <next> or eternity.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200581 */
582
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100583void process_runnable_tasks();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200584
Willy Tarreau58b458d2008-06-29 22:40:23 +0200585/*
586 * Extract all expired timers from the timer queue, and wakes up all
587 * associated tasks. Returns the date of next event (or eternity).
588 */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100589int wake_expired_tasks();
Willy Tarreau58b458d2008-06-29 22:40:23 +0200590
William Lallemand27f3fa52018-12-06 14:05:20 +0100591/*
592 * Delete every tasks before running the master polling loop
593 */
594void mworker_cleantasks();
595
Willy Tarreaubaaee002006-06-26 02:48:02 +0200596#endif /* _PROTO_TASK_H */
597
598/*
599 * Local variables:
600 * c-indent-level: 8
601 * c-basic-offset: 8
602 * End:
603 */