Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Task management functions. |
| 3 | * |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 4 | * Copyright 2000-2009 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
Willy Tarreau | 87bed62 | 2009-03-08 22:25:28 +0100 | [diff] [blame] | 13 | #include <string.h> |
| 14 | |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 15 | #include <common/config.h> |
Willy Tarreau | c6ca1a0 | 2007-05-13 19:43:47 +0200 | [diff] [blame] | 16 | #include <common/memory.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 17 | #include <common/mini-clist.h> |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 18 | #include <common/standard.h> |
Willy Tarreau | a6a6a93 | 2007-04-28 22:40:08 +0200 | [diff] [blame] | 19 | #include <common/time.h> |
Willy Tarreau | 8d38805 | 2017-11-05 13:34:20 +0100 | [diff] [blame] | 20 | #include <eb32sctree.h> |
Willy Tarreau | 45cb4fb | 2009-10-26 21:10:04 +0100 | [diff] [blame] | 21 | #include <eb32tree.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 22 | |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 23 | #include <proto/proxy.h> |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 24 | #include <proto/stream.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 25 | #include <proto/task.h> |
Olivier Houchard | 79321b9 | 2018-07-26 17:55:11 +0200 | [diff] [blame] | 26 | #include <proto/fd.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 27 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 28 | struct pool_head *pool_head_task; |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 29 | struct pool_head *pool_head_tasklet; |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 30 | |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 31 | /* This is the memory pool containing all the signal structs. These |
| 32 | * struct are used to store each requiered signal between two tasks. |
| 33 | */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 34 | struct pool_head *pool_head_notification; |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 35 | |
Willy Tarreau | a461318 | 2009-03-21 18:13:21 +0100 | [diff] [blame] | 36 | unsigned int nb_tasks = 0; |
Olivier Houchard | 9b03c0c | 2018-07-26 18:45:22 +0200 | [diff] [blame] | 37 | volatile unsigned long active_tasks_mask = 0; /* Mask of threads with active tasks */ |
Olivier Houchard | eba0c0b | 2018-07-26 18:53:28 +0200 | [diff] [blame] | 38 | volatile unsigned long global_tasks_mask = 0; /* Mask of threads with tasks in the global runqueue */ |
Christopher Faulet | 34c5cc9 | 2016-12-06 09:15:30 +0100 | [diff] [blame] | 39 | unsigned int tasks_run_queue = 0; |
| 40 | unsigned int tasks_run_queue_cur = 0; /* copy of the run queue size */ |
Willy Tarreau | c7bdf09 | 2009-03-21 18:33:52 +0100 | [diff] [blame] | 41 | unsigned int nb_tasks_cur = 0; /* copy of the tasks count */ |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 42 | unsigned int niced_tasks = 0; /* number of niced tasks in the run queue */ |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 43 | |
Willy Tarreau | 6d1222c | 2017-11-26 10:08:06 +0100 | [diff] [blame] | 44 | THREAD_LOCAL struct task *curr_task = NULL; /* task currently running or NULL */ |
Olivier Houchard | 9b36cb4 | 2018-05-04 15:46:16 +0200 | [diff] [blame] | 45 | THREAD_LOCAL struct eb32sc_node *rq_next = NULL; /* Next task to be potentially run */ |
Willy Tarreau | 6d1222c | 2017-11-26 10:08:06 +0100 | [diff] [blame] | 46 | |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 47 | struct list task_list[MAX_THREADS]; /* List of tasks to be run, mixing tasks and tasklets */ |
| 48 | int task_list_size[MAX_THREADS]; /* Number of tasks in the task_list */ |
| 49 | |
Willy Tarreau | a24d1d0 | 2017-11-26 10:19:16 +0100 | [diff] [blame] | 50 | __decl_hathreads(HA_SPINLOCK_T __attribute__((aligned(64))) rq_lock); /* spin lock related to run queue */ |
| 51 | __decl_hathreads(HA_SPINLOCK_T __attribute__((aligned(64))) wq_lock); /* spin lock related to wait queue */ |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 52 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 53 | static struct eb_root timers; /* sorted timers tree */ |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 54 | #ifdef USE_THREAD |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 55 | struct eb_root rqueue; /* tree constituting the run queue */ |
Olivier Houchard | 77551ee | 2018-07-26 15:59:38 +0200 | [diff] [blame] | 56 | int global_rqueue_size; /* Number of element sin the global runqueue */ |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 57 | #endif |
| 58 | struct eb_root rqueue_local[MAX_THREADS]; /* tree constituting the per-thread run queue */ |
Olivier Houchard | 77551ee | 2018-07-26 15:59:38 +0200 | [diff] [blame] | 59 | int rqueue_size[MAX_THREADS]; /* Number of elements in the per-thread run queue */ |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 60 | static unsigned int rqueue_ticks; /* insertion count */ |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 61 | |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 62 | /* Puts the task <t> in run queue at a position depending on t->nice. <t> is |
| 63 | * returned. The nice value assigns boosts in 32th of the run queue size. A |
Christopher Faulet | 34c5cc9 | 2016-12-06 09:15:30 +0100 | [diff] [blame] | 64 | * nice value of -1024 sets the task to -tasks_run_queue*32, while a nice value |
| 65 | * of 1024 sets the task to tasks_run_queue*32. The state flags are cleared, so |
| 66 | * the caller will have to set its flags after this call. |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 67 | * The task must not already be in the run queue. If unsure, use the safer |
| 68 | * task_wakeup() function. |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 69 | */ |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 70 | void __task_wakeup(struct task *t, struct eb_root *root) |
Willy Tarreau | e33aece | 2007-04-30 13:15:14 +0200 | [diff] [blame] | 71 | { |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 72 | void *expected = NULL; |
| 73 | int *rq_size; |
Willy Tarreau | 85d9b84 | 2018-07-27 17:14:41 +0200 | [diff] [blame] | 74 | unsigned long __maybe_unused old_active_mask; |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 75 | |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 76 | #ifdef USE_THREAD |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 77 | if (root == &rqueue) { |
| 78 | rq_size = &global_rqueue_size; |
| 79 | HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 80 | } else |
| 81 | #endif |
| 82 | { |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 83 | int nb = root - &rqueue_local[0]; |
| 84 | rq_size = &rqueue_size[nb]; |
| 85 | } |
| 86 | /* Make sure if the task isn't in the runqueue, nobody inserts it |
| 87 | * in the meanwhile. |
| 88 | */ |
| 89 | redo: |
David Carlier | cc0a957 | 2018-06-05 10:41:03 +0000 | [diff] [blame] | 90 | if (unlikely(!HA_ATOMIC_CAS(&t->rq.node.leaf_p, &expected, (void *)0x1))) { |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 91 | #ifdef USE_THREAD |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 92 | if (root == &rqueue) |
| 93 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 94 | #endif |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 95 | return; |
| 96 | } |
| 97 | /* There's a small race condition, when running a task, the thread |
| 98 | * first sets TASK_RUNNING, and then unlink the task. |
| 99 | * If an another thread calls task_wakeup() for the same task, |
| 100 | * it may set t->state before TASK_RUNNING was set, and then try |
| 101 | * to set t->rq.nod.leaf_p after it was unlinked. |
| 102 | * To make sure it is not a problem, we check if TASK_RUNNING is set |
| 103 | * again. If it is, we unset t->rq.node.leaf_p. |
| 104 | * We then check for TASK_RUNNING a third time. If it is still there, |
| 105 | * then we can give up, the task will be re-queued later if it needs |
| 106 | * to be. If it's not there, and there is still something in t->state, |
| 107 | * then we have to requeue. |
| 108 | */ |
| 109 | if (((volatile unsigned short)(t->state)) & TASK_RUNNING) { |
| 110 | unsigned short state; |
| 111 | t->rq.node.leaf_p = NULL; |
| 112 | __ha_barrier_store(); |
| 113 | |
| 114 | state = (volatile unsigned short)(t->state); |
| 115 | if (unlikely(state != 0 && !(state & TASK_RUNNING))) |
| 116 | goto redo; |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 117 | #ifdef USE_THREAD |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 118 | if (root == &rqueue) |
| 119 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 120 | #endif |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 121 | return; |
| 122 | } |
| 123 | HA_ATOMIC_ADD(&tasks_run_queue, 1); |
Olivier Houchard | c4aac9e | 2018-07-26 15:25:49 +0200 | [diff] [blame] | 124 | #ifdef USE_THREAD |
| 125 | if (root == &rqueue) { |
| 126 | HA_ATOMIC_OR(&global_tasks_mask, t->thread_mask); |
| 127 | __ha_barrier_store(); |
| 128 | } |
| 129 | #endif |
Olivier Houchard | 79321b9 | 2018-07-26 17:55:11 +0200 | [diff] [blame] | 130 | old_active_mask = active_tasks_mask; |
Willy Tarreau | 189ea85 | 2018-07-26 15:16:43 +0200 | [diff] [blame] | 131 | HA_ATOMIC_OR(&active_tasks_mask, t->thread_mask); |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 132 | t->rq.key = HA_ATOMIC_ADD(&rqueue_ticks, 1); |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 133 | |
| 134 | if (likely(t->nice)) { |
| 135 | int offset; |
| 136 | |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 137 | HA_ATOMIC_ADD(&niced_tasks, 1); |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 138 | if (likely(t->nice > 0)) |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 139 | offset = (unsigned)((*rq_size * (unsigned int)t->nice) / 32U); |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 140 | else |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 141 | offset = -(unsigned)((*rq_size * (unsigned int)-t->nice) / 32U); |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 142 | t->rq.key += offset; |
Willy Tarreau | 91e9993 | 2008-06-30 07:51:00 +0200 | [diff] [blame] | 143 | } |
| 144 | |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 145 | eb32sc_insert(root, &t->rq, t->thread_mask); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 146 | #ifdef USE_THREAD |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 147 | if (root == &rqueue) { |
| 148 | global_rqueue_size++; |
Olivier Houchard | 76e4518 | 2018-07-26 16:19:58 +0200 | [diff] [blame] | 149 | HA_ATOMIC_OR(&t->state, TASK_GLOBAL); |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 150 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 151 | } else |
| 152 | #endif |
| 153 | { |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 154 | int nb = root - &rqueue_local[0]; |
| 155 | |
| 156 | rqueue_size[nb]++; |
| 157 | } |
Willy Tarreau | 85d9b84 | 2018-07-27 17:14:41 +0200 | [diff] [blame] | 158 | #ifdef USE_THREAD |
Olivier Houchard | 79321b9 | 2018-07-26 17:55:11 +0200 | [diff] [blame] | 159 | /* If all threads that are supposed to handle this task are sleeping, |
| 160 | * wake one. |
| 161 | */ |
| 162 | if ((((t->thread_mask & all_threads_mask) & sleeping_thread_mask) == |
| 163 | (t->thread_mask & all_threads_mask)) && |
| 164 | !(t->thread_mask & old_active_mask)) |
| 165 | wake_thread(my_ffsl((t->thread_mask & all_threads_mask) &~ tid_bit) - 1); |
Willy Tarreau | 85d9b84 | 2018-07-27 17:14:41 +0200 | [diff] [blame] | 166 | #endif |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 167 | return; |
Willy Tarreau | e33aece | 2007-04-30 13:15:14 +0200 | [diff] [blame] | 168 | } |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 169 | |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 170 | /* |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 171 | * __task_queue() |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 172 | * |
| 173 | * Inserts a task into the wait queue at the position given by its expiration |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 174 | * date. It does not matter if the task was already in the wait queue or not, |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 175 | * as it will be unlinked. The task must not have an infinite expiration timer. |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 176 | * Last, tasks must not be queued further than the end of the tree, which is |
| 177 | * between <now_ms> and <now_ms> + 2^31 ms (now+24days in 32bit). |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 178 | * |
| 179 | * This function should not be used directly, it is meant to be called by the |
| 180 | * inline version of task_queue() which performs a few cheap preliminary tests |
| 181 | * before deciding to call __task_queue(). |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 182 | */ |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 183 | void __task_queue(struct task *task) |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 184 | { |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 185 | if (likely(task_in_wq(task))) |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 186 | __task_unlink_wq(task); |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 187 | |
| 188 | /* the task is not in the queue now */ |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 189 | task->wq.key = task->expire; |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 190 | #ifdef DEBUG_CHECK_INVALID_EXPIRATION_DATES |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 191 | if (tick_is_lt(task->wq.key, now_ms)) |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 192 | /* we're queuing too far away or in the past (most likely) */ |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 193 | return; |
Willy Tarreau | 28c41a4 | 2008-06-29 17:00:59 +0200 | [diff] [blame] | 194 | #endif |
Willy Tarreau | ce44f12 | 2008-07-05 18:16:19 +0200 | [diff] [blame] | 195 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 196 | eb32_insert(&timers, &task->wq); |
SaVaGe | 1d7a420 | 2009-10-06 18:53:37 +0300 | [diff] [blame] | 197 | |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 198 | return; |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 199 | } |
| 200 | |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 201 | /* |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 202 | * Extract all expired timers from the timer queue, and wakes up all |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 203 | * associated tasks. Returns the date of next event (or eternity). |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 204 | */ |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 205 | int wake_expired_tasks() |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 206 | { |
Willy Tarreau | 96bcfd7 | 2007-04-29 10:41:56 +0200 | [diff] [blame] | 207 | struct task *task; |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 208 | struct eb32_node *eb; |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 209 | int ret = TICK_ETERNITY; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 210 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 211 | while (1) { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 212 | HA_SPIN_LOCK(TASK_WQ_LOCK, &wq_lock); |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 213 | lookup_next: |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 214 | eb = eb32_lookup_ge(&timers, now_ms - TIMER_LOOK_BACK); |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 215 | if (!eb) { |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 216 | /* we might have reached the end of the tree, typically because |
| 217 | * <now_ms> is in the first half and we're first scanning the last |
| 218 | * half. Let's loop back to the beginning of the tree now. |
| 219 | */ |
| 220 | eb = eb32_first(&timers); |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 221 | if (likely(!eb)) |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 222 | break; |
| 223 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 224 | |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 225 | if (tick_is_lt(now_ms, eb->key)) { |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 226 | /* timer not expired yet, revisit it later */ |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 227 | ret = eb->key; |
| 228 | break; |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 229 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 230 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 231 | /* timer looks expired, detach it from the queue */ |
| 232 | task = eb32_entry(eb, struct task, wq); |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 233 | __task_unlink_wq(task); |
Willy Tarreau | 4136522 | 2009-03-08 07:46:27 +0100 | [diff] [blame] | 234 | |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 235 | /* It is possible that this task was left at an earlier place in the |
| 236 | * tree because a recent call to task_queue() has not moved it. This |
| 237 | * happens when the new expiration date is later than the old one. |
| 238 | * Since it is very unlikely that we reach a timeout anyway, it's a |
| 239 | * lot cheaper to proceed like this because we almost never update |
| 240 | * the tree. We may also find disabled expiration dates there. Since |
| 241 | * we have detached the task from the tree, we simply call task_queue |
Willy Tarreau | 814c978 | 2009-07-14 23:48:55 +0200 | [diff] [blame] | 242 | * to take care of this. Note that we might occasionally requeue it at |
| 243 | * the same place, before <eb>, so we have to check if this happens, |
| 244 | * and adjust <eb>, otherwise we may skip it which is not what we want. |
Willy Tarreau | 34e98ea | 2009-08-09 09:09:54 +0200 | [diff] [blame] | 245 | * We may also not requeue the task (and not point eb at it) if its |
| 246 | * expiration time is not set. |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 247 | */ |
| 248 | if (!tick_is_expired(task->expire, now_ms)) { |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 249 | if (tick_isset(task->expire)) |
| 250 | __task_queue(task); |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 251 | goto lookup_next; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 252 | } |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 253 | task_wakeup(task, TASK_WOKEN_TIMER); |
Willy Tarreau | 5175345 | 2017-11-23 18:36:50 +0100 | [diff] [blame] | 254 | HA_SPIN_UNLOCK(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 255 | } |
Willy Tarreau | 9789f7b | 2008-06-24 08:17:16 +0200 | [diff] [blame] | 256 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 257 | HA_SPIN_UNLOCK(TASK_WQ_LOCK, &wq_lock); |
Willy Tarreau | b992ba1 | 2017-11-05 19:09:27 +0100 | [diff] [blame] | 258 | return ret; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 259 | } |
| 260 | |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 261 | /* The run queue is chronologically sorted in a tree. An insertion counter is |
| 262 | * used to assign a position to each task. This counter may be combined with |
| 263 | * other variables (eg: nice value) to set the final position in the tree. The |
| 264 | * counter may wrap without a problem, of course. We then limit the number of |
Christopher Faulet | 8a48f67 | 2017-11-14 10:38:36 +0100 | [diff] [blame] | 265 | * tasks processed to 200 in any case, so that general latency remains low and |
| 266 | * so that task positions have a chance to be considered. |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 267 | * |
| 268 | * The function adjusts <next> if a new event is closer. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 269 | */ |
Thierry FOURNIER | 9cf7c4b | 2014-12-15 13:26:01 +0100 | [diff] [blame] | 270 | void process_runnable_tasks() |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 271 | { |
Willy Tarreau | 964c936 | 2007-01-07 00:38:00 +0100 | [diff] [blame] | 272 | struct task *t; |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 273 | int max_processed; |
Christopher Faulet | 3911ee8 | 2017-11-14 10:26:53 +0100 | [diff] [blame] | 274 | |
Christopher Faulet | 34c5cc9 | 2016-12-06 09:15:30 +0100 | [diff] [blame] | 275 | tasks_run_queue_cur = tasks_run_queue; /* keep a copy for reporting */ |
Willy Tarreau | c7bdf09 | 2009-03-21 18:33:52 +0100 | [diff] [blame] | 276 | nb_tasks_cur = nb_tasks; |
Olivier Houchard | 1599b80 | 2018-05-24 18:59:04 +0200 | [diff] [blame] | 277 | max_processed = global.tune.runqueue_depth; |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 278 | |
| 279 | if (likely(global.nbthread > 1)) { |
| 280 | HA_SPIN_LOCK(TASK_RQ_LOCK, &rq_lock); |
Willy Tarreau | d80cb4e | 2018-01-20 19:30:13 +0100 | [diff] [blame] | 281 | if (!(active_tasks_mask & tid_bit)) { |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 282 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock); |
Willy Tarreau | d80cb4e | 2018-01-20 19:30:13 +0100 | [diff] [blame] | 283 | activity[tid].empty_rq++; |
Christopher Faulet | 8a48f67 | 2017-11-14 10:38:36 +0100 | [diff] [blame] | 284 | return; |
Willy Tarreau | d80cb4e | 2018-01-20 19:30:13 +0100 | [diff] [blame] | 285 | } |
Christopher Faulet | 8a48f67 | 2017-11-14 10:38:36 +0100 | [diff] [blame] | 286 | |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 287 | #ifdef USE_THREAD |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 288 | /* Get some elements from the global run queue and put it in the |
| 289 | * local run queue. To try to keep a bit of fairness, just get as |
| 290 | * much elements from the global list as to have a bigger local queue |
| 291 | * than the average. |
| 292 | */ |
Willy Tarreau | 9a77186 | 2018-07-26 13:36:01 +0200 | [diff] [blame] | 293 | while ((task_list_size[tid] + rqueue_size[tid]) * global.nbthread <= tasks_run_queue) { |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 294 | /* we have to restart looking up after every batch */ |
| 295 | rq_next = eb32sc_lookup_ge(&rqueue, rqueue_ticks - TIMER_LOOK_BACK, tid_bit); |
| 296 | if (unlikely(!rq_next)) { |
| 297 | /* either we just started or we reached the end |
| 298 | * of the tree, typically because <rqueue_ticks> |
| 299 | * is in the first half and we're first scanning |
| 300 | * the last half. Let's loop back to the beginning |
| 301 | * of the tree now. |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 302 | */ |
| 303 | rq_next = eb32sc_first(&rqueue, tid_bit); |
Olivier Houchard | c4aac9e | 2018-07-26 15:25:49 +0200 | [diff] [blame] | 304 | if (!rq_next) { |
| 305 | HA_ATOMIC_AND(&global_tasks_mask, ~tid_bit); |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 306 | break; |
Olivier Houchard | c4aac9e | 2018-07-26 15:25:49 +0200 | [diff] [blame] | 307 | } |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 308 | } |
| 309 | |
| 310 | t = eb32sc_entry(rq_next, struct task, rq); |
| 311 | rq_next = eb32sc_next(rq_next, tid_bit); |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 312 | |
| 313 | /* detach the task from the queue */ |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 314 | __task_unlink_rq(t); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 315 | __task_wakeup(t, &rqueue_local[tid]); |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 316 | } |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 317 | #endif |
Willy Tarreau | f0c531a | 2017-11-05 16:35:59 +0100 | [diff] [blame] | 318 | |
Christopher Faulet | 8a48f67 | 2017-11-14 10:38:36 +0100 | [diff] [blame] | 319 | HA_SPIN_UNLOCK(TASK_RQ_LOCK, &rq_lock); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 320 | } else { |
| 321 | if (!(active_tasks_mask & tid_bit)) { |
| 322 | activity[tid].empty_rq++; |
| 323 | return; |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 324 | } |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 325 | } |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 326 | /* Get some tasks from the run queue, make sure we don't |
| 327 | * get too much in the task list, but put a bit more than |
| 328 | * the max that will be run, to give a bit more fairness |
| 329 | */ |
Olivier Houchard | 1599b80 | 2018-05-24 18:59:04 +0200 | [diff] [blame] | 330 | while (max_processed + (max_processed / 10) > task_list_size[tid]) { |
Willy Tarreau | e35c94a | 2009-03-21 10:01:42 +0100 | [diff] [blame] | 331 | /* Note: this loop is one of the fastest code path in |
| 332 | * the whole program. It should not be re-arranged |
| 333 | * without a good reason. |
| 334 | */ |
Willy Tarreau | 9e45b33 | 2017-11-08 14:05:19 +0100 | [diff] [blame] | 335 | |
| 336 | /* we have to restart looking up after every batch */ |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 337 | rq_next = eb32sc_lookup_ge(&rqueue_local[tid], rqueue_ticks - TIMER_LOOK_BACK, tid_bit); |
| 338 | if (unlikely(!rq_next)) { |
| 339 | /* either we just started or we reached the end |
| 340 | * of the tree, typically because <rqueue_ticks> |
| 341 | * is in the first half and we're first scanning |
| 342 | * the last half. Let's loop back to the beginning |
| 343 | * of the tree now. |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 344 | */ |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 345 | rq_next = eb32sc_first(&rqueue_local[tid], tid_bit); |
| 346 | if (!rq_next) |
| 347 | break; |
Emeric Brun | 0194897 | 2017-03-30 15:37:25 +0200 | [diff] [blame] | 348 | } |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 349 | t = eb32sc_entry(rq_next, struct task, rq); |
| 350 | rq_next = eb32sc_next(rq_next, tid_bit); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 351 | /* Make sure nobody re-adds the task in the runqueue */ |
| 352 | HA_ATOMIC_OR(&t->state, TASK_RUNNING); |
Willy Tarreau | 531cf0c | 2009-03-08 16:35:27 +0100 | [diff] [blame] | 353 | |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 354 | /* detach the task from the queue */ |
| 355 | __task_unlink_rq(t); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 356 | /* And add it to the local task list */ |
| 357 | task_insert_into_tasklet_list(t); |
| 358 | } |
Olivier Houchard | c4aac9e | 2018-07-26 15:25:49 +0200 | [diff] [blame] | 359 | if (!(global_tasks_mask & tid_bit) && rqueue_size[tid] == 0) { |
| 360 | HA_ATOMIC_AND(&active_tasks_mask, ~tid_bit); |
| 361 | __ha_barrier_load(); |
| 362 | if (global_tasks_mask & tid_bit) |
| 363 | HA_ATOMIC_OR(&active_tasks_mask, tid_bit); |
| 364 | } |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 365 | while (max_processed > 0 && !LIST_ISEMPTY(&task_list[tid])) { |
| 366 | struct task *t; |
| 367 | unsigned short state; |
| 368 | void *ctx; |
| 369 | struct task *(*process)(struct task *t, void *ctx, unsigned short state); |
| 370 | |
| 371 | t = (struct task *)LIST_ELEM(task_list[tid].n, struct tasklet *, list); |
| 372 | state = HA_ATOMIC_XCHG(&t->state, TASK_RUNNING); |
| 373 | __ha_barrier_store(); |
| 374 | task_remove_from_task_list(t); |
| 375 | |
| 376 | ctx = t->context; |
| 377 | process = t->process; |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 378 | t->calls++; |
| 379 | curr_task = (struct task *)t; |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 380 | if (likely(process == process_stream)) |
| 381 | t = process_stream(t, ctx, state); |
| 382 | else { |
| 383 | if (t->process != NULL) |
Olivier Houchard | 9db0fed | 2018-06-14 15:40:47 +0200 | [diff] [blame] | 384 | t = process(TASK_IS_TASKLET(t) ? NULL : t, ctx, state); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 385 | else { |
| 386 | __task_free(t); |
| 387 | t = NULL; |
| 388 | } |
| 389 | } |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 390 | curr_task = NULL; |
| 391 | /* If there is a pending state we have to wake up the task |
| 392 | * immediatly, else we defer it into wait queue |
| 393 | */ |
| 394 | if (t != NULL) { |
| 395 | state = HA_ATOMIC_AND(&t->state, ~TASK_RUNNING); |
| 396 | if (state) |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 397 | #ifdef USE_THREAD |
Olivier Houchard | 19bdf24 | 2018-08-17 13:36:08 +0200 | [diff] [blame] | 398 | __task_wakeup(t, ((t->thread_mask & all_threads_mask) == tid_bit) ? |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 399 | &rqueue_local[tid] : &rqueue); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 400 | #else |
| 401 | __task_wakeup(t, &rqueue_local[tid]); |
| 402 | #endif |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 403 | else |
Willy Tarreau | 9d4b56b | 2017-11-06 08:36:53 +0100 | [diff] [blame] | 404 | task_queue(t); |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 405 | } |
Willy Tarreau | ce4e0aa | 2017-11-05 23:57:00 +0100 | [diff] [blame] | 406 | |
Olivier Houchard | 736ea41 | 2018-05-28 14:54:49 +0200 | [diff] [blame] | 407 | max_processed--; |
Christopher Faulet | 3911ee8 | 2017-11-14 10:26:53 +0100 | [diff] [blame] | 408 | if (max_processed <= 0) { |
Willy Tarreau | 189ea85 | 2018-07-26 15:16:43 +0200 | [diff] [blame] | 409 | HA_ATOMIC_OR(&active_tasks_mask, tid_bit); |
Willy Tarreau | d80cb4e | 2018-01-20 19:30:13 +0100 | [diff] [blame] | 410 | activity[tid].long_rq++; |
Christopher Faulet | 3911ee8 | 2017-11-14 10:26:53 +0100 | [diff] [blame] | 411 | break; |
| 412 | } |
| 413 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 414 | } |
| 415 | |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 416 | /* perform minimal intializations, report 0 in case of error, 1 if OK. */ |
| 417 | int init_task() |
| 418 | { |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 419 | int i; |
| 420 | |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 421 | memset(&timers, 0, sizeof(timers)); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 422 | #ifdef USE_THREAD |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 423 | memset(&rqueue, 0, sizeof(rqueue)); |
Olivier Houchard | b1ca58b | 2018-06-06 14:22:03 +0200 | [diff] [blame] | 424 | #endif |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 425 | HA_SPIN_INIT(&wq_lock); |
| 426 | HA_SPIN_INIT(&rq_lock); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 427 | for (i = 0; i < MAX_THREADS; i++) { |
Olivier Houchard | f6e6dc1 | 2018-05-18 18:38:23 +0200 | [diff] [blame] | 428 | memset(&rqueue_local[i], 0, sizeof(rqueue_local[i])); |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 429 | LIST_INIT(&task_list[i]); |
| 430 | task_list_size[i] = 0; |
| 431 | } |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 432 | pool_head_task = create_pool("task", sizeof(struct task), MEM_F_SHARED); |
| 433 | if (!pool_head_task) |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 434 | return 0; |
Olivier Houchard | b0bdae7 | 2018-05-18 18:45:28 +0200 | [diff] [blame] | 435 | pool_head_tasklet = create_pool("tasklet", sizeof(struct tasklet), MEM_F_SHARED); |
| 436 | if (!pool_head_tasklet) |
| 437 | return 0; |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 438 | pool_head_notification = create_pool("notification", sizeof(struct notification), MEM_F_SHARED); |
| 439 | if (!pool_head_notification) |
Thierry FOURNIER | d697596 | 2017-07-12 14:31:10 +0200 | [diff] [blame] | 440 | return 0; |
| 441 | return 1; |
Willy Tarreau | 4726f53 | 2009-03-07 17:25:21 +0100 | [diff] [blame] | 442 | } |
| 443 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 444 | /* |
| 445 | * Local variables: |
| 446 | * c-indent-level: 8 |
| 447 | * c-basic-offset: 8 |
| 448 | * End: |
| 449 | */ |