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 | { |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 231 | if (tl->tid == tid) { |
| 232 | if (LIST_ISEMPTY(&tl->list)) { |
| 233 | LIST_ADDQ(&task_per_thread[tl->tid].task_list, &tl->list); |
| 234 | _HA_ATOMIC_ADD(&tasks_run_queue, 1); |
| 235 | } |
| 236 | } else { |
| 237 | if (MT_LIST_ADDQ(&task_per_thread[tl->tid].shared_tasklet_list, (struct mt_list *)&tl->list) == 1) { |
| 238 | _HA_ATOMIC_ADD(&tasks_run_queue, 1); |
| 239 | if (sleeping_thread_mask & (1 << tl->tid)) { |
| 240 | _HA_ATOMIC_AND(&sleeping_thread_mask, ~(1 << tl->tid)); |
| 241 | wake_thread(tl->tid); |
| 242 | } |
Olivier Houchard | bba1a26 | 2019-09-24 14:55:28 +0200 | [diff] [blame] | 243 | } |
| 244 | } |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 245 | |
| 246 | } |
| 247 | |
Willy Tarreau | bd20a9d | 2019-06-14 18:05:54 +0200 | [diff] [blame] | 248 | /* Insert a tasklet into the tasklet list. If used with a plain task instead, |
| 249 | * the caller must update the task_list_size. |
| 250 | */ |
| 251 | static inline void tasklet_insert_into_tasklet_list(struct tasklet *tl) |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 252 | { |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 253 | _HA_ATOMIC_ADD(&tasks_run_queue, 1); |
| 254 | LIST_ADDQ(&sched->task_list, &tl->list); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 255 | } |
| 256 | |
Willy Tarreau | bd20a9d | 2019-06-14 18:05:54 +0200 | [diff] [blame] | 257 | /* Remove the tasklet from the tasklet list. The tasklet MUST already be there. |
| 258 | * If unsure, use tasklet_remove_from_tasklet_list() instead. If used with a |
| 259 | * plain task, the caller must update the task_list_size. |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 260 | * This should only be used by the thread that owns the tasklet, any other |
| 261 | * thread should use tasklet_cancel(). |
Willy Tarreau | e73256f | 2019-03-25 18:02:54 +0100 | [diff] [blame] | 262 | */ |
Willy Tarreau | 86eded6 | 2019-06-14 14:47:49 +0200 | [diff] [blame] | 263 | static inline void __tasklet_remove_from_tasklet_list(struct tasklet *t) |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 264 | { |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 265 | LIST_DEL_INIT(&t->list); |
| 266 | _HA_ATOMIC_SUB(&tasks_run_queue, 1); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 267 | } |
| 268 | |
Willy Tarreau | 86eded6 | 2019-06-14 14:47:49 +0200 | [diff] [blame] | 269 | static inline void tasklet_remove_from_tasklet_list(struct tasklet *t) |
Willy Tarreau | e73256f | 2019-03-25 18:02:54 +0100 | [diff] [blame] | 270 | { |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 271 | if (likely(!LIST_ISEMPTY(&t->list))) |
Willy Tarreau | 86eded6 | 2019-06-14 14:47:49 +0200 | [diff] [blame] | 272 | __tasklet_remove_from_tasklet_list(t); |
Willy Tarreau | e73256f | 2019-03-25 18:02:54 +0100 | [diff] [blame] | 273 | } |
| 274 | |
Willy Tarreau | ce44f12 | 2008-07-05 18:16:19 +0200 | [diff] [blame] | 275 | /* |
Willy Tarreau | a461318 | 2009-03-21 18:13:21 +0100 | [diff] [blame] | 276 | * Initialize a new task. The bare minimum is performed (queue pointers and |
| 277 | * state). The task is returned. This function should not be used outside of |
| 278 | * task_new(). |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 279 | */ |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 280 | 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] | 281 | { |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 282 | t->wq.node.leaf_p = NULL; |
| 283 | t->rq.node.leaf_p = NULL; |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 284 | t->state = TASK_SLEEPING; |
Willy Tarreau | f65610a | 2017-10-31 16:06:06 +0100 | [diff] [blame] | 285 | t->thread_mask = thread_mask; |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 286 | t->nice = 0; |
Willy Tarreau | 3884cba | 2009-03-28 17:54:35 +0100 | [diff] [blame] | 287 | t->calls = 0; |
Willy Tarreau | 9efd745 | 2018-05-31 14:48:54 +0200 | [diff] [blame] | 288 | t->call_date = 0; |
| 289 | t->cpu_time = 0; |
| 290 | t->lat_time = 0; |
Willy Tarreau | f421999 | 2017-07-24 17:52:58 +0200 | [diff] [blame] | 291 | t->expire = TICK_ETERNITY; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 292 | return t; |
| 293 | } |
| 294 | |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 295 | static inline void tasklet_init(struct tasklet *t) |
| 296 | { |
| 297 | t->nice = -32768; |
| 298 | t->calls = 0; |
| 299 | t->state = 0; |
Olivier Houchard | 9ddaf79 | 2018-07-19 16:02:16 +0200 | [diff] [blame] | 300 | t->process = NULL; |
Olivier Houchard | ff1e9f3 | 2019-09-20 17:18:35 +0200 | [diff] [blame] | 301 | t->tid = tid; |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 302 | LIST_INIT(&t->list); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 303 | } |
| 304 | |
| 305 | static inline struct tasklet *tasklet_new(void) |
| 306 | { |
| 307 | struct tasklet *t = pool_alloc(pool_head_tasklet); |
| 308 | |
| 309 | if (t) { |
| 310 | tasklet_init(t); |
| 311 | } |
| 312 | return t; |
| 313 | } |
| 314 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 315 | /* |
Willy Tarreau | a461318 | 2009-03-21 18:13:21 +0100 | [diff] [blame] | 316 | * Allocate and initialise a new task. The new task is returned, or NULL in |
| 317 | * case of lack of memory. The task count is incremented. Tasks should only |
| 318 | * be allocated this way, and must be freed using task_free(). |
| 319 | */ |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 320 | static inline struct task *task_new(unsigned long thread_mask) |
Willy Tarreau | a461318 | 2009-03-21 18:13:21 +0100 | [diff] [blame] | 321 | { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 322 | struct task *t = pool_alloc(pool_head_task); |
Willy Tarreau | a461318 | 2009-03-21 18:13:21 +0100 | [diff] [blame] | 323 | if (t) { |
Olivier Houchard | 4c283285 | 2019-03-08 18:48:47 +0100 | [diff] [blame] | 324 | _HA_ATOMIC_ADD(&nb_tasks, 1); |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 325 | task_init(t, thread_mask); |
Willy Tarreau | a461318 | 2009-03-21 18:13:21 +0100 | [diff] [blame] | 326 | } |
| 327 | return t; |
| 328 | } |
| 329 | |
| 330 | /* |
Willy Tarreau | 29bf96d | 2019-05-17 14:16:51 +0200 | [diff] [blame] | 331 | * Free a task. Its context must have been freed since it will be lost. The |
| 332 | * 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] | 333 | */ |
Olivier Houchard | 9b36cb4 | 2018-05-04 15:46:16 +0200 | [diff] [blame] | 334 | static inline void __task_free(struct task *t) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 335 | { |
Willy Tarreau | d022e9c | 2019-09-24 08:25:15 +0200 | [diff] [blame] | 336 | if (t == sched->current) { |
| 337 | sched->current = NULL; |
Willy Tarreau | 29bf96d | 2019-05-17 14:16:51 +0200 | [diff] [blame] | 338 | __ha_barrier_store(); |
| 339 | } |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 340 | pool_free(pool_head_task, t); |
Willy Tarreau | eb11889 | 2014-11-13 16:57:19 +0100 | [diff] [blame] | 341 | if (unlikely(stopping)) |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 342 | pool_flush(pool_head_task); |
Olivier Houchard | 4c283285 | 2019-03-08 18:48:47 +0100 | [diff] [blame] | 343 | _HA_ATOMIC_SUB(&nb_tasks, 1); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 344 | } |
| 345 | |
Willy Tarreau | f656279 | 2019-05-07 19:05:35 +0200 | [diff] [blame] | 346 | /* Destroys a task : it's unlinked from the wait queues and is freed if it's |
| 347 | * the current task or not queued otherwise it's marked to be freed by the |
| 348 | * scheduler. It does nothing if <t> is NULL. |
| 349 | */ |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 350 | static inline void task_destroy(struct task *t) |
Olivier Houchard | 9b36cb4 | 2018-05-04 15:46:16 +0200 | [diff] [blame] | 351 | { |
Dragan Dosen | 75bc6d3 | 2019-05-07 15:25:25 +0200 | [diff] [blame] | 352 | if (!t) |
| 353 | return; |
| 354 | |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 355 | task_unlink_wq(t); |
| 356 | /* We don't have to explicitely remove from the run queue. |
| 357 | * If we are in the runqueue, the test below will set t->process |
| 358 | * to NULL, and the task will be free'd when it'll be its turn |
| 359 | * to run. |
| 360 | */ |
| 361 | |
Olivier Houchard | 9b36cb4 | 2018-05-04 15:46:16 +0200 | [diff] [blame] | 362 | /* There's no need to protect t->state with a lock, as the task |
| 363 | * has to run on the current thread. |
| 364 | */ |
Willy Tarreau | d022e9c | 2019-09-24 08:25:15 +0200 | [diff] [blame] | 365 | if (t == sched->current || !(t->state & (TASK_QUEUED | TASK_RUNNING))) |
Olivier Houchard | 9b36cb4 | 2018-05-04 15:46:16 +0200 | [diff] [blame] | 366 | __task_free(t); |
| 367 | else |
| 368 | t->process = NULL; |
| 369 | } |
| 370 | |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 371 | /* Should only be called by the thread responsible for the tasklet */ |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 372 | static inline void tasklet_free(struct tasklet *tl) |
| 373 | { |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 374 | if (!LIST_ISEMPTY(&tl->list)) { |
| 375 | LIST_DEL(&tl->list); |
| 376 | _HA_ATOMIC_SUB(&tasks_run_queue, 1); |
Olivier Houchard | 09e498f | 2018-12-24 14:03:10 +0100 | [diff] [blame] | 377 | } |
Olivier Houchard | dcd6f3a | 2018-06-08 17:08:19 +0200 | [diff] [blame] | 378 | |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 379 | pool_free(pool_head_tasklet, tl); |
| 380 | if (unlikely(stopping)) |
| 381 | pool_flush(pool_head_tasklet); |
| 382 | } |
| 383 | |
Olivier Houchard | ff1e9f3 | 2019-09-20 17:18:35 +0200 | [diff] [blame] | 384 | static inline void tasklet_set_tid(struct tasklet *tl, int tid) |
| 385 | { |
| 386 | tl->tid = tid; |
| 387 | } |
| 388 | |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 389 | void __task_queue(struct task *task, struct eb_root *wq); |
| 390 | |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 391 | /* 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] | 392 | * 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] | 393 | * If the task is bound to a single thread, it's assumed to be bound to the |
| 394 | * current thread's queue and is queued without locking. Otherwise it's queued |
| 395 | * into the global wait queue, protected by locks. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 396 | */ |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 397 | static inline void task_queue(struct task *task) |
| 398 | { |
| 399 | /* If we already have a place in the wait queue no later than the |
| 400 | * timeout we're trying to set, we'll stay there, because it is very |
| 401 | * unlikely that we will reach the timeout anyway. If the timeout |
| 402 | * has been disabled, it's useless to leave the queue as well. We'll |
| 403 | * rely on wake_expired_tasks() to catch the node and move it to the |
| 404 | * proper place should it ever happen. Finally we only add the task |
| 405 | * to the queue if it was not there or if it was further than what |
| 406 | * we want. |
| 407 | */ |
| 408 | if (!tick_isset(task->expire)) |
| 409 | return; |
| 410 | |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 411 | #ifdef USE_THREAD |
| 412 | if (atleast2(task->thread_mask)) { |
Willy Tarreau | ef28dc1 | 2019-05-28 18:48:07 +0200 | [diff] [blame] | 413 | HA_RWLOCK_WRLOCK(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 414 | if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key)) |
| 415 | __task_queue(task, &timers); |
Willy Tarreau | ef28dc1 | 2019-05-28 18:48:07 +0200 | [diff] [blame] | 416 | HA_RWLOCK_WRUNLOCK(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 417 | } else |
| 418 | #endif |
| 419 | { |
| 420 | 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] | 421 | __task_queue(task, &sched->timers); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 422 | } |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 423 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 424 | |
Willy Tarreau | 26e4881 | 2011-07-25 14:30:42 +0200 | [diff] [blame] | 425 | /* Ensure <task> will be woken up at most at <when>. If the task is already in |
| 426 | * the run queue (but not running), nothing is done. It may be used that way |
| 427 | * with a delay : task_schedule(task, tick_add(now_ms, delay)); |
| 428 | */ |
| 429 | static inline void task_schedule(struct task *task, int when) |
| 430 | { |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 431 | /* TODO: mthread, check if there is no tisk with this test */ |
Willy Tarreau | 26e4881 | 2011-07-25 14:30:42 +0200 | [diff] [blame] | 432 | if (task_in_rq(task)) |
| 433 | return; |
| 434 | |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 435 | #ifdef USE_THREAD |
| 436 | if (atleast2(task->thread_mask)) { |
Willy Tarreau | ef28dc1 | 2019-05-28 18:48:07 +0200 | [diff] [blame] | 437 | /* FIXME: is it really needed to lock the WQ during the check ? */ |
| 438 | HA_RWLOCK_WRLOCK(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 439 | if (task_in_wq(task)) |
| 440 | when = tick_first(when, task->expire); |
| 441 | |
| 442 | task->expire = when; |
| 443 | if (!task_in_wq(task) || tick_is_lt(task->expire, task->wq.key)) |
| 444 | __task_queue(task, &timers); |
Willy Tarreau | ef28dc1 | 2019-05-28 18:48:07 +0200 | [diff] [blame] | 445 | HA_RWLOCK_WRUNLOCK(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 446 | } else |
| 447 | #endif |
| 448 | { |
| 449 | if (task_in_wq(task)) |
| 450 | when = tick_first(when, task->expire); |
Willy Tarreau | 26e4881 | 2011-07-25 14:30:42 +0200 | [diff] [blame] | 451 | |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 452 | task->expire = when; |
| 453 | 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] | 454 | __task_queue(task, &sched->timers); |
Willy Tarreau | b20aa9e | 2018-10-15 14:52:21 +0200 | [diff] [blame] | 455 | } |
Willy Tarreau | 26e4881 | 2011-07-25 14:30:42 +0200 | [diff] [blame] | 456 | } |
| 457 | |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 458 | /* This function register a new signal. "lua" is the current lua |
| 459 | * execution context. It contains a pointer to the associated task. |
| 460 | * "link" is a list head attached to an other task that must be wake |
| 461 | * the lua task if an event occurs. This is useful with external |
| 462 | * events like TCP I/O or sleep functions. This funcion allocate |
| 463 | * memory for the signal. |
| 464 | */ |
| 465 | static inline struct notification *notification_new(struct list *purge, struct list *event, struct task *wakeup) |
| 466 | { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 467 | struct notification *com = pool_alloc(pool_head_notification); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 468 | if (!com) |
| 469 | return NULL; |
| 470 | LIST_ADDQ(purge, &com->purge_me); |
| 471 | LIST_ADDQ(event, &com->wake_me); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 472 | HA_SPIN_INIT(&com->lock); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 473 | com->task = wakeup; |
| 474 | return com; |
| 475 | } |
| 476 | |
| 477 | /* This function purge all the pending signals when the LUA execution |
| 478 | * is finished. This prevent than a coprocess try to wake a deleted |
| 479 | * task. This function remove the memory associated to the signal. |
Thierry FOURNIER | d5b7983 | 2017-12-10 17:14:07 +0100 | [diff] [blame] | 480 | * The purge list is not locked because it is owned by only one |
| 481 | * process. before browsing this list, the caller must ensure to be |
| 482 | * the only one browser. |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 483 | */ |
| 484 | static inline void notification_purge(struct list *purge) |
| 485 | { |
| 486 | struct notification *com, *back; |
| 487 | |
| 488 | /* Delete all pending communication signals. */ |
| 489 | list_for_each_entry_safe(com, back, purge, purge_me) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 490 | HA_SPIN_LOCK(NOTIF_LOCK, &com->lock); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 491 | LIST_DEL(&com->purge_me); |
Thierry FOURNIER | 738a6d7 | 2017-07-17 00:14:07 +0200 | [diff] [blame] | 492 | if (!com->task) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 493 | HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock); |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 494 | pool_free(pool_head_notification, com); |
Thierry FOURNIER | 738a6d7 | 2017-07-17 00:14:07 +0200 | [diff] [blame] | 495 | continue; |
| 496 | } |
| 497 | com->task = NULL; |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 498 | HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 499 | } |
| 500 | } |
| 501 | |
Thierry FOURNIER | cb14688 | 2017-12-10 17:10:57 +0100 | [diff] [blame] | 502 | /* In some cases, the disconnected notifications must be cleared. |
| 503 | * This function just release memory blocs. The purge list is not |
| 504 | * locked because it is owned by only one process. Before browsing |
| 505 | * this list, the caller must ensure to be the only one browser. |
| 506 | * The "com" is not locked because when com->task is NULL, the |
| 507 | * notification is no longer used. |
| 508 | */ |
| 509 | static inline void notification_gc(struct list *purge) |
| 510 | { |
| 511 | struct notification *com, *back; |
| 512 | |
| 513 | /* Delete all pending communication signals. */ |
| 514 | list_for_each_entry_safe (com, back, purge, purge_me) { |
| 515 | if (com->task) |
| 516 | continue; |
| 517 | LIST_DEL(&com->purge_me); |
| 518 | pool_free(pool_head_notification, com); |
| 519 | } |
| 520 | } |
| 521 | |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 522 | /* This function sends signals. It wakes all the tasks attached |
| 523 | * to a list head, and remove the signal, and free the used |
Thierry FOURNIER | d5b7983 | 2017-12-10 17:14:07 +0100 | [diff] [blame] | 524 | * memory. The wake list is not locked because it is owned by |
| 525 | * only one process. before browsing this list, the caller must |
| 526 | * ensure to be the only one browser. |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 527 | */ |
| 528 | static inline void notification_wake(struct list *wake) |
| 529 | { |
| 530 | struct notification *com, *back; |
| 531 | |
| 532 | /* Wake task and delete all pending communication signals. */ |
| 533 | list_for_each_entry_safe(com, back, wake, wake_me) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 534 | HA_SPIN_LOCK(NOTIF_LOCK, &com->lock); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 535 | LIST_DEL(&com->wake_me); |
Thierry FOURNIER | 738a6d7 | 2017-07-17 00:14:07 +0200 | [diff] [blame] | 536 | if (!com->task) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 537 | HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock); |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 538 | pool_free(pool_head_notification, com); |
Thierry FOURNIER | 738a6d7 | 2017-07-17 00:14:07 +0200 | [diff] [blame] | 539 | continue; |
| 540 | } |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 541 | task_wakeup(com->task, TASK_WOKEN_MSG); |
Thierry FOURNIER | 738a6d7 | 2017-07-17 00:14:07 +0200 | [diff] [blame] | 542 | com->task = NULL; |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 543 | HA_SPIN_UNLOCK(NOTIF_LOCK, &com->lock); |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 544 | } |
| 545 | } |
| 546 | |
Thierry FOURNIER | 9d5422a | 2018-05-30 11:40:08 +0200 | [diff] [blame] | 547 | /* This function returns true is some notification are pending |
| 548 | */ |
| 549 | static inline int notification_registered(struct list *wake) |
| 550 | { |
| 551 | return !LIST_ISEMPTY(wake); |
| 552 | } |
| 553 | |
Olivier Houchard | cfbb3e6 | 2019-05-29 19:22:43 +0200 | [diff] [blame] | 554 | static inline int thread_has_tasks(void) |
| 555 | { |
| 556 | return (!!(global_tasks_mask & tid_bit) | |
Willy Tarreau | d022e9c | 2019-09-24 08:25:15 +0200 | [diff] [blame] | 557 | (sched->rqueue_size > 0) | |
Olivier Houchard | 0691046 | 2019-10-11 16:35:01 +0200 | [diff] [blame] | 558 | !LIST_ISEMPTY(&sched->task_list) | !MT_LIST_ISEMPTY(&sched->shared_tasklet_list)); |
Olivier Houchard | cfbb3e6 | 2019-05-29 19:22:43 +0200 | [diff] [blame] | 559 | } |
| 560 | |
Willy Tarreau | 64e6012 | 2019-07-12 08:31:17 +0200 | [diff] [blame] | 561 | /* 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] | 562 | 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] | 563 | { |
Olivier Houchard | 859dc80 | 2019-08-08 15:47:21 +0200 | [diff] [blame] | 564 | MT_LIST_ADDQ(&work->head, item); |
Willy Tarreau | 64e6012 | 2019-07-12 08:31:17 +0200 | [diff] [blame] | 565 | task_wakeup(work->task, TASK_WOKEN_OTHER); |
| 566 | } |
| 567 | |
| 568 | struct work_list *work_list_create(int nbthread, |
| 569 | struct task *(*fct)(struct task *, void *, unsigned short), |
| 570 | void *arg); |
| 571 | |
| 572 | void work_list_destroy(struct work_list *work, int nbthread); |
| 573 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 574 | /* |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 575 | * This does 3 things : |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 576 | * - wake up all expired tasks |
| 577 | * - call all runnable tasks |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 578 | * - return the date of next event in <next> or eternity. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 579 | */ |
| 580 | |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 581 | void process_runnable_tasks(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 582 | |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 583 | /* |
| 584 | * Extract all expired timers from the timer queue, and wakes up all |
| 585 | * associated tasks. Returns the date of next event (or eternity). |
| 586 | */ |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 587 | int wake_expired_tasks(); |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 588 | |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 589 | /* |
| 590 | * Delete every tasks before running the master polling loop |
| 591 | */ |
| 592 | void mworker_cleantasks(); |
| 593 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 594 | #endif /* _PROTO_TASK_H */ |
| 595 | |
| 596 | /* |
| 597 | * Local variables: |
| 598 | * c-indent-level: 8 |
| 599 | * c-basic-offset: 8 |
| 600 | * End: |
| 601 | */ |