Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | 24f4efa | 2010-08-27 17:56:48 +0200 | [diff] [blame] | 2 | * 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 Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 21 | |
| 22 | #ifndef _PROTO_TASK_H |
| 23 | #define _PROTO_TASK_H |
| 24 | |
| 25 | |
| 26 | #include <sys/time.h> |
Willy Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 27 | |
| 28 | #include <common/config.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 29 | #include <common/memory.h> |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 30 | #include <common/mini-clist.h> |
| 31 | #include <common/standard.h> |
Willy Tarreau | d0a201b | 2009-03-08 15:53:06 +0100 | [diff] [blame] | 32 | #include <common/ticks.h> |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 33 | #include <common/hathreads.h> |
| 34 | |
Willy Tarreau | 8d38805 | 2017-11-05 13:34:20 +0100 | [diff] [blame] | 35 | #include <eb32sctree.h> |
Willy Tarreau | 45cb4fb | 2009-10-26 21:10:04 +0100 | [diff] [blame] | 36 | #include <eb32tree.h> |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 37 | |
Willy Tarreau | eb11889 | 2014-11-13 16:57:19 +0100 | [diff] [blame] | 38 | #include <types/global.h> |
Willy Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 39 | #include <types/task.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 40 | |
Olivier Houchard | bba1a26 | 2019-09-24 14:55:28 +0200 | [diff] [blame] | 41 | #include <proto/fd.h> |
| 42 | |
Willy Tarreau | d0a201b | 2009-03-08 15:53:06 +0100 | [diff] [blame] | 43 | /* 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 Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 54 | * 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 Tarreau | d0a201b | 2009-03-08 15:53:06 +0100 | [diff] [blame] | 57 | * |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 58 | * 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 Tarreau | d0a201b | 2009-03-08 15:53:06 +0100 | [diff] [blame] | 65 | * |
| 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 Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 77 | * - node->key is always before or equal to timer |
Willy Tarreau | d0a201b | 2009-03-08 15:53:06 +0100 | [diff] [blame] | 78 | * |
| 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 Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 83 | /* The farthest we can look back in a timer tree */ |
| 84 | #define TIMER_LOOK_BACK (1U << 31) |
Willy Tarreau | d0a201b | 2009-03-08 15:53:06 +0100 | [diff] [blame] | 85 | |
| 86 | /* a few exported variables */ |
Willy Tarreau | a461318 | 2009-03-21 18:13:21 +0100 | [diff] [blame] | 87 | extern unsigned int nb_tasks; /* total number of tasks */ |
Willy Tarreau | aa1e1be | 2019-05-16 17:37:27 +0200 | [diff] [blame] | 88 | extern volatile unsigned long global_tasks_mask; /* Mask of threads with tasks in the global runqueue */ |
Christopher Faulet | 34c5cc9 | 2016-12-06 09:15:30 +0100 | [diff] [blame] | 89 | extern unsigned int tasks_run_queue; /* run queue size */ |
| 90 | extern unsigned int tasks_run_queue_cur; |
Willy Tarreau | c7bdf09 | 2009-03-21 18:33:52 +0100 | [diff] [blame] | 91 | extern unsigned int nb_tasks_cur; |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 92 | extern unsigned int niced_tasks; /* number of niced tasks in the run queue */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 93 | extern struct pool_head *pool_head_task; |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 94 | extern struct pool_head *pool_head_tasklet; |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 95 | extern struct pool_head *pool_head_notification; |
Willy Tarreau | d022e9c | 2019-09-24 08:25:15 +0200 | [diff] [blame] | 96 | extern THREAD_LOCAL struct task_per_thread *sched; /* current's thread scheduler context */ |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 97 | #ifdef USE_THREAD |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 98 | extern struct eb_root timers; /* sorted timers tree, global */ |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 99 | extern struct eb_root rqueue; /* tree constituting the run queue */ |
Olivier Houchard | 77551ee | 2018-07-26 15:59:38 +0200 | [diff] [blame] | 100 | extern int global_rqueue_size; /* Number of element sin the global runqueue */ |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 101 | #endif |
Olivier Houchard | 77551ee | 2018-07-26 15:59:38 +0200 | [diff] [blame] | 102 | |
Willy Tarreau | 8d8747a | 2018-10-15 16:12:48 +0200 | [diff] [blame] | 103 | extern struct task_per_thread task_per_thread[MAX_THREADS]; |
Christopher Faulet | 9dcf9b6 | 2017-11-13 10:34:01 +0100 | [diff] [blame] | 104 | |
| 105 | __decl_hathreads(extern HA_SPINLOCK_T rq_lock); /* spin lock related to run queue */ |
Willy Tarreau | ef28dc1 | 2019-05-28 18:48:07 +0200 | [diff] [blame] | 106 | __decl_hathreads(extern HA_RWLOCK_T wq_lock); /* RW lock related to the wait queue */ |
Willy Tarreau | c6ca1a0 | 2007-05-13 19:43:47 +0200 | [diff] [blame] | 107 | |
Olivier Houchard | 5d18718 | 2018-08-01 15:58:44 +0200 | [diff] [blame] | 108 | |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 109 | /* return 0 if task is in run queue, otherwise non-zero */ |
| 110 | static inline int task_in_rq(struct task *t) |
| 111 | { |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 112 | /* 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 Houchard | 4a1be0c | 2019-04-17 19:13:07 +0200 | [diff] [blame] | 115 | return t->rq.node.leaf_p != NULL; |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | /* return 0 if task is in wait queue, otherwise non-zero */ |
| 119 | static inline int task_in_wq(struct task *t) |
| 120 | { |
| 121 | return t->wq.node.leaf_p != NULL; |
| 122 | } |
| 123 | |
Willy Tarreau | fdccded | 2008-08-29 18:19:04 +0200 | [diff] [blame] | 124 | /* puts the task <t> in run queue with reason flags <f>, and returns <t> */ |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 125 | /* 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 | */ |
| 128 | void __task_wakeup(struct task *t, struct eb_root *); |
| 129 | static inline void task_wakeup(struct task *t, unsigned int f) |
Willy Tarreau | 4df8206 | 2008-08-29 15:26:14 +0200 | [diff] [blame] | 130 | { |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 131 | unsigned short state; |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 132 | |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 133 | #ifdef USE_THREAD |
| 134 | struct eb_root *root; |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 135 | |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 136 | if (t->thread_mask == tid_bit || global.nbthread == 1) |
Willy Tarreau | d022e9c | 2019-09-24 08:25:15 +0200 | [diff] [blame] | 137 | root = &sched->rqueue; |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 138 | else |
| 139 | root = &rqueue; |
| 140 | #else |
Willy Tarreau | d022e9c | 2019-09-24 08:25:15 +0200 | [diff] [blame] | 141 | struct eb_root *root = &sched->rqueue; |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 142 | #endif |
| 143 | |
Willy Tarreau | b038007 | 2019-04-17 11:47:18 +0200 | [diff] [blame] | 144 | state = _HA_ATOMIC_OR(&t->state, f); |
| 145 | while (!(state & (TASK_RUNNING | TASK_QUEUED))) { |
Willy Tarreau | 8c12e2f | 2019-04-17 20:52:51 +0200 | [diff] [blame] | 146 | if (_HA_ATOMIC_CAS(&t->state, &state, state | TASK_QUEUED)) { |
| 147 | __task_wakeup(t, root); |
Willy Tarreau | b038007 | 2019-04-17 11:47:18 +0200 | [diff] [blame] | 148 | break; |
Willy Tarreau | 8c12e2f | 2019-04-17 20:52:51 +0200 | [diff] [blame] | 149 | } |
Willy Tarreau | b038007 | 2019-04-17 11:47:18 +0200 | [diff] [blame] | 150 | } |
Willy Tarreau | 4df8206 | 2008-08-29 15:26:14 +0200 | [diff] [blame] | 151 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 152 | |
Willy Tarreau | f65610a | 2017-10-31 16:06:06 +0100 | [diff] [blame] | 153 | /* change the thread affinity of a task to <thread_mask> */ |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 154 | static inline void task_set_affinity(struct task *t, unsigned long thread_mask) |
| 155 | { |
Willy Tarreau | f65610a | 2017-10-31 16:06:06 +0100 | [diff] [blame] | 156 | t->thread_mask = thread_mask; |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 157 | } |
Willy Tarreau | f65610a | 2017-10-31 16:06:06 +0100 | [diff] [blame] | 158 | |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 159 | /* |
| 160 | * Unlink the task from the wait queue, and possibly update the last_timer |
| 161 | * pointer. A pointer to the task itself is returned. The task *must* already |
| 162 | * be in the wait queue before calling this function. If unsure, use the safer |
| 163 | * task_unlink_wq() function. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 164 | */ |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 165 | static inline struct task *__task_unlink_wq(struct task *t) |
| 166 | { |
| 167 | eb32_delete(&t->wq); |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 168 | return t; |
| 169 | } |
| 170 | |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 171 | /* remove a task from its wait queue. It may either be the local wait queue if |
| 172 | * the task is bound to a single thread (in which case there's no locking |
| 173 | * involved) or the global queue, with locking. |
| 174 | */ |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 175 | static inline struct task *task_unlink_wq(struct task *t) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 176 | { |
Richard Russo | bc9d984 | 2019-02-20 12:43:45 -0800 | [diff] [blame] | 177 | unsigned long locked; |
| 178 | |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 179 | if (likely(task_in_wq(t))) { |
Richard Russo | bc9d984 | 2019-02-20 12:43:45 -0800 | [diff] [blame] | 180 | locked = atleast2(t->thread_mask); |
| 181 | if (locked) |
Willy Tarreau | ef28dc1 | 2019-05-28 18:48:07 +0200 | [diff] [blame] | 182 | HA_RWLOCK_WRLOCK(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 183 | __task_unlink_wq(t); |
Richard Russo | bc9d984 | 2019-02-20 12:43:45 -0800 | [diff] [blame] | 184 | if (locked) |
Willy Tarreau | ef28dc1 | 2019-05-28 18:48:07 +0200 | [diff] [blame] | 185 | HA_RWLOCK_WRUNLOCK(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 186 | } |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 187 | return t; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 188 | } |
| 189 | |
| 190 | /* |
Christopher Faulet | 34c5cc9 | 2016-12-06 09:15:30 +0100 | [diff] [blame] | 191 | * Unlink the task from the run queue. The tasks_run_queue size and number of |
| 192 | * niced tasks are updated too. A pointer to the task itself is returned. The |
| 193 | * task *must* already be in the run queue before calling this function. If |
| 194 | * unsure, use the safer task_unlink_rq() function. Note that the pointer to the |
| 195 | * next run queue entry is neither checked nor updated. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 196 | */ |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 197 | static inline struct task *__task_unlink_rq(struct task *t) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 198 | { |
Olivier Houchard | 4c283285 | 2019-03-08 18:48:47 +0100 | [diff] [blame] | 199 | _HA_ATOMIC_SUB(&tasks_run_queue, 1); |
Olivier Houchard | 77551ee | 2018-07-26 15:59:38 +0200 | [diff] [blame] | 200 | #ifdef USE_THREAD |
| 201 | if (t->state & TASK_GLOBAL) { |
Olivier Houchard | 4c283285 | 2019-03-08 18:48:47 +0100 | [diff] [blame] | 202 | _HA_ATOMIC_AND(&t->state, ~TASK_GLOBAL); |
Olivier Houchard | 77551ee | 2018-07-26 15:59:38 +0200 | [diff] [blame] | 203 | global_rqueue_size--; |
| 204 | } else |
| 205 | #endif |
Willy Tarreau | d022e9c | 2019-09-24 08:25:15 +0200 | [diff] [blame] | 206 | sched->rqueue_size--; |
Olivier Houchard | 77551ee | 2018-07-26 15:59:38 +0200 | [diff] [blame] | 207 | eb32sc_delete(&t->rq); |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 208 | if (likely(t->nice)) |
Olivier Houchard | 4c283285 | 2019-03-08 18:48:47 +0100 | [diff] [blame] | 209 | _HA_ATOMIC_SUB(&niced_tasks, 1); |
Willy Tarreau | ce44f12 | 2008-07-05 18:16:19 +0200 | [diff] [blame] | 210 | return t; |
| 211 | } |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 212 | |
Willy Tarreau | 501260b | 2015-02-23 16:07:01 +0100 | [diff] [blame] | 213 | /* This function unlinks task <t> from the run queue if it is in it. It also |
| 214 | * takes care of updating the next run queue task if it was this task. |
| 215 | */ |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 216 | static inline struct task *task_unlink_rq(struct task *t) |
| 217 | { |
Olivier Houchard | 1d7f37a | 2019-03-14 16:14:04 +0100 | [diff] [blame] | 218 | int is_global = t->state & TASK_GLOBAL; |
| 219 | |
| 220 | if (is_global) |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 221 | HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock); |
Willy Tarreau | 24f382f | 2019-04-12 16:10:55 +0200 | [diff] [blame] | 222 | if (likely(task_in_rq(t))) |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 223 | __task_unlink_rq(t); |
Olivier Houchard | 1d7f37a | 2019-03-14 16:14:04 +0100 | [diff] [blame] | 224 | if (is_global) |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 225 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock); |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 226 | return t; |
| 227 | } |
| 228 | |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 229 | static inline void tasklet_wakeup(struct tasklet *tl) |
| 230 | { |
Willy Tarreau | 8cdc167 | 2019-10-18 06:43:53 +0200 | [diff] [blame] | 231 | if (likely(tl->tid < 0)) { |
| 232 | /* this tasklet runs on the caller thread */ |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 233 | if (LIST_ISEMPTY(&tl->list)) { |
Willy Tarreau | 8cdc167 | 2019-10-18 06:43:53 +0200 | [diff] [blame] | 234 | LIST_ADDQ(&task_per_thread[tid].task_list, &tl->list); |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 235 | _HA_ATOMIC_ADD(&tasks_run_queue, 1); |
| 236 | } |
| 237 | } else { |
Willy Tarreau | 8cdc167 | 2019-10-18 06:43:53 +0200 | [diff] [blame] | 238 | /* this tasklet runs on a specific thread */ |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 239 | if (MT_LIST_ADDQ(&task_per_thread[tl->tid].shared_tasklet_list, (struct mt_list *)&tl->list) == 1) { |
| 240 | _HA_ATOMIC_ADD(&tasks_run_queue, 1); |
Willy Tarreau | 891b5ef | 2019-10-18 08:45:41 +0200 | [diff] [blame] | 241 | if (sleeping_thread_mask & (1UL << tl->tid)) { |
| 242 | _HA_ATOMIC_AND(&sleeping_thread_mask, ~(1UL << tl->tid)); |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 243 | wake_thread(tl->tid); |
| 244 | } |
Olivier Houchard | bba1a26 | 2019-09-24 14:55:28 +0200 | [diff] [blame] | 245 | } |
| 246 | } |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 247 | |
| 248 | } |
| 249 | |
Willy Tarreau | bd20a9d | 2019-06-14 18:05:54 +0200 | [diff] [blame] | 250 | /* Insert a tasklet into the tasklet list. If used with a plain task instead, |
| 251 | * the caller must update the task_list_size. |
| 252 | */ |
| 253 | static inline void tasklet_insert_into_tasklet_list(struct tasklet *tl) |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 254 | { |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 255 | _HA_ATOMIC_ADD(&tasks_run_queue, 1); |
| 256 | LIST_ADDQ(&sched->task_list, &tl->list); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 257 | } |
| 258 | |
Willy Tarreau | bd20a9d | 2019-06-14 18:05:54 +0200 | [diff] [blame] | 259 | /* 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. |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 262 | * This should only be used by the thread that owns the tasklet, any other |
| 263 | * thread should use tasklet_cancel(). |
Willy Tarreau | e73256f | 2019-03-25 18:02:54 +0100 | [diff] [blame] | 264 | */ |
Willy Tarreau | 86eded6 | 2019-06-14 14:47:49 +0200 | [diff] [blame] | 265 | static inline void __tasklet_remove_from_tasklet_list(struct tasklet *t) |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 266 | { |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 267 | LIST_DEL_INIT(&t->list); |
| 268 | _HA_ATOMIC_SUB(&tasks_run_queue, 1); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 269 | } |
| 270 | |
Willy Tarreau | 86eded6 | 2019-06-14 14:47:49 +0200 | [diff] [blame] | 271 | static inline void tasklet_remove_from_tasklet_list(struct tasklet *t) |
Willy Tarreau | e73256f | 2019-03-25 18:02:54 +0100 | [diff] [blame] | 272 | { |
Olivier Houchard | 7031e3d | 2019-11-08 15:41:55 +0100 | [diff] [blame] | 273 | if (MT_LIST_DEL((struct mt_list *)&t->list)) |
| 274 | _HA_ATOMIC_SUB(&tasks_run_queue, 1); |
Willy Tarreau | e73256f | 2019-03-25 18:02:54 +0100 | [diff] [blame] | 275 | } |
| 276 | |
Willy Tarreau | ce44f12 | 2008-07-05 18:16:19 +0200 | [diff] [blame] | 277 | /* |
Willy Tarreau | a461318 | 2009-03-21 18:13:21 +0100 | [diff] [blame] | 278 | * Initialize a new task. The bare minimum is performed (queue pointers and |
| 279 | * state). The task is returned. This function should not be used outside of |
| 280 | * task_new(). |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 281 | */ |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 282 | static inline struct task *task_init(struct task *t, unsigned long thread_mask) |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 283 | { |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 284 | t->wq.node.leaf_p = NULL; |
| 285 | t->rq.node.leaf_p = NULL; |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 286 | t->state = TASK_SLEEPING; |
Willy Tarreau | f65610a | 2017-10-31 16:06:06 +0100 | [diff] [blame] | 287 | t->thread_mask = thread_mask; |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 288 | t->nice = 0; |
Willy Tarreau | 3884cba | 2009-03-28 17:54:35 +0100 | [diff] [blame] | 289 | t->calls = 0; |
Willy Tarreau | 9efd745 | 2018-05-31 14:48:54 +0200 | [diff] [blame] | 290 | t->call_date = 0; |
| 291 | t->cpu_time = 0; |
| 292 | t->lat_time = 0; |
Willy Tarreau | f421999 | 2017-07-24 17:52:58 +0200 | [diff] [blame] | 293 | t->expire = TICK_ETERNITY; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 294 | return t; |
| 295 | } |
| 296 | |
Willy Tarreau | 8cdc167 | 2019-10-18 06:43:53 +0200 | [diff] [blame] | 297 | /* Initialize a new tasklet. It's identified as a tasklet by ->nice=-32768. It |
| 298 | * is expected to run on the calling thread by default, it's up to the caller |
| 299 | * to change ->tid if it wants to own it. |
| 300 | */ |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 301 | static inline void tasklet_init(struct tasklet *t) |
| 302 | { |
| 303 | t->nice = -32768; |
| 304 | t->calls = 0; |
| 305 | t->state = 0; |
Olivier Houchard | 9ddaf79 | 2018-07-19 16:02:16 +0200 | [diff] [blame] | 306 | t->process = NULL; |
Willy Tarreau | 8cdc167 | 2019-10-18 06:43:53 +0200 | [diff] [blame] | 307 | t->tid = -1; |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 308 | LIST_INIT(&t->list); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 309 | } |
| 310 | |
Willy Tarreau | 8cdc167 | 2019-10-18 06:43:53 +0200 | [diff] [blame] | 311 | /* Allocate and initialize a new tasklet, local to the thread by default. The |
| 312 | * caller may assing its tid if it wants to own the tasklet. |
| 313 | */ |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 314 | static inline struct tasklet *tasklet_new(void) |
| 315 | { |
| 316 | struct tasklet *t = pool_alloc(pool_head_tasklet); |
| 317 | |
| 318 | if (t) { |
| 319 | tasklet_init(t); |
| 320 | } |
| 321 | return t; |
| 322 | } |
| 323 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 324 | /* |
Willy Tarreau | a461318 | 2009-03-21 18:13:21 +0100 | [diff] [blame] | 325 | * Allocate and initialise a new task. The new task is returned, or NULL in |
| 326 | * case of lack of memory. The task count is incremented. Tasks should only |
| 327 | * be allocated this way, and must be freed using task_free(). |
| 328 | */ |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 329 | static inline struct task *task_new(unsigned long thread_mask) |
Willy Tarreau | a461318 | 2009-03-21 18:13:21 +0100 | [diff] [blame] | 330 | { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 331 | struct task *t = pool_alloc(pool_head_task); |
Willy Tarreau | a461318 | 2009-03-21 18:13:21 +0100 | [diff] [blame] | 332 | if (t) { |
Olivier Houchard | 4c283285 | 2019-03-08 18:48:47 +0100 | [diff] [blame] | 333 | _HA_ATOMIC_ADD(&nb_tasks, 1); |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 334 | task_init(t, thread_mask); |
Willy Tarreau | a461318 | 2009-03-21 18:13:21 +0100 | [diff] [blame] | 335 | } |
| 336 | return t; |
| 337 | } |
| 338 | |
| 339 | /* |
Willy Tarreau | 29bf96d | 2019-05-17 14:16:51 +0200 | [diff] [blame] | 340 | * Free a task. Its context must have been freed since it will be lost. The |
| 341 | * task count is decremented. It it is the current task, this one is reset. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 342 | */ |
Olivier Houchard | 9b36cb4 | 2018-05-04 15:46:16 +0200 | [diff] [blame] | 343 | static inline void __task_free(struct task *t) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 344 | { |
Willy Tarreau | d022e9c | 2019-09-24 08:25:15 +0200 | [diff] [blame] | 345 | if (t == sched->current) { |
| 346 | sched->current = NULL; |
Willy Tarreau | 29bf96d | 2019-05-17 14:16:51 +0200 | [diff] [blame] | 347 | __ha_barrier_store(); |
| 348 | } |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 349 | pool_free(pool_head_task, t); |
Willy Tarreau | eb11889 | 2014-11-13 16:57:19 +0100 | [diff] [blame] | 350 | if (unlikely(stopping)) |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 351 | pool_flush(pool_head_task); |
Olivier Houchard | 4c283285 | 2019-03-08 18:48:47 +0100 | [diff] [blame] | 352 | _HA_ATOMIC_SUB(&nb_tasks, 1); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 353 | } |
| 354 | |
Willy Tarreau | f656279 | 2019-05-07 19:05:35 +0200 | [diff] [blame] | 355 | /* Destroys a task : it's unlinked from the wait queues and is freed if it's |
| 356 | * the current task or not queued otherwise it's marked to be freed by the |
| 357 | * scheduler. It does nothing if <t> is NULL. |
| 358 | */ |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 359 | static inline void task_destroy(struct task *t) |
Olivier Houchard | 9b36cb4 | 2018-05-04 15:46:16 +0200 | [diff] [blame] | 360 | { |
Dragan Dosen | 75bc6d3 | 2019-05-07 15:25:25 +0200 | [diff] [blame] | 361 | if (!t) |
| 362 | return; |
| 363 | |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 364 | task_unlink_wq(t); |
| 365 | /* We don't have to explicitely remove from the run queue. |
| 366 | * If we are in the runqueue, the test below will set t->process |
| 367 | * to NULL, and the task will be free'd when it'll be its turn |
| 368 | * to run. |
| 369 | */ |
| 370 | |
Olivier Houchard | 9b36cb4 | 2018-05-04 15:46:16 +0200 | [diff] [blame] | 371 | /* There's no need to protect t->state with a lock, as the task |
| 372 | * has to run on the current thread. |
| 373 | */ |
Willy Tarreau | d022e9c | 2019-09-24 08:25:15 +0200 | [diff] [blame] | 374 | if (t == sched->current || !(t->state & (TASK_QUEUED | TASK_RUNNING))) |
Olivier Houchard | 9b36cb4 | 2018-05-04 15:46:16 +0200 | [diff] [blame] | 375 | __task_free(t); |
| 376 | else |
| 377 | t->process = NULL; |
| 378 | } |
| 379 | |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 380 | /* Should only be called by the thread responsible for the tasklet */ |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 381 | static inline void tasklet_free(struct tasklet *tl) |
| 382 | { |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 383 | if (!LIST_ISEMPTY(&tl->list)) { |
| 384 | LIST_DEL(&tl->list); |
| 385 | _HA_ATOMIC_SUB(&tasks_run_queue, 1); |
Olivier Houchard | 09e498f | 2018-12-24 14:03:10 +0100 | [diff] [blame] | 386 | } |
Olivier Houchard | dcd6f3a | 2018-06-08 17:08:19 +0200 | [diff] [blame] | 387 | |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 388 | pool_free(pool_head_tasklet, tl); |
| 389 | if (unlikely(stopping)) |
| 390 | pool_flush(pool_head_tasklet); |
| 391 | } |
| 392 | |
Olivier Houchard | ff1e9f3 | 2019-09-20 17:18:35 +0200 | [diff] [blame] | 393 | static inline void tasklet_set_tid(struct tasklet *tl, int tid) |
| 394 | { |
| 395 | tl->tid = tid; |
| 396 | } |
| 397 | |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 398 | void __task_queue(struct task *task, struct eb_root *wq); |
| 399 | |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 400 | /* Place <task> into the wait queue, where it may already be. If the expiration |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 401 | * timer is infinite, do nothing and rely on wake_expired_task to clean up. |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 402 | * If the task is bound to a single thread, it's assumed to be bound to the |
| 403 | * current thread's queue and is queued without locking. Otherwise it's queued |
| 404 | * into the global wait queue, protected by locks. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 405 | */ |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 406 | static inline void task_queue(struct task *task) |
| 407 | { |
| 408 | /* If we already have a place in the wait queue no later than the |
| 409 | * timeout we're trying to set, we'll stay there, because it is very |
| 410 | * unlikely that we will reach the timeout anyway. If the timeout |
| 411 | * has been disabled, it's useless to leave the queue as well. We'll |
| 412 | * rely on wake_expired_tasks() to catch the node and move it to the |
| 413 | * proper place should it ever happen. Finally we only add the task |
| 414 | * to the queue if it was not there or if it was further than what |
| 415 | * we want. |
| 416 | */ |
| 417 | if (!tick_isset(task->expire)) |
| 418 | return; |
| 419 | |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 420 | #ifdef USE_THREAD |
| 421 | if (atleast2(task->thread_mask)) { |
Willy Tarreau | ef28dc1 | 2019-05-28 18:48:07 +0200 | [diff] [blame] | 422 | HA_RWLOCK_WRLOCK(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 423 | if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key)) |
| 424 | __task_queue(task, &timers); |
Willy Tarreau | ef28dc1 | 2019-05-28 18:48:07 +0200 | [diff] [blame] | 425 | HA_RWLOCK_WRUNLOCK(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 426 | } else |
| 427 | #endif |
| 428 | { |
| 429 | if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key)) |
Willy Tarreau | d022e9c | 2019-09-24 08:25:15 +0200 | [diff] [blame] | 430 | __task_queue(task, &sched->timers); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 431 | } |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 432 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 433 | |
Willy Tarreau | 26e4881 | 2011-07-25 14:30:42 +0200 | [diff] [blame] | 434 | /* Ensure <task> will be woken up at most at <when>. If the task is already in |
| 435 | * the run queue (but not running), nothing is done. It may be used that way |
| 436 | * with a delay : task_schedule(task, tick_add(now_ms, delay)); |
| 437 | */ |
| 438 | static inline void task_schedule(struct task *task, int when) |
| 439 | { |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 440 | /* TODO: mthread, check if there is no tisk with this test */ |
Willy Tarreau | 26e4881 | 2011-07-25 14:30:42 +0200 | [diff] [blame] | 441 | if (task_in_rq(task)) |
| 442 | return; |
| 443 | |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 444 | #ifdef USE_THREAD |
| 445 | if (atleast2(task->thread_mask)) { |
Willy Tarreau | ef28dc1 | 2019-05-28 18:48:07 +0200 | [diff] [blame] | 446 | /* FIXME: is it really needed to lock the WQ during the check ? */ |
| 447 | HA_RWLOCK_WRLOCK(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 448 | if (task_in_wq(task)) |
| 449 | when = tick_first(when, task->expire); |
| 450 | |
| 451 | task->expire = when; |
| 452 | if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key)) |
| 453 | __task_queue(task, &timers); |
Willy Tarreau | ef28dc1 | 2019-05-28 18:48:07 +0200 | [diff] [blame] | 454 | HA_RWLOCK_WRUNLOCK(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 455 | } else |
| 456 | #endif |
| 457 | { |
| 458 | if (task_in_wq(task)) |
| 459 | when = tick_first(when, task->expire); |
Willy Tarreau | 26e4881 | 2011-07-25 14:30:42 +0200 | [diff] [blame] | 460 | |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 461 | task->expire = when; |
| 462 | if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key)) |
Willy Tarreau | d022e9c | 2019-09-24 08:25:15 +0200 | [diff] [blame] | 463 | __task_queue(task, &sched->timers); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 464 | } |
Willy Tarreau | 26e4881 | 2011-07-25 14:30:42 +0200 | [diff] [blame] | 465 | } |
| 466 | |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 467 | /* This function register a new signal. "lua" is the current lua |
| 468 | * execution context. It contains a pointer to the associated task. |
| 469 | * "link" is a list head attached to an other task that must be wake |
| 470 | * the lua task if an event occurs. This is useful with external |
| 471 | * events like TCP I/O or sleep functions. This funcion allocate |
| 472 | * memory for the signal. |
| 473 | */ |
| 474 | static inline struct notification *notification_new(struct list *purge, struct list *event, struct task *wakeup) |
| 475 | { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 476 | struct notification *com = pool_alloc(pool_head_notification); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 477 | if (!com) |
| 478 | return NULL; |
| 479 | LIST_ADDQ(purge, &com->purge_me); |
| 480 | LIST_ADDQ(event, &com->wake_me); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 481 | HA_SPIN_INIT(&com->lock); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 482 | com->task = wakeup; |
| 483 | return com; |
| 484 | } |
| 485 | |
| 486 | /* This function purge all the pending signals when the LUA execution |
| 487 | * is finished. This prevent than a coprocess try to wake a deleted |
| 488 | * task. This function remove the memory associated to the signal. |
Thierry FOURNIER | d5b7983 | 2017-12-10 17:14:07 +0100 | [diff] [blame] | 489 | * The purge list is not locked because it is owned by only one |
| 490 | * process. before browsing this list, the caller must ensure to be |
| 491 | * the only one browser. |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 492 | */ |
| 493 | static inline void notification_purge(struct list *purge) |
| 494 | { |
| 495 | struct notification *com, *back; |
| 496 | |
| 497 | /* Delete all pending communication signals. */ |
| 498 | list_for_each_entry_safe(com, back, purge, purge_me) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 499 | HA_SPIN_LOCK(NOTIF_LOCK, &com->lock); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 500 | LIST_DEL(&com->purge_me); |
Thierry FOURNIER | 738a6d7 | 2017-07-17 00:14:07 +0200 | [diff] [blame] | 501 | if (!com->task) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 502 | HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock); |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 503 | pool_free(pool_head_notification, com); |
Thierry FOURNIER | 738a6d7 | 2017-07-17 00:14:07 +0200 | [diff] [blame] | 504 | continue; |
| 505 | } |
| 506 | com->task = NULL; |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 507 | HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 508 | } |
| 509 | } |
| 510 | |
Thierry FOURNIER | cb14688 | 2017-12-10 17:10:57 +0100 | [diff] [blame] | 511 | /* In some cases, the disconnected notifications must be cleared. |
| 512 | * This function just release memory blocs. The purge list is not |
| 513 | * locked because it is owned by only one process. Before browsing |
| 514 | * this list, the caller must ensure to be the only one browser. |
| 515 | * The "com" is not locked because when com->task is NULL, the |
| 516 | * notification is no longer used. |
| 517 | */ |
| 518 | static inline void notification_gc(struct list *purge) |
| 519 | { |
| 520 | struct notification *com, *back; |
| 521 | |
| 522 | /* Delete all pending communication signals. */ |
| 523 | list_for_each_entry_safe (com, back, purge, purge_me) { |
| 524 | if (com->task) |
| 525 | continue; |
| 526 | LIST_DEL(&com->purge_me); |
| 527 | pool_free(pool_head_notification, com); |
| 528 | } |
| 529 | } |
| 530 | |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 531 | /* This function sends signals. It wakes all the tasks attached |
| 532 | * to a list head, and remove the signal, and free the used |
Thierry FOURNIER | d5b7983 | 2017-12-10 17:14:07 +0100 | [diff] [blame] | 533 | * memory. The wake list is not locked because it is owned by |
| 534 | * only one process. before browsing this list, the caller must |
| 535 | * ensure to be the only one browser. |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 536 | */ |
| 537 | static inline void notification_wake(struct list *wake) |
| 538 | { |
| 539 | struct notification *com, *back; |
| 540 | |
| 541 | /* Wake task and delete all pending communication signals. */ |
| 542 | list_for_each_entry_safe(com, back, wake, wake_me) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 543 | HA_SPIN_LOCK(NOTIF_LOCK, &com->lock); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 544 | LIST_DEL(&com->wake_me); |
Thierry FOURNIER | 738a6d7 | 2017-07-17 00:14:07 +0200 | [diff] [blame] | 545 | if (!com->task) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 546 | HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock); |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 547 | pool_free(pool_head_notification, com); |
Thierry FOURNIER | 738a6d7 | 2017-07-17 00:14:07 +0200 | [diff] [blame] | 548 | continue; |
| 549 | } |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 550 | task_wakeup(com->task, TASK_WOKEN_MSG); |
Thierry FOURNIER | 738a6d7 | 2017-07-17 00:14:07 +0200 | [diff] [blame] | 551 | com->task = NULL; |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 552 | HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 553 | } |
| 554 | } |
| 555 | |
Thierry FOURNIER | 9d5422a | 2018-05-30 11:40:08 +0200 | [diff] [blame] | 556 | /* This function returns true is some notification are pending |
| 557 | */ |
| 558 | static inline int notification_registered(struct list *wake) |
| 559 | { |
| 560 | return !LIST_ISEMPTY(wake); |
| 561 | } |
| 562 | |
Olivier Houchard | cfbb3e6 | 2019-05-29 19:22:43 +0200 | [diff] [blame] | 563 | static inline int thread_has_tasks(void) |
| 564 | { |
| 565 | return (!!(global_tasks_mask & tid_bit) | |
Willy Tarreau | d022e9c | 2019-09-24 08:25:15 +0200 | [diff] [blame] | 566 | (sched->rqueue_size > 0) | |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 567 | !LIST_ISEMPTY(&sched->task_list) | !MT_LIST_ISEMPTY(&sched->shared_tasklet_list)); |
Olivier Houchard | cfbb3e6 | 2019-05-29 19:22:43 +0200 | [diff] [blame] | 568 | } |
| 569 | |
Willy Tarreau | 64e6012 | 2019-07-12 08:31:17 +0200 | [diff] [blame] | 570 | /* adds list item <item> to work list <work> and wake up the associated task */ |
Olivier Houchard | 859dc80 | 2019-08-08 15:47:21 +0200 | [diff] [blame] | 571 | static inline void work_list_add(struct work_list *work, struct mt_list *item) |
Willy Tarreau | 64e6012 | 2019-07-12 08:31:17 +0200 | [diff] [blame] | 572 | { |
Olivier Houchard | 859dc80 | 2019-08-08 15:47:21 +0200 | [diff] [blame] | 573 | MT_LIST_ADDQ(&work->head, item); |
Willy Tarreau | 64e6012 | 2019-07-12 08:31:17 +0200 | [diff] [blame] | 574 | task_wakeup(work->task, TASK_WOKEN_OTHER); |
| 575 | } |
| 576 | |
| 577 | struct work_list *work_list_create(int nbthread, |
| 578 | struct task *(*fct)(struct task *, void *, unsigned short), |
| 579 | void *arg); |
| 580 | |
| 581 | void work_list_destroy(struct work_list *work, int nbthread); |
| 582 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 583 | /* |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 584 | * This does 3 things : |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 585 | * - wake up all expired tasks |
| 586 | * - call all runnable tasks |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 587 | * - return the date of next event in <next> or eternity. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 588 | */ |
| 589 | |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 590 | void process_runnable_tasks(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 591 | |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 592 | /* |
| 593 | * Extract all expired timers from the timer queue, and wakes up all |
| 594 | * associated tasks. Returns the date of next event (or eternity). |
| 595 | */ |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 596 | int wake_expired_tasks(); |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 597 | |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 598 | /* |
| 599 | * Delete every tasks before running the master polling loop |
| 600 | */ |
| 601 | void mworker_cleantasks(); |
| 602 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 603 | #endif /* _PROTO_TASK_H */ |
| 604 | |
| 605 | /* |
| 606 | * Local variables: |
| 607 | * c-indent-level: 8 |
| 608 | * c-basic-offset: 8 |
| 609 | * End: |
| 610 | */ |