blob: a828cd71f19a28ae90f4cb3810dc8686f23657e5 [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 Tarreauf65610a2017-10-31 16:06:06 +0100155/* change the thread affinity of a task to <thread_mask> */
Emeric Brunc60def82017-09-27 14:59:38 +0200156static inline void task_set_affinity(struct task *t, unsigned long thread_mask)
157{
Olivier Houchard0742c312019-12-05 15:11:19 +0100158 if (task_in_wq(t))
159 task_unlink_wq(t);
Willy Tarreauf65610a2017-10-31 16:06:06 +0100160 t->thread_mask = thread_mask;
Olivier Houchard0742c312019-12-05 15:11:19 +0100161 if (t->expire != TICK_ETERNITY)
162 task_queue(t);
Emeric Brunc60def82017-09-27 14:59:38 +0200163}
Willy Tarreauf65610a2017-10-31 16:06:06 +0100164
Willy Tarreau4726f532009-03-07 17:25:21 +0100165/*
166 * Unlink the task from the wait queue, and possibly update the last_timer
167 * pointer. A pointer to the task itself is returned. The task *must* already
168 * be in the wait queue before calling this function. If unsure, use the safer
169 * task_unlink_wq() function.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200170 */
Willy Tarreau4726f532009-03-07 17:25:21 +0100171static inline struct task *__task_unlink_wq(struct task *t)
172{
173 eb32_delete(&t->wq);
Willy Tarreau4726f532009-03-07 17:25:21 +0100174 return t;
175}
176
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200177/* remove a task from its wait queue. It may either be the local wait queue if
178 * the task is bound to a single thread (in which case there's no locking
179 * involved) or the global queue, with locking.
180 */
Willy Tarreau4726f532009-03-07 17:25:21 +0100181static inline struct task *task_unlink_wq(struct task *t)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200182{
Richard Russobc9d9842019-02-20 12:43:45 -0800183 unsigned long locked;
184
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200185 if (likely(task_in_wq(t))) {
Richard Russobc9d9842019-02-20 12:43:45 -0800186 locked = atleast2(t->thread_mask);
187 if (locked)
Willy Tarreauef28dc12019-05-28 18:48:07 +0200188 HA_RWLOCK_WRLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreau4726f532009-03-07 17:25:21 +0100189 __task_unlink_wq(t);
Richard Russobc9d9842019-02-20 12:43:45 -0800190 if (locked)
Willy Tarreauef28dc12019-05-28 18:48:07 +0200191 HA_RWLOCK_WRUNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200192 }
Willy Tarreau96bcfd72007-04-29 10:41:56 +0200193 return t;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200194}
195
196/*
Christopher Faulet34c5cc92016-12-06 09:15:30 +0100197 * Unlink the task from the run queue. The tasks_run_queue size and number of
198 * niced tasks are updated too. A pointer to the task itself is returned. The
199 * task *must* already be in the run queue before calling this function. If
200 * unsure, use the safer task_unlink_rq() function. Note that the pointer to the
201 * next run queue entry is neither checked nor updated.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200202 */
Willy Tarreau4726f532009-03-07 17:25:21 +0100203static inline struct task *__task_unlink_rq(struct task *t)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200204{
Olivier Houchard4c2832852019-03-08 18:48:47 +0100205 _HA_ATOMIC_SUB(&tasks_run_queue, 1);
Olivier Houchard77551ee2018-07-26 15:59:38 +0200206#ifdef USE_THREAD
207 if (t->state & TASK_GLOBAL) {
Olivier Houchard4c2832852019-03-08 18:48:47 +0100208 _HA_ATOMIC_AND(&t->state, ~TASK_GLOBAL);
Olivier Houchard77551ee2018-07-26 15:59:38 +0200209 global_rqueue_size--;
210 } else
211#endif
Willy Tarreaud022e9c2019-09-24 08:25:15 +0200212 sched->rqueue_size--;
Olivier Houchard77551ee2018-07-26 15:59:38 +0200213 eb32sc_delete(&t->rq);
Willy Tarreau4726f532009-03-07 17:25:21 +0100214 if (likely(t->nice))
Olivier Houchard4c2832852019-03-08 18:48:47 +0100215 _HA_ATOMIC_SUB(&niced_tasks, 1);
Willy Tarreauce44f122008-07-05 18:16:19 +0200216 return t;
217}
Willy Tarreau9789f7b2008-06-24 08:17:16 +0200218
Willy Tarreau501260b2015-02-23 16:07:01 +0100219/* This function unlinks task <t> from the run queue if it is in it. It also
220 * takes care of updating the next run queue task if it was this task.
221 */
Willy Tarreau4726f532009-03-07 17:25:21 +0100222static inline struct task *task_unlink_rq(struct task *t)
223{
Olivier Houchard1d7f37a2019-03-14 16:14:04 +0100224 int is_global = t->state & TASK_GLOBAL;
225
226 if (is_global)
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200227 HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreau24f382f2019-04-12 16:10:55 +0200228 if (likely(task_in_rq(t)))
Willy Tarreau4726f532009-03-07 17:25:21 +0100229 __task_unlink_rq(t);
Olivier Houchard1d7f37a2019-03-14 16:14:04 +0100230 if (is_global)
Olivier Houchardf6e6dc12018-05-18 18:38:23 +0200231 HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock);
Willy Tarreau4726f532009-03-07 17:25:21 +0100232 return t;
233}
234
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200235static inline void tasklet_wakeup(struct tasklet *tl)
236{
Willy Tarreau8cdc1672019-10-18 06:43:53 +0200237 if (likely(tl->tid < 0)) {
238 /* this tasklet runs on the caller thread */
Olivier Houchard06910462019-10-11 16:35:01 +0200239 if (LIST_ISEMPTY(&tl->list)) {
Willy Tarreau8cdc1672019-10-18 06:43:53 +0200240 LIST_ADDQ(&task_per_thread[tid].task_list, &tl->list);
Olivier Houchard06910462019-10-11 16:35:01 +0200241 _HA_ATOMIC_ADD(&tasks_run_queue, 1);
242 }
243 } else {
Willy Tarreau8cdc1672019-10-18 06:43:53 +0200244 /* this tasklet runs on a specific thread */
Olivier Houchard06910462019-10-11 16:35:01 +0200245 if (MT_LIST_ADDQ(&task_per_thread[tl->tid].shared_tasklet_list, (struct mt_list *)&tl->list) == 1) {
246 _HA_ATOMIC_ADD(&tasks_run_queue, 1);
Willy Tarreau891b5ef2019-10-18 08:45:41 +0200247 if (sleeping_thread_mask & (1UL << tl->tid)) {
248 _HA_ATOMIC_AND(&sleeping_thread_mask, ~(1UL << tl->tid));
Olivier Houchard06910462019-10-11 16:35:01 +0200249 wake_thread(tl->tid);
250 }
Olivier Houchardbba1a262019-09-24 14:55:28 +0200251 }
252 }
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200253
254}
255
Willy Tarreaubd20a9d2019-06-14 18:05:54 +0200256/* Insert a tasklet into the tasklet list. If used with a plain task instead,
257 * the caller must update the task_list_size.
258 */
259static inline void tasklet_insert_into_tasklet_list(struct tasklet *tl)
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200260{
Olivier Houchard06910462019-10-11 16:35:01 +0200261 _HA_ATOMIC_ADD(&tasks_run_queue, 1);
262 LIST_ADDQ(&sched->task_list, &tl->list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200263}
264
Willy Tarreaubd20a9d2019-06-14 18:05:54 +0200265/* Remove the tasklet from the tasklet list. The tasklet MUST already be there.
266 * If unsure, use tasklet_remove_from_tasklet_list() instead. If used with a
267 * plain task, the caller must update the task_list_size.
Olivier Houchard06910462019-10-11 16:35:01 +0200268 * This should only be used by the thread that owns the tasklet, any other
269 * thread should use tasklet_cancel().
Willy Tarreaue73256f2019-03-25 18:02:54 +0100270 */
Willy Tarreau86eded62019-06-14 14:47:49 +0200271static inline void __tasklet_remove_from_tasklet_list(struct tasklet *t)
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200272{
Olivier Houchard06910462019-10-11 16:35:01 +0200273 LIST_DEL_INIT(&t->list);
274 _HA_ATOMIC_SUB(&tasks_run_queue, 1);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200275}
276
Willy Tarreau86eded62019-06-14 14:47:49 +0200277static inline void tasklet_remove_from_tasklet_list(struct tasklet *t)
Willy Tarreaue73256f2019-03-25 18:02:54 +0100278{
Olivier Houchard7031e3d2019-11-08 15:41:55 +0100279 if (MT_LIST_DEL((struct mt_list *)&t->list))
280 _HA_ATOMIC_SUB(&tasks_run_queue, 1);
Willy Tarreaue73256f2019-03-25 18:02:54 +0100281}
282
Willy Tarreauce44f122008-07-05 18:16:19 +0200283/*
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 Tarreau9efd7452018-05-31 14:48:54 +0200296 t->call_date = 0;
297 t->cpu_time = 0;
298 t->lat_time = 0;
Willy Tarreauf4219992017-07-24 17:52:58 +0200299 t->expire = TICK_ETERNITY;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200300 return t;
301}
302
Willy Tarreau8cdc1672019-10-18 06:43:53 +0200303/* Initialize a new tasklet. It's identified as a tasklet by ->nice=-32768. It
304 * is expected to run on the calling thread by default, it's up to the caller
305 * to change ->tid if it wants to own it.
306 */
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200307static inline void tasklet_init(struct tasklet *t)
308{
309 t->nice = -32768;
310 t->calls = 0;
311 t->state = 0;
Olivier Houchard9ddaf792018-07-19 16:02:16 +0200312 t->process = NULL;
Willy Tarreau8cdc1672019-10-18 06:43:53 +0200313 t->tid = -1;
Olivier Houchard06910462019-10-11 16:35:01 +0200314 LIST_INIT(&t->list);
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200315}
316
Willy Tarreau8cdc1672019-10-18 06:43:53 +0200317/* Allocate and initialize a new tasklet, local to the thread by default. The
318 * caller may assing its tid if it wants to own the tasklet.
319 */
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200320static inline struct tasklet *tasklet_new(void)
321{
322 struct tasklet *t = pool_alloc(pool_head_tasklet);
323
324 if (t) {
325 tasklet_init(t);
326 }
327 return t;
328}
329
Willy Tarreaubaaee002006-06-26 02:48:02 +0200330/*
Willy Tarreaua4613182009-03-21 18:13:21 +0100331 * Allocate and initialise a new task. The new task is returned, or NULL in
332 * case of lack of memory. The task count is incremented. Tasks should only
333 * be allocated this way, and must be freed using task_free().
334 */
Emeric Brunc60def82017-09-27 14:59:38 +0200335static inline struct task *task_new(unsigned long thread_mask)
Willy Tarreaua4613182009-03-21 18:13:21 +0100336{
Willy Tarreaubafbe012017-11-24 17:34:44 +0100337 struct task *t = pool_alloc(pool_head_task);
Willy Tarreaua4613182009-03-21 18:13:21 +0100338 if (t) {
Olivier Houchard4c2832852019-03-08 18:48:47 +0100339 _HA_ATOMIC_ADD(&nb_tasks, 1);
Emeric Brunc60def82017-09-27 14:59:38 +0200340 task_init(t, thread_mask);
Willy Tarreaua4613182009-03-21 18:13:21 +0100341 }
342 return t;
343}
344
345/*
Willy Tarreau29bf96d2019-05-17 14:16:51 +0200346 * Free a task. Its context must have been freed since it will be lost. The
347 * task count is decremented. It it is the current task, this one is reset.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200348 */
Olivier Houchard9b36cb42018-05-04 15:46:16 +0200349static inline void __task_free(struct task *t)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200350{
Willy Tarreaud022e9c2019-09-24 08:25:15 +0200351 if (t == sched->current) {
352 sched->current = NULL;
Willy Tarreau29bf96d2019-05-17 14:16:51 +0200353 __ha_barrier_store();
354 }
Willy Tarreaubafbe012017-11-24 17:34:44 +0100355 pool_free(pool_head_task, t);
Willy Tarreaueb118892014-11-13 16:57:19 +0100356 if (unlikely(stopping))
Willy Tarreaubafbe012017-11-24 17:34:44 +0100357 pool_flush(pool_head_task);
Olivier Houchard4c2832852019-03-08 18:48:47 +0100358 _HA_ATOMIC_SUB(&nb_tasks, 1);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200359}
360
Willy Tarreauf6562792019-05-07 19:05:35 +0200361/* Destroys a task : it's unlinked from the wait queues and is freed if it's
362 * the current task or not queued otherwise it's marked to be freed by the
363 * scheduler. It does nothing if <t> is NULL.
364 */
Olivier Houchard3f795f72019-04-17 22:51:06 +0200365static inline void task_destroy(struct task *t)
Olivier Houchard9b36cb42018-05-04 15:46:16 +0200366{
Dragan Dosen75bc6d32019-05-07 15:25:25 +0200367 if (!t)
368 return;
369
Olivier Houchard3f795f72019-04-17 22:51:06 +0200370 task_unlink_wq(t);
371 /* We don't have to explicitely remove from the run queue.
372 * If we are in the runqueue, the test below will set t->process
373 * to NULL, and the task will be free'd when it'll be its turn
374 * to run.
375 */
376
Olivier Houchard9b36cb42018-05-04 15:46:16 +0200377 /* There's no need to protect t->state with a lock, as the task
378 * has to run on the current thread.
379 */
Willy Tarreaud022e9c2019-09-24 08:25:15 +0200380 if (t == sched->current || !(t->state & (TASK_QUEUED | TASK_RUNNING)))
Olivier Houchard9b36cb42018-05-04 15:46:16 +0200381 __task_free(t);
382 else
383 t->process = NULL;
384}
385
Olivier Houchard06910462019-10-11 16:35:01 +0200386/* Should only be called by the thread responsible for the tasklet */
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200387static inline void tasklet_free(struct tasklet *tl)
388{
Olivier Houchard06910462019-10-11 16:35:01 +0200389 if (!LIST_ISEMPTY(&tl->list)) {
390 LIST_DEL(&tl->list);
391 _HA_ATOMIC_SUB(&tasks_run_queue, 1);
Olivier Houchard09e498f2018-12-24 14:03:10 +0100392 }
Olivier Houcharddcd6f3a2018-06-08 17:08:19 +0200393
Olivier Houchardb0bdae72018-05-18 18:45:28 +0200394 pool_free(pool_head_tasklet, tl);
395 if (unlikely(stopping))
396 pool_flush(pool_head_tasklet);
397}
398
Olivier Houchardff1e9f32019-09-20 17:18:35 +0200399static inline void tasklet_set_tid(struct tasklet *tl, int tid)
400{
401 tl->tid = tid;
402}
403
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200404void __task_queue(struct task *task, struct eb_root *wq);
405
Willy Tarreau4726f532009-03-07 17:25:21 +0100406/* Place <task> into the wait queue, where it may already be. If the expiration
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100407 * timer is infinite, do nothing and rely on wake_expired_task to clean up.
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200408 * If the task is bound to a single thread, it's assumed to be bound to the
409 * current thread's queue and is queued without locking. Otherwise it's queued
410 * into the global wait queue, protected by locks.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200411 */
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100412static inline void task_queue(struct task *task)
413{
414 /* If we already have a place in the wait queue no later than the
415 * timeout we're trying to set, we'll stay there, because it is very
416 * unlikely that we will reach the timeout anyway. If the timeout
417 * has been disabled, it's useless to leave the queue as well. We'll
418 * rely on wake_expired_tasks() to catch the node and move it to the
419 * proper place should it ever happen. Finally we only add the task
420 * to the queue if it was not there or if it was further than what
421 * we want.
422 */
423 if (!tick_isset(task->expire))
424 return;
425
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200426#ifdef USE_THREAD
427 if (atleast2(task->thread_mask)) {
Willy Tarreauef28dc12019-05-28 18:48:07 +0200428 HA_RWLOCK_WRLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200429 if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key))
430 __task_queue(task, &timers);
Willy Tarreauef28dc12019-05-28 18:48:07 +0200431 HA_RWLOCK_WRUNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200432 } else
433#endif
434 {
435 if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key))
Willy Tarreaud022e9c2019-09-24 08:25:15 +0200436 __task_queue(task, &sched->timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200437 }
Willy Tarreau531cf0c2009-03-08 16:35:27 +0100438}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200439
Willy Tarreau26e48812011-07-25 14:30:42 +0200440/* Ensure <task> will be woken up at most at <when>. If the task is already in
441 * the run queue (but not running), nothing is done. It may be used that way
442 * with a delay : task_schedule(task, tick_add(now_ms, delay));
443 */
444static inline void task_schedule(struct task *task, int when)
445{
Emeric Brunc60def82017-09-27 14:59:38 +0200446 /* TODO: mthread, check if there is no tisk with this test */
Willy Tarreau26e48812011-07-25 14:30:42 +0200447 if (task_in_rq(task))
448 return;
449
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200450#ifdef USE_THREAD
451 if (atleast2(task->thread_mask)) {
Willy Tarreauef28dc12019-05-28 18:48:07 +0200452 /* FIXME: is it really needed to lock the WQ during the check ? */
453 HA_RWLOCK_WRLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200454 if (task_in_wq(task))
455 when = tick_first(when, task->expire);
456
457 task->expire = when;
458 if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key))
459 __task_queue(task, &timers);
Willy Tarreauef28dc12019-05-28 18:48:07 +0200460 HA_RWLOCK_WRUNLOCK(TASK_WQ_LOCK, &wq_lock);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200461 } else
462#endif
463 {
464 if (task_in_wq(task))
465 when = tick_first(when, task->expire);
Willy Tarreau26e48812011-07-25 14:30:42 +0200466
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200467 task->expire = when;
468 if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key))
Willy Tarreaud022e9c2019-09-24 08:25:15 +0200469 __task_queue(task, &sched->timers);
Willy Tarreaub20aa9e2018-10-15 14:52:21 +0200470 }
Willy Tarreau26e48812011-07-25 14:30:42 +0200471}
472
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200473/* This function register a new signal. "lua" is the current lua
474 * execution context. It contains a pointer to the associated task.
475 * "link" is a list head attached to an other task that must be wake
476 * the lua task if an event occurs. This is useful with external
477 * events like TCP I/O or sleep functions. This funcion allocate
478 * memory for the signal.
479 */
480static inline struct notification *notification_new(struct list *purge, struct list *event, struct task *wakeup)
481{
Willy Tarreaubafbe012017-11-24 17:34:44 +0100482 struct notification *com = pool_alloc(pool_head_notification);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200483 if (!com)
484 return NULL;
485 LIST_ADDQ(purge, &com->purge_me);
486 LIST_ADDQ(event, &com->wake_me);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100487 HA_SPIN_INIT(&com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200488 com->task = wakeup;
489 return com;
490}
491
492/* This function purge all the pending signals when the LUA execution
493 * is finished. This prevent than a coprocess try to wake a deleted
494 * task. This function remove the memory associated to the signal.
Thierry FOURNIERd5b79832017-12-10 17:14:07 +0100495 * The purge list is not locked because it is owned by only one
496 * process. before browsing this list, the caller must ensure to be
497 * the only one browser.
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200498 */
499static inline void notification_purge(struct list *purge)
500{
501 struct notification *com, *back;
502
503 /* Delete all pending communication signals. */
504 list_for_each_entry_safe(com, back, purge, purge_me) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100505 HA_SPIN_LOCK(NOTIF_LOCK, &com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200506 LIST_DEL(&com->purge_me);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200507 if (!com->task) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100508 HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100509 pool_free(pool_head_notification, com);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200510 continue;
511 }
512 com->task = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100513 HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200514 }
515}
516
Thierry FOURNIERcb146882017-12-10 17:10:57 +0100517/* In some cases, the disconnected notifications must be cleared.
518 * This function just release memory blocs. The purge list is not
519 * locked because it is owned by only one process. Before browsing
520 * this list, the caller must ensure to be the only one browser.
521 * The "com" is not locked because when com->task is NULL, the
522 * notification is no longer used.
523 */
524static inline void notification_gc(struct list *purge)
525{
526 struct notification *com, *back;
527
528 /* Delete all pending communication signals. */
529 list_for_each_entry_safe (com, back, purge, purge_me) {
530 if (com->task)
531 continue;
532 LIST_DEL(&com->purge_me);
533 pool_free(pool_head_notification, com);
534 }
535}
536
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200537/* This function sends signals. It wakes all the tasks attached
538 * to a list head, and remove the signal, and free the used
Thierry FOURNIERd5b79832017-12-10 17:14:07 +0100539 * memory. The wake list is not locked because it is owned by
540 * only one process. before browsing this list, the caller must
541 * ensure to be the only one browser.
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200542 */
543static inline void notification_wake(struct list *wake)
544{
545 struct notification *com, *back;
546
547 /* Wake task and delete all pending communication signals. */
548 list_for_each_entry_safe(com, back, wake, wake_me) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100549 HA_SPIN_LOCK(NOTIF_LOCK, &com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200550 LIST_DEL(&com->wake_me);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200551 if (!com->task) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100552 HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100553 pool_free(pool_head_notification, com);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200554 continue;
555 }
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200556 task_wakeup(com->task, TASK_WOKEN_MSG);
Thierry FOURNIER738a6d72017-07-17 00:14:07 +0200557 com->task = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100558 HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock);
Thierry FOURNIERd6975962017-07-12 14:31:10 +0200559 }
560}
561
Thierry FOURNIER9d5422a2018-05-30 11:40:08 +0200562/* This function returns true is some notification are pending
563 */
564static inline int notification_registered(struct list *wake)
565{
566 return !LIST_ISEMPTY(wake);
567}
568
Olivier Houchardcfbb3e62019-05-29 19:22:43 +0200569static inline int thread_has_tasks(void)
570{
571 return (!!(global_tasks_mask & tid_bit) |
Willy Tarreaud022e9c2019-09-24 08:25:15 +0200572 (sched->rqueue_size > 0) |
Olivier Houchard06910462019-10-11 16:35:01 +0200573 !LIST_ISEMPTY(&sched->task_list) | !MT_LIST_ISEMPTY(&sched->shared_tasklet_list));
Olivier Houchardcfbb3e62019-05-29 19:22:43 +0200574}
575
Willy Tarreau64e60122019-07-12 08:31:17 +0200576/* adds list item <item> to work list <work> and wake up the associated task */
Olivier Houchard859dc802019-08-08 15:47:21 +0200577static inline void work_list_add(struct work_list *work, struct mt_list *item)
Willy Tarreau64e60122019-07-12 08:31:17 +0200578{
Olivier Houchard859dc802019-08-08 15:47:21 +0200579 MT_LIST_ADDQ(&work->head, item);
Willy Tarreau64e60122019-07-12 08:31:17 +0200580 task_wakeup(work->task, TASK_WOKEN_OTHER);
581}
582
583struct work_list *work_list_create(int nbthread,
584 struct task *(*fct)(struct task *, void *, unsigned short),
585 void *arg);
586
587void work_list_destroy(struct work_list *work, int nbthread);
588
Willy Tarreaubaaee002006-06-26 02:48:02 +0200589/*
Willy Tarreau918ff602011-07-25 16:33:49 +0200590 * This does 3 things :
Willy Tarreaubaaee002006-06-26 02:48:02 +0200591 * - wake up all expired tasks
592 * - call all runnable tasks
Willy Tarreaud825eef2007-05-12 22:35:00 +0200593 * - return the date of next event in <next> or eternity.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200594 */
595
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100596void process_runnable_tasks();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200597
Willy Tarreau58b458d2008-06-29 22:40:23 +0200598/*
599 * Extract all expired timers from the timer queue, and wakes up all
600 * associated tasks. Returns the date of next event (or eternity).
601 */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +0100602int wake_expired_tasks();
Willy Tarreau58b458d2008-06-29 22:40:23 +0200603
William Lallemand27f3fa52018-12-06 14:05:20 +0100604/*
605 * Delete every tasks before running the master polling loop
606 */
607void mworker_cleantasks();
608
Willy Tarreaubaaee002006-06-26 02:48:02 +0200609#endif /* _PROTO_TASK_H */
610
611/*
612 * Local variables:
613 * c-indent-level: 8
614 * c-basic-offset: 8
615 * End:
616 */