blob: 3f1d2ad66db77b958189fc8de52b38a9ee655c58 [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
Olivier Houchardbba1a262019-09-24 14:55:28 +020041#include <proto/fd.h>
42
Willy Tarreaud0a201b2009-03-08 15:53:06 +010043/* Principle of the wait queue.
44 *
45 * We want to be able to tell whether an expiration date is before of after the
46 * current time <now>. We KNOW that expiration dates are never too far apart,
47 * because they are measured in ticks (milliseconds). We also know that almost
48 * all dates will be in the future, and that a very small part of them will be
49 * in the past, they are the ones which have expired since last time we checked
50 * them. Using ticks, we know if a date is in the future or in the past, but we
51 * cannot use that to store sorted information because that reference changes
52 * all the time.
53 *
Willy Tarreaue35c94a2009-03-21 10:01:42 +010054 * We'll use the fact that the time wraps to sort timers. Timers above <now>
55 * are in the future, timers below <now> are in the past. Here, "above" and
56 * "below" are to be considered modulo 2^31.
Willy Tarreaud0a201b2009-03-08 15:53:06 +010057 *
Willy Tarreaue35c94a2009-03-21 10:01:42 +010058 * Timers are stored sorted in an ebtree. We use the new ability for ebtrees to
59 * lookup values starting from X to only expire tasks between <now> - 2^31 and
60 * <now>. If the end of the tree is reached while walking over it, we simply
61 * loop back to the beginning. That way, we have no problem keeping sorted
62 * wrapping timers in a tree, between (now - 24 days) and (now + 24 days). The
63 * keys in the tree always reflect their real position, none can be infinite.
64 * This reduces the number of checks to be performed.
Willy Tarreaud0a201b2009-03-08 15:53:06 +010065 *
66 * Another nice optimisation is to allow a timer to stay at an old place in the
67 * queue as long as it's not further than the real expiration date. That way,
68 * we use the tree as a place holder for a minorant of the real expiration
69 * date. Since we have a very low chance of hitting a timeout anyway, we can
70 * bounce the nodes to their right place when we scan the tree if we encounter
71 * a misplaced node once in a while. This even allows us not to remove the
72 * infinite timers from the wait queue.
73 *
74 * So, to summarize, we have :
75 * - node->key always defines current position in the wait queue
76 * - timer is the real expiration date (possibly infinite)
Willy Tarreaue35c94a2009-03-21 10:01:42 +010077 * - node->key is always before or equal to timer
Willy Tarreaud0a201b2009-03-08 15:53:06 +010078 *
79 * The run queue works similarly to the wait queue except that the current date
80 * is replaced by an insertion counter which can also wrap without any problem.
81 */
82
Willy Tarreaue35c94a2009-03-21 10:01:42 +010083/* The farthest we can look back in a timer tree */
84#define TIMER_LOOK_BACK (1U << 31)
Willy Tarreaud0a201b2009-03-08 15:53:06 +010085
86/* a few exported variables */
Willy Tarreaua4613182009-03-21 18:13:21 +010087extern unsigned int nb_tasks; /* total number of tasks */
Willy Tarreauaa1e1be2019-05-16 17:37:27 +020088extern volatile unsigned long global_tasks_mask; /* Mask of threads with tasks in the global runqueue */
Christopher Faulet34c5cc92016-12-06 09:15:30 +010089extern unsigned int tasks_run_queue; /* run queue size */
90extern unsigned int tasks_run_queue_cur;
Willy Tarreauc7bdf092009-03-21 18:33:52 +010091extern unsigned int nb_tasks_cur;
Willy Tarreau91e99932008-06-30 07:51:00 +020092extern unsigned int niced_tasks; /* number of niced tasks in the run queue */
Willy Tarreaubafbe012017-11-24 17:34:44 +010093extern struct pool_head *pool_head_task;
Olivier Houchardb0bdae72018-05-18 18:45:28 +020094extern struct pool_head *pool_head_tasklet;
Willy Tarreaubafbe012017-11-24 17:34:44 +010095extern struct pool_head *pool_head_notification;
Willy Tarreaud022e9c2019-09-24 08:25:15 +020096extern THREAD_LOCAL struct task_per_thread *sched; /* current's thread scheduler context */
Olivier Houchardb1ca58b2018-06-06 14:22:03 +020097#ifdef USE_THREAD
Willy Tarreaub20aa9e2018-10-15 14:52:21 +020098extern struct eb_root timers; /* sorted timers tree, global */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +020099extern struct eb_root rqueue; /* tree constituting the run queue */
Olivier Houchard77551ee2018-07-26 15:59:38 +0200100extern int global_rqueue_size; /* Number of element sin the global runqueue */
Olivier Houchardb1ca58b2018-06-06 14:22:03 +0200101#endif
Olivier Houchard77551ee2018-07-26 15:59:38 +0200102
Willy Tarreau8d8747a2018-10-15 16:12:48 +0200103extern struct task_per_thread task_per_thread[MAX_THREADS];
Christopher Faulet9dcf9b62017-11-13 10:34:01 +0100104
105__decl_hathreads(extern HA_SPINLOCK_T rq_lock); /* spin lock related to run queue */
Willy Tarreauef28dc12019-05-28 18:48:07 +0200106__decl_hathreads(extern HA_RWLOCK_T wq_lock); /* RW lock related to the wait queue */
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200107
Olivier Houchard0742c312019-12-05 15:11:19 +0100108static inline struct task *task_unlink_wq(struct task *t);
109static inline void task_queue(struct task *task);
Olivier Houchard5d187182018-08-01 15:58:44 +0200110
Willy Tarreau4726f532009-03-07 17:25:21 +0100111/* return 0 if task is in run queue, otherwise non-zero */
112static inline int task_in_rq(struct task *t)
113{
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200114 /* Check if leaf_p is NULL, in case he's not in the runqueue, and if
115 * it's not 0x1, which would mean it's in the tasklet list.
116 */
Olivier Houchard4a1be0c2019-04-17 19:13:07 +0200117 return t->rq.node.leaf_p != NULL;
Willy Tarreau4726f532009-03-07 17:25:21 +0100118}
119
120/* return 0 if task is in wait queue, otherwise non-zero */
121static inline int task_in_wq(struct task *t)
122{
123 return t->wq.node.leaf_p != NULL;
124}
125
Willy Tarreaufdccded2008-08-29 18:19:04 +0200126/* puts the task <t> in run queue with reason flags <f>, and returns <t> */
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200127/* This will put the task in the local runqueue if the task is only runnable
128 * by the current thread, in the global runqueue otherwies.
129 */
130void __task_wakeup(struct task *t, struct eb_root *);
131static inline void task_wakeup(struct task *t, unsigned int f)
Willy Tarreau4df82062008-08-29 15:26:14 +0200132{
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200133 unsigned short state;
Emeric Brunc60def82017-09-27 14:59:38 +0200134
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200135#ifdef USE_THREAD
136 struct eb_root *root;
Emeric Brunc60def82017-09-27 14:59:38 +0200137
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200138 if (t->thread_mask == tid_bit || global.nbthread == 1)
Willy Tarreaud022e9c2019-09-24 08:25:15 +0200139 root = &sched->rqueue;
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200140 else
141 root = &rqueue;
142#else
Willy Tarreaud022e9c2019-09-24 08:25:15 +0200143 struct eb_root *root = &sched->rqueue;
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200144#endif
145
Willy Tarreaub0380072019-04-17 11:47:18 +0200146 state = _HA_ATOMIC_OR(&t->state, f);
147 while (!(state & (TASK_RUNNING | TASK_QUEUED))) {
Willy Tarreau8c12e2f2019-04-17 20:52:51 +0200148 if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_QUEUED)) {
149 __task_wakeup(t, root);
Willy Tarreaub0380072019-04-17 11:47:18 +0200150 break;
Willy Tarreau8c12e2f2019-04-17 20:52:51 +0200151 }
Willy Tarreaub0380072019-04-17 11:47:18 +0200152 }
Willy Tarreau4df82062008-08-29 15:26:14 +0200153}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200154
Willy Tarreaudd0e89a2019-12-19 07:39:06 +0100155/* change the thread affinity of a task to <thread_mask>.
156 * This may only be done from within the running task itself or during its
157 * initialization. It will unqueue and requeue the task from the wait queue
158 * if it was in it. This is safe against a concurrent task_queue() call because
159 * task_queue() itself will unlink again if needed after taking into account
160 * the new thread_mask.
161 */
Emeric Brunc60def82017-09-27 14:59:38 +0200162static inline void task_set_affinity(struct task *t, unsigned long thread_mask)
163{
Willy Tarreau440d09b2019-12-11 09:11:58 +0100164 if (unlikely(task_in_wq(t))) {
Olivier Houchard0742c312019-12-05 15:11:19 +0100165 task_unlink_wq(t);
Willy Tarreau440d09b2019-12-11 09:11:58 +0100166 t->thread_mask = thread_mask;
Olivier Houchard0742c312019-12-05 15:11:19 +0100167 task_queue(t);
Willy Tarreau440d09b2019-12-11 09:11:58 +0100168 }
169 else
170 t->thread_mask = thread_mask;
Emeric Brunc60def82017-09-27 14:59:38 +0200171}
Willy Tarreauf65610a2017-10-31 16:06:06 +0100172
Willy Tarreau4726f532009-03-07 17:25:21 +0100173/*
174 * Unlink the task from the wait queue, and possibly update the last_timer
175 * pointer. A pointer to the task itself is returned. The task *must* already
176 * be in the wait queue before calling this function. If unsure, use the safer
177 * task_unlink_wq() function.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200178 */
Willy Tarreau4726f532009-03-07 17:25:21 +0100179static inline struct task *__task_unlink_wq(struct task *t)
180{
181 eb32_delete(&t->wq);
Willy Tarreau4726f532009-03-07 17:25:21 +0100182 return t;
183}
184
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200185/* remove a task from its wait queue. It may either be the local wait queue if
Willy Tarreaudd0e89a2019-12-19 07:39:06 +0100186 * the task is bound to a single thread or the global queue. If the task uses a
187 * shared wait queue, the global wait queue lock is used.
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200188 */
Willy Tarreau4726f532009-03-07 17:25:21 +0100189static inline struct task *task_unlink_wq(struct task *t)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200190{
Richard Russobc9d9842019-02-20 12:43:45 -0800191 unsigned long locked;
192
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200193 if (likely(task_in_wq(t))) {
Willy Tarreaudd0e89a2019-12-19 07:39:06 +0100194 locked = t->state & TASK_SHARED_WQ;
Richard Russobc9d9842019-02-20 12:43:45 -0800195 if (locked)
Willy Tarreauef28dc12019-05-28 18:48:07 +0200196 HA_RWLOCK_WRLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau4726f532009-03-07 17:25:21 +0100197 __task_unlink_wq(t);
Richard Russobc9d9842019-02-20 12:43:45 -0800198 if (locked)
Willy Tarreauef28dc12019-05-28 18:48:07 +0200199 HA_RWLOCK_WRUNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200200 }
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200201 return t;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200202}
203
204/*
Christopher Faulet34c5cc92016-12-06 09:15:30 +0100205 * Unlink the task from the run queue. The tasks_run_queue size and number of
206 * niced tasks are updated too. A pointer to the task itself is returned. The
207 * task *must* already be in the run queue before calling this function. If
208 * unsure, use the safer task_unlink_rq() function. Note that the pointer to the
209 * next run queue entry is neither checked nor updated.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200210 */
Willy Tarreau4726f532009-03-07 17:25:21 +0100211static inline struct task *__task_unlink_rq(struct task *t)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200212{
Olivier Houchard4c2832852019-03-08 18:48:47 +0100213 _HA_ATOMIC_SUB(&tasks_run_queue, 1);
Olivier Houchard77551ee2018-07-26 15:59:38 +0200214#ifdef USE_THREAD
215 if (t->state & TASK_GLOBAL) {
Olivier Houchard4c2832852019-03-08 18:48:47 +0100216 _HA_ATOMIC_AND(&t->state, ~TASK_GLOBAL);
Olivier Houchard77551ee2018-07-26 15:59:38 +0200217 global_rqueue_size--;
218 } else
219#endif
Willy Tarreaud022e9c2019-09-24 08:25:15 +0200220 sched->rqueue_size--;
Olivier Houchard77551ee2018-07-26 15:59:38 +0200221 eb32sc_delete(&t->rq);
Willy Tarreau4726f532009-03-07 17:25:21 +0100222 if (likely(t->nice))
Olivier Houchard4c2832852019-03-08 18:48:47 +0100223 _HA_ATOMIC_SUB(&niced_tasks, 1);
Willy Tarreauce44f122008-07-05 18:16:19 +0200224 return t;
225}
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200226
Willy Tarreau501260b2015-02-23 16:07:01 +0100227/* This function unlinks task <t> from the run queue if it is in it. It also
228 * takes care of updating the next run queue task if it was this task.
229 */
Willy Tarreau4726f532009-03-07 17:25:21 +0100230static inline struct task *task_unlink_rq(struct task *t)
231{
Olivier Houchard1d7f37a2019-03-14 16:14:04 +0100232 int is_global = t->state & TASK_GLOBAL;
233
234 if (is_global)
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200235 HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreau24f382f2019-04-12 16:10:55 +0200236 if (likely(task_in_rq(t)))
Willy Tarreau4726f532009-03-07 17:25:21 +0100237 __task_unlink_rq(t);
Olivier Houchard1d7f37a2019-03-14 16:14:04 +0100238 if (is_global)
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200239 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreau4726f532009-03-07 17:25:21 +0100240 return t;
241}
242
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200243static inline void tasklet_wakeup(struct tasklet *tl)
244{
Willy Tarreau8cdc1672019-10-18 06:43:53 +0200245 if (likely(tl->tid < 0)) {
246 /* this tasklet runs on the caller thread */
Olivier Houchard06910462019-10-11 16:35:01 +0200247 if (LIST_ISEMPTY(&tl->list)) {
Willy Tarreau8cdc1672019-10-18 06:43:53 +0200248 LIST_ADDQ(&task_per_thread[tid].task_list, &tl->list);
Olivier Houchard06910462019-10-11 16:35:01 +0200249 _HA_ATOMIC_ADD(&tasks_run_queue, 1);
250 }
251 } else {
Willy Tarreau8cdc1672019-10-18 06:43:53 +0200252 /* this tasklet runs on a specific thread */
Olivier Houchard06910462019-10-11 16:35:01 +0200253 if (MT_LIST_ADDQ(&task_per_thread[tl->tid].shared_tasklet_list, (struct mt_list *)&tl->list) == 1) {
254 _HA_ATOMIC_ADD(&tasks_run_queue, 1);
Willy Tarreau891b5ef2019-10-18 08:45:41 +0200255 if (sleeping_thread_mask & (1UL << tl->tid)) {
256 _HA_ATOMIC_AND(&sleeping_thread_mask, ~(1UL << tl->tid));
Olivier Houchard06910462019-10-11 16:35:01 +0200257 wake_thread(tl->tid);
258 }
Olivier Houchardbba1a262019-09-24 14:55:28 +0200259 }
260 }
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200261
262}
263
Willy Tarreaubd20a9d2019-06-14 18:05:54 +0200264/* Insert a tasklet into the tasklet list. If used with a plain task instead,
265 * the caller must update the task_list_size.
266 */
267static inline void tasklet_insert_into_tasklet_list(struct tasklet *tl)
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200268{
Olivier Houchard06910462019-10-11 16:35:01 +0200269 _HA_ATOMIC_ADD(&tasks_run_queue, 1);
270 LIST_ADDQ(&sched->task_list, &tl->list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200271}
272
Willy Tarreaubd20a9d2019-06-14 18:05:54 +0200273/* Remove the tasklet from the tasklet list. The tasklet MUST already be there.
274 * If unsure, use tasklet_remove_from_tasklet_list() instead. If used with a
275 * plain task, the caller must update the task_list_size.
Olivier Houchard06910462019-10-11 16:35:01 +0200276 * This should only be used by the thread that owns the tasklet, any other
277 * thread should use tasklet_cancel().
Willy Tarreaue73256f2019-03-25 18:02:54 +0100278 */
Willy Tarreau86eded62019-06-14 14:47:49 +0200279static inline void __tasklet_remove_from_tasklet_list(struct tasklet *t)
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200280{
Olivier Houchard06910462019-10-11 16:35:01 +0200281 LIST_DEL_INIT(&t->list);
282 _HA_ATOMIC_SUB(&tasks_run_queue, 1);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200283}
284
Willy Tarreau86eded62019-06-14 14:47:49 +0200285static inline void tasklet_remove_from_tasklet_list(struct tasklet *t)
Willy Tarreaue73256f2019-03-25 18:02:54 +0100286{
Olivier Houchard7031e3d2019-11-08 15:41:55 +0100287 if (MT_LIST_DEL((struct mt_list *)&t->list))
288 _HA_ATOMIC_SUB(&tasks_run_queue, 1);
Willy Tarreaue73256f2019-03-25 18:02:54 +0100289}
290
Willy Tarreauce44f122008-07-05 18:16:19 +0200291/*
Willy Tarreaua4613182009-03-21 18:13:21 +0100292 * Initialize a new task. The bare minimum is performed (queue pointers and
293 * state). The task is returned. This function should not be used outside of
Willy Tarreaudd0e89a2019-12-19 07:39:06 +0100294 * task_new(). If the thread mask contains more than one thread, TASK_SHARED_WQ
295 * is set.
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200296 */
Emeric Brunc60def82017-09-27 14:59:38 +0200297static inline struct task *task_init(struct task *t, unsigned long thread_mask)
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200298{
Willy Tarreau4726f532009-03-07 17:25:21 +0100299 t->wq.node.leaf_p = NULL;
300 t->rq.node.leaf_p = NULL;
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200301 t->state = TASK_SLEEPING;
Willy Tarreauf65610a2017-10-31 16:06:06 +0100302 t->thread_mask = thread_mask;
Willy Tarreaudd0e89a2019-12-19 07:39:06 +0100303 if (atleast2(thread_mask))
304 t->state |= TASK_SHARED_WQ;
Willy Tarreau91e99932008-06-30 07:51:00 +0200305 t->nice = 0;
Willy Tarreau3884cba2009-03-28 17:54:35 +0100306 t->calls = 0;
Willy Tarreau9efd7452018-05-31 14:48:54 +0200307 t->call_date = 0;
308 t->cpu_time = 0;
309 t->lat_time = 0;
Willy Tarreauf4219992017-07-24 17:52:58 +0200310 t->expire = TICK_ETERNITY;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200311 return t;
312}
313
Willy Tarreau8cdc1672019-10-18 06:43:53 +0200314/* Initialize a new tasklet. It's identified as a tasklet by ->nice=-32768. It
315 * is expected to run on the calling thread by default, it's up to the caller
316 * to change ->tid if it wants to own it.
317 */
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200318static inline void tasklet_init(struct tasklet *t)
319{
320 t->nice = -32768;
321 t->calls = 0;
322 t->state = 0;
Olivier Houchard9ddaf792018-07-19 16:02:16 +0200323 t->process = NULL;
Willy Tarreau8cdc1672019-10-18 06:43:53 +0200324 t->tid = -1;
Olivier Houchard06910462019-10-11 16:35:01 +0200325 LIST_INIT(&t->list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200326}
327
Willy Tarreau8cdc1672019-10-18 06:43:53 +0200328/* Allocate and initialize a new tasklet, local to the thread by default. The
329 * caller may assing its tid if it wants to own the tasklet.
330 */
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200331static inline struct tasklet *tasklet_new(void)
332{
333 struct tasklet *t = pool_alloc(pool_head_tasklet);
334
335 if (t) {
336 tasklet_init(t);
337 }
338 return t;
339}
340
Willy Tarreaubaaee002006-06-26 02:48:02 +0200341/*
Willy Tarreaua4613182009-03-21 18:13:21 +0100342 * Allocate and initialise a new task. The new task is returned, or NULL in
343 * case of lack of memory. The task count is incremented. Tasks should only
344 * be allocated this way, and must be freed using task_free().
345 */
Emeric Brunc60def82017-09-27 14:59:38 +0200346static inline struct task *task_new(unsigned long thread_mask)
Willy Tarreaua4613182009-03-21 18:13:21 +0100347{
Willy Tarreaubafbe012017-11-24 17:34:44 +0100348 struct task *t = pool_alloc(pool_head_task);
Willy Tarreaua4613182009-03-21 18:13:21 +0100349 if (t) {
Olivier Houchard4c2832852019-03-08 18:48:47 +0100350 _HA_ATOMIC_ADD(&nb_tasks, 1);
Emeric Brunc60def82017-09-27 14:59:38 +0200351 task_init(t, thread_mask);
Willy Tarreaua4613182009-03-21 18:13:21 +0100352 }
353 return t;
354}
355
356/*
Willy Tarreau29bf96d2019-05-17 14:16:51 +0200357 * Free a task. Its context must have been freed since it will be lost. The
358 * task count is decremented. It it is the current task, this one is reset.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200359 */
Olivier Houchard9b36cb42018-05-04 15:46:16 +0200360static inline void __task_free(struct task *t)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200361{
Willy Tarreaud022e9c2019-09-24 08:25:15 +0200362 if (t == sched->current) {
363 sched->current = NULL;
Willy Tarreau29bf96d2019-05-17 14:16:51 +0200364 __ha_barrier_store();
365 }
Willy Tarreaubafbe012017-11-24 17:34:44 +0100366 pool_free(pool_head_task, t);
Willy Tarreaueb118892014-11-13 16:57:19 +0100367 if (unlikely(stopping))
Willy Tarreaubafbe012017-11-24 17:34:44 +0100368 pool_flush(pool_head_task);
Olivier Houchard4c2832852019-03-08 18:48:47 +0100369 _HA_ATOMIC_SUB(&nb_tasks, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200370}
371
Willy Tarreauf6562792019-05-07 19:05:35 +0200372/* Destroys a task : it's unlinked from the wait queues and is freed if it's
373 * the current task or not queued otherwise it's marked to be freed by the
374 * scheduler. It does nothing if <t> is NULL.
375 */
Olivier Houchard3f795f72019-04-17 22:51:06 +0200376static inline void task_destroy(struct task *t)
Olivier Houchard9b36cb42018-05-04 15:46:16 +0200377{
Dragan Dosen75bc6d32019-05-07 15:25:25 +0200378 if (!t)
379 return;
380
Olivier Houchard3f795f72019-04-17 22:51:06 +0200381 task_unlink_wq(t);
382 /* We don't have to explicitely remove from the run queue.
383 * If we are in the runqueue, the test below will set t->process
384 * to NULL, and the task will be free'd when it'll be its turn
385 * to run.
386 */
387
Olivier Houchard9b36cb42018-05-04 15:46:16 +0200388 /* There's no need to protect t->state with a lock, as the task
389 * has to run on the current thread.
390 */
Willy Tarreaud022e9c2019-09-24 08:25:15 +0200391 if (t == sched->current || !(t->state & (TASK_QUEUED | TASK_RUNNING)))
Olivier Houchard9b36cb42018-05-04 15:46:16 +0200392 __task_free(t);
393 else
394 t->process = NULL;
395}
396
Olivier Houchard06910462019-10-11 16:35:01 +0200397/* Should only be called by the thread responsible for the tasklet */
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200398static inline void tasklet_free(struct tasklet *tl)
399{
Olivier Houchard3c4f40a2020-01-10 16:46:48 +0100400 if (MT_LIST_DEL((struct mt_list *)&tl->list))
Olivier Houchard06910462019-10-11 16:35:01 +0200401 _HA_ATOMIC_SUB(&tasks_run_queue, 1);
Olivier Houcharddcd6f3a2018-06-08 17:08:19 +0200402
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200403 pool_free(pool_head_tasklet, tl);
404 if (unlikely(stopping))
405 pool_flush(pool_head_tasklet);
406}
407
Olivier Houchardff1e9f32019-09-20 17:18:35 +0200408static inline void tasklet_set_tid(struct tasklet *tl, int tid)
409{
410 tl->tid = tid;
411}
412
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200413void __task_queue(struct task *task, struct eb_root *wq);
414
Willy Tarreau4726f532009-03-07 17:25:21 +0100415/* Place <task> into the wait queue, where it may already be. If the expiration
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100416 * timer is infinite, do nothing and rely on wake_expired_task to clean up.
Willy Tarreaudd0e89a2019-12-19 07:39:06 +0100417 * If the task uses a shared wait queue, it's queued into the global wait queue,
418 * protected by the global wq_lock, otherwise by it necessarily belongs to the
419 * current thread'sand is queued without locking.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200420 */
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100421static inline void task_queue(struct task *task)
422{
423 /* If we already have a place in the wait queue no later than the
424 * timeout we're trying to set, we'll stay there, because it is very
425 * unlikely that we will reach the timeout anyway. If the timeout
426 * has been disabled, it's useless to leave the queue as well. We'll
427 * rely on wake_expired_tasks() to catch the node and move it to the
428 * proper place should it ever happen. Finally we only add the task
429 * to the queue if it was not there or if it was further than what
430 * we want.
431 */
432 if (!tick_isset(task->expire))
433 return;
434
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200435#ifdef USE_THREAD
Willy Tarreaudd0e89a2019-12-19 07:39:06 +0100436 if (task->state & TASK_SHARED_WQ) {
Willy Tarreauef28dc12019-05-28 18:48:07 +0200437 HA_RWLOCK_WRLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200438 if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key))
439 __task_queue(task, &timers);
Willy Tarreauef28dc12019-05-28 18:48:07 +0200440 HA_RWLOCK_WRUNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200441 } else
442#endif
443 {
Willy Tarreaudd0e89a2019-12-19 07:39:06 +0100444 BUG_ON((task->thread_mask & tid_bit) == 0); // should have TASK_SHARED_WQ
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200445 if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key))
Willy Tarreaud022e9c2019-09-24 08:25:15 +0200446 __task_queue(task, &sched->timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200447 }
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100448}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200449
Willy Tarreau26e48812011-07-25 14:30:42 +0200450/* Ensure <task> will be woken up at most at <when>. If the task is already in
451 * the run queue (but not running), nothing is done. It may be used that way
452 * with a delay : task_schedule(task, tick_add(now_ms, delay));
453 */
454static inline void task_schedule(struct task *task, int when)
455{
Emeric Brunc60def82017-09-27 14:59:38 +0200456 /* TODO: mthread, check if there is no tisk with this test */
Willy Tarreau26e48812011-07-25 14:30:42 +0200457 if (task_in_rq(task))
458 return;
459
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200460#ifdef USE_THREAD
Willy Tarreaudd0e89a2019-12-19 07:39:06 +0100461 if (task->state & TASK_SHARED_WQ) {
Willy Tarreauef28dc12019-05-28 18:48:07 +0200462 /* FIXME: is it really needed to lock the WQ during the check ? */
463 HA_RWLOCK_WRLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200464 if (task_in_wq(task))
465 when = tick_first(when, task->expire);
466
467 task->expire = when;
468 if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key))
469 __task_queue(task, &timers);
Willy Tarreauef28dc12019-05-28 18:48:07 +0200470 HA_RWLOCK_WRUNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200471 } else
472#endif
473 {
Willy Tarreaudd0e89a2019-12-19 07:39:06 +0100474 BUG_ON((task->thread_mask & tid_bit) == 0); // should have TASK_SHARED_WQ
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200475 if (task_in_wq(task))
476 when = tick_first(when, task->expire);
Willy Tarreau26e48812011-07-25 14:30:42 +0200477
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200478 task->expire = when;
479 if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key))
Willy Tarreaud022e9c2019-09-24 08:25:15 +0200480 __task_queue(task, &sched->timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200481 }
Willy Tarreau26e48812011-07-25 14:30:42 +0200482}
483
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200484/* This function register a new signal. "lua" is the current lua
485 * execution context. It contains a pointer to the associated task.
486 * "link" is a list head attached to an other task that must be wake
487 * the lua task if an event occurs. This is useful with external
488 * events like TCP I/O or sleep functions. This funcion allocate
489 * memory for the signal.
490 */
491static inline struct notification *notification_new(struct list *purge, struct list *event, struct task *wakeup)
492{
Willy Tarreaubafbe012017-11-24 17:34:44 +0100493 struct notification *com = pool_alloc(pool_head_notification);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200494 if (!com)
495 return NULL;
496 LIST_ADDQ(purge, &com->purge_me);
497 LIST_ADDQ(event, &com->wake_me);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100498 HA_SPIN_INIT(&com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200499 com->task = wakeup;
500 return com;
501}
502
503/* This function purge all the pending signals when the LUA execution
504 * is finished. This prevent than a coprocess try to wake a deleted
505 * task. This function remove the memory associated to the signal.
Thierry FOURNIERd5b79832017-12-10 17:14:07 +0100506 * The purge list is not locked because it is owned by only one
507 * process. before browsing this list, the caller must ensure to be
508 * the only one browser.
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200509 */
510static inline void notification_purge(struct list *purge)
511{
512 struct notification *com, *back;
513
514 /* Delete all pending communication signals. */
515 list_for_each_entry_safe(com, back, purge, purge_me) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100516 HA_SPIN_LOCK(NOTIF_LOCK, &com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200517 LIST_DEL(&com->purge_me);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200518 if (!com->task) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100519 HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100520 pool_free(pool_head_notification, com);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200521 continue;
522 }
523 com->task = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100524 HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200525 }
526}
527
Thierry FOURNIERcb146882017-12-10 17:10:57 +0100528/* In some cases, the disconnected notifications must be cleared.
529 * This function just release memory blocs. The purge list is not
530 * locked because it is owned by only one process. Before browsing
531 * this list, the caller must ensure to be the only one browser.
532 * The "com" is not locked because when com->task is NULL, the
533 * notification is no longer used.
534 */
535static inline void notification_gc(struct list *purge)
536{
537 struct notification *com, *back;
538
539 /* Delete all pending communication signals. */
540 list_for_each_entry_safe (com, back, purge, purge_me) {
541 if (com->task)
542 continue;
543 LIST_DEL(&com->purge_me);
544 pool_free(pool_head_notification, com);
545 }
546}
547
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200548/* This function sends signals. It wakes all the tasks attached
549 * to a list head, and remove the signal, and free the used
Thierry FOURNIERd5b79832017-12-10 17:14:07 +0100550 * memory. The wake list is not locked because it is owned by
551 * only one process. before browsing this list, the caller must
552 * ensure to be the only one browser.
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200553 */
554static inline void notification_wake(struct list *wake)
555{
556 struct notification *com, *back;
557
558 /* Wake task and delete all pending communication signals. */
559 list_for_each_entry_safe(com, back, wake, wake_me) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100560 HA_SPIN_LOCK(NOTIF_LOCK, &com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200561 LIST_DEL(&com->wake_me);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200562 if (!com->task) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100563 HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100564 pool_free(pool_head_notification, com);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200565 continue;
566 }
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200567 task_wakeup(com->task, TASK_WOKEN_MSG);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200568 com->task = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100569 HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200570 }
571}
572
Thierry FOURNIER9d5422a2018-05-30 11:40:08 +0200573/* This function returns true is some notification are pending
574 */
575static inline int notification_registered(struct list *wake)
576{
577 return !LIST_ISEMPTY(wake);
578}
579
Olivier Houchardcfbb3e62019-05-29 19:22:43 +0200580static inline int thread_has_tasks(void)
581{
582 return (!!(global_tasks_mask & tid_bit) |
Willy Tarreaud022e9c2019-09-24 08:25:15 +0200583 (sched->rqueue_size > 0) |
Olivier Houchard06910462019-10-11 16:35:01 +0200584 !LIST_ISEMPTY(&sched->task_list) | !MT_LIST_ISEMPTY(&sched->shared_tasklet_list));
Olivier Houchardcfbb3e62019-05-29 19:22:43 +0200585}
586
Willy Tarreau64e60122019-07-12 08:31:17 +0200587/* adds list item <item> to work list <work> and wake up the associated task */
Olivier Houchard859dc802019-08-08 15:47:21 +0200588static inline void work_list_add(struct work_list *work, struct mt_list *item)
Willy Tarreau64e60122019-07-12 08:31:17 +0200589{
Olivier Houchard859dc802019-08-08 15:47:21 +0200590 MT_LIST_ADDQ(&work->head, item);
Willy Tarreau64e60122019-07-12 08:31:17 +0200591 task_wakeup(work->task, TASK_WOKEN_OTHER);
592}
593
594struct work_list *work_list_create(int nbthread,
595 struct task *(*fct)(struct task *, void *, unsigned short),
596 void *arg);
597
598void work_list_destroy(struct work_list *work, int nbthread);
599
Willy Tarreaubaaee002006-06-26 02:48:02 +0200600/*
Willy Tarreau918ff602011-07-25 16:33:49 +0200601 * This does 3 things :
Willy Tarreaubaaee002006-06-26 02:48:02 +0200602 * - wake up all expired tasks
603 * - call all runnable tasks
Willy Tarreaud825eef2007-05-12 22:35:00 +0200604 * - return the date of next event in <next> or eternity.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200605 */
606
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100607void process_runnable_tasks();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200608
Willy Tarreau58b458d2008-06-29 22:40:23 +0200609/*
610 * Extract all expired timers from the timer queue, and wakes up all
Willy Tarreauc49ba522019-12-11 08:12:23 +0100611 * associated tasks.
612 */
613void wake_expired_tasks();
614
615/* Checks the next timer for the current thread by looking into its own timer
616 * list and the global one. It may return TICK_ETERNITY if no timer is present.
617 * Note that the next timer might very well be slighly in the past.
Willy Tarreau58b458d2008-06-29 22:40:23 +0200618 */
Willy Tarreauc49ba522019-12-11 08:12:23 +0100619int next_timer_expiry();
Willy Tarreau58b458d2008-06-29 22:40:23 +0200620
William Lallemand27f3fa52018-12-06 14:05:20 +0100621/*
622 * Delete every tasks before running the master polling loop
623 */
624void mworker_cleantasks();
625
Willy Tarreaubaaee002006-06-26 02:48:02 +0200626#endif /* _PROTO_TASK_H */
627
628/*
629 * Local variables:
630 * c-indent-level: 8
631 * c-basic-offset: 8
632 * End:
633 */