[f761f1eb] | 1 | /*
|
---|
[7ed8530] | 2 | * Copyright (c) 2010 Jakub Jermar
|
---|
[ef1eab7] | 3 | * Copyright (c) 2018 Jiri Svoboda
|
---|
[f761f1eb] | 4 | * All rights reserved.
|
---|
| 5 | *
|
---|
| 6 | * Redistribution and use in source and binary forms, with or without
|
---|
| 7 | * modification, are permitted provided that the following conditions
|
---|
| 8 | * are met:
|
---|
| 9 | *
|
---|
| 10 | * - Redistributions of source code must retain the above copyright
|
---|
| 11 | * notice, this list of conditions and the following disclaimer.
|
---|
| 12 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 13 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 14 | * documentation and/or other materials provided with the distribution.
|
---|
| 15 | * - The name of the author may not be used to endorse or promote products
|
---|
| 16 | * derived from this software without specific prior written permission.
|
---|
| 17 | *
|
---|
| 18 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 19 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 20 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 21 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 23 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 24 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 25 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 28 | */
|
---|
| 29 |
|
---|
[174156fd] | 30 | /** @addtogroup kernel_generic_proc
|
---|
[b45c443] | 31 | * @{
|
---|
| 32 | */
|
---|
| 33 |
|
---|
[9179d0a] | 34 | /**
|
---|
[b45c443] | 35 | * @file
|
---|
[da1bafb] | 36 | * @brief Thread management functions.
|
---|
[9179d0a] | 37 | */
|
---|
| 38 |
|
---|
[63e27ef] | 39 | #include <assert.h>
|
---|
[f761f1eb] | 40 | #include <proc/scheduler.h>
|
---|
| 41 | #include <proc/thread.h>
|
---|
| 42 | #include <proc/task.h>
|
---|
| 43 | #include <mm/frame.h>
|
---|
| 44 | #include <mm/page.h>
|
---|
| 45 | #include <arch/asm.h>
|
---|
[cce6acf] | 46 | #include <arch/cycle.h>
|
---|
[f761f1eb] | 47 | #include <arch.h>
|
---|
| 48 | #include <synch/spinlock.h>
|
---|
| 49 | #include <synch/waitq.h>
|
---|
[d314571] | 50 | #include <synch/syswaitq.h>
|
---|
[f761f1eb] | 51 | #include <cpu.h>
|
---|
[e535eeb] | 52 | #include <str.h>
|
---|
[f761f1eb] | 53 | #include <context.h>
|
---|
[5c9a08b] | 54 | #include <adt/list.h>
|
---|
[ef1eab7] | 55 | #include <adt/odict.h>
|
---|
[f761f1eb] | 56 | #include <time/clock.h>
|
---|
[b3f8fb7] | 57 | #include <time/timeout.h>
|
---|
[8d6c1f1] | 58 | #include <time/delay.h>
|
---|
[4ffa9e0] | 59 | #include <config.h>
|
---|
| 60 | #include <arch/interrupt.h>
|
---|
[26a8604f] | 61 | #include <smp/ipi.h>
|
---|
[f2ffad4] | 62 | #include <arch/faddr.h>
|
---|
[23684b7] | 63 | #include <atomic.h>
|
---|
[44a7ee5] | 64 | #include <mem.h>
|
---|
[bab75df6] | 65 | #include <stdio.h>
|
---|
[aafed15] | 66 | #include <stdlib.h>
|
---|
[9f52563] | 67 | #include <main/uinit.h>
|
---|
[e3c762cd] | 68 | #include <syscall/copy.h>
|
---|
| 69 | #include <errno.h>
|
---|
[aae365bc] | 70 | #include <debug.h>
|
---|
[52755f1] | 71 |
|
---|
[fe19611] | 72 | /** Thread states */
|
---|
[a000878c] | 73 | const char *thread_states[] = {
|
---|
[fe19611] | 74 | "Invalid",
|
---|
| 75 | "Running",
|
---|
| 76 | "Sleeping",
|
---|
| 77 | "Ready",
|
---|
| 78 | "Entering",
|
---|
| 79 | "Exiting",
|
---|
[48d14222] | 80 | "Lingering"
|
---|
[e1b6742] | 81 | };
|
---|
| 82 |
|
---|
[ef1eab7] | 83 | /** Lock protecting the @c threads ordered dictionary .
|
---|
[4e33b6b] | 84 | *
|
---|
| 85 | * For locking rules, see declaration thereof.
|
---|
| 86 | */
|
---|
[da1bafb] | 87 | IRQ_SPINLOCK_INITIALIZE(threads_lock);
|
---|
[88169d9] | 88 |
|
---|
[ef1eab7] | 89 | /** Ordered dictionary of all threads by their address (i.e. pointer to
|
---|
| 90 | * the thread_t structure).
|
---|
[88169d9] | 91 | *
|
---|
[ef1eab7] | 92 | * When a thread is found in the @c threads ordered dictionary, it is
|
---|
| 93 | * guaranteed to exist as long as the @c threads_lock is held.
|
---|
[da1bafb] | 94 | *
|
---|
[ef1eab7] | 95 | * Members are of type thread_t.
|
---|
[88169d9] | 96 | */
|
---|
[ef1eab7] | 97 | odict_t threads;
|
---|
[f761f1eb] | 98 |
|
---|
[da1bafb] | 99 | IRQ_SPINLOCK_STATIC_INITIALIZE(tidlock);
|
---|
| 100 | static thread_id_t last_tid = 0;
|
---|
[f761f1eb] | 101 |
|
---|
[82d515e9] | 102 | static slab_cache_t *thread_cache;
|
---|
[da1bafb] | 103 |
|
---|
[0f81ceb7] | 104 | #ifdef CONFIG_FPU
|
---|
[82d515e9] | 105 | slab_cache_t *fpu_context_cache;
|
---|
[f76fed4] | 106 | #endif
|
---|
[266294a9] | 107 |
|
---|
[ef1eab7] | 108 | static void *threads_getkey(odlink_t *);
|
---|
| 109 | static int threads_cmp(void *, void *);
|
---|
| 110 |
|
---|
[4e33b6b] | 111 | /** Thread wrapper.
|
---|
[70527f1] | 112 | *
|
---|
[4e33b6b] | 113 | * This wrapper is provided to ensure that every thread makes a call to
|
---|
| 114 | * thread_exit() when its implementing function returns.
|
---|
[f761f1eb] | 115 | *
|
---|
[22f7769] | 116 | * interrupts_disable() is assumed.
|
---|
[70527f1] | 117 | *
|
---|
[f761f1eb] | 118 | */
|
---|
[e16e036a] | 119 | static void cushion(void)
|
---|
[f761f1eb] | 120 | {
|
---|
[43114c5] | 121 | void (*f)(void *) = THREAD->thread_code;
|
---|
| 122 | void *arg = THREAD->thread_arg;
|
---|
[449dc1ed] | 123 | THREAD->last_cycle = get_cycle();
|
---|
[a35b458] | 124 |
|
---|
[0313ff0] | 125 | /* This is where each thread wakes up after its creation */
|
---|
[da1bafb] | 126 | irq_spinlock_unlock(&THREAD->lock, false);
|
---|
[22f7769] | 127 | interrupts_enable();
|
---|
[a35b458] | 128 |
|
---|
[f761f1eb] | 129 | f(arg);
|
---|
[a35b458] | 130 |
|
---|
[0313ff0] | 131 | /* Accumulate accounting to the task */
|
---|
[da1bafb] | 132 | irq_spinlock_lock(&THREAD->lock, true);
|
---|
[62b6d17] | 133 | if (!THREAD->uncounted) {
|
---|
[a2a00e8] | 134 | thread_update_accounting(true);
|
---|
| 135 | uint64_t ucycles = THREAD->ucycles;
|
---|
| 136 | THREAD->ucycles = 0;
|
---|
| 137 | uint64_t kcycles = THREAD->kcycles;
|
---|
| 138 | THREAD->kcycles = 0;
|
---|
[a35b458] | 139 |
|
---|
[da1bafb] | 140 | irq_spinlock_pass(&THREAD->lock, &TASK->lock);
|
---|
[a2a00e8] | 141 | TASK->ucycles += ucycles;
|
---|
| 142 | TASK->kcycles += kcycles;
|
---|
[da1bafb] | 143 | irq_spinlock_unlock(&TASK->lock, true);
|
---|
[62b6d17] | 144 | } else
|
---|
[da1bafb] | 145 | irq_spinlock_unlock(&THREAD->lock, true);
|
---|
[a35b458] | 146 |
|
---|
[f761f1eb] | 147 | thread_exit();
|
---|
[a35b458] | 148 |
|
---|
[da1bafb] | 149 | /* Not reached */
|
---|
[f761f1eb] | 150 | }
|
---|
| 151 |
|
---|
[da1bafb] | 152 | /** Initialization and allocation for thread_t structure
|
---|
| 153 | *
|
---|
| 154 | */
|
---|
[b7fd2a0] | 155 | static errno_t thr_constructor(void *obj, unsigned int kmflags)
|
---|
[266294a9] | 156 | {
|
---|
[da1bafb] | 157 | thread_t *thread = (thread_t *) obj;
|
---|
[a35b458] | 158 |
|
---|
[da1bafb] | 159 | irq_spinlock_initialize(&thread->lock, "thread_t_lock");
|
---|
| 160 | link_initialize(&thread->rq_link);
|
---|
| 161 | link_initialize(&thread->wq_link);
|
---|
| 162 | link_initialize(&thread->th_link);
|
---|
[a35b458] | 163 |
|
---|
[32fffef0] | 164 | /* call the architecture-specific part of the constructor */
|
---|
[da1bafb] | 165 | thr_constructor_arch(thread);
|
---|
[a35b458] | 166 |
|
---|
[0f81ceb7] | 167 | #ifdef CONFIG_FPU
|
---|
[abf6c01] | 168 | thread->saved_fpu_context = slab_alloc(fpu_context_cache,
|
---|
| 169 | FRAME_ATOMIC | kmflags);
|
---|
[da1bafb] | 170 | if (!thread->saved_fpu_context)
|
---|
[7f11dc6] | 171 | return ENOMEM;
|
---|
[da1bafb] | 172 | #endif /* CONFIG_FPU */
|
---|
[a35b458] | 173 |
|
---|
[38ff925] | 174 | /*
|
---|
| 175 | * Allocate the kernel stack from the low-memory to prevent an infinite
|
---|
| 176 | * nesting of TLB-misses when accessing the stack from the part of the
|
---|
| 177 | * TLB-miss handler written in C.
|
---|
| 178 | *
|
---|
| 179 | * Note that low-memory is safe to be used for the stack as it will be
|
---|
| 180 | * covered by the kernel identity mapping, which guarantees not to
|
---|
| 181 | * nest TLB-misses infinitely (either via some hardware mechanism or
|
---|
[c477c80] | 182 | * by the construction of the assembly-language part of the TLB-miss
|
---|
[38ff925] | 183 | * handler).
|
---|
| 184 | *
|
---|
| 185 | * This restriction can be lifted once each architecture provides
|
---|
[c477c80] | 186 | * a similar guarantee, for example, by locking the kernel stack
|
---|
[38ff925] | 187 | * in the TLB whenever it is allocated from the high-memory and the
|
---|
| 188 | * thread is being scheduled to run.
|
---|
| 189 | */
|
---|
| 190 | kmflags |= FRAME_LOWMEM;
|
---|
| 191 | kmflags &= ~FRAME_HIGHMEM;
|
---|
[a35b458] | 192 |
|
---|
[128359eb] | 193 | /*
|
---|
| 194 | * NOTE: All kernel stacks must be aligned to STACK_SIZE,
|
---|
| 195 | * see CURRENT.
|
---|
| 196 | */
|
---|
[d1da1ff2] | 197 |
|
---|
[cd3b380] | 198 | uintptr_t stack_phys =
|
---|
| 199 | frame_alloc(STACK_FRAMES, kmflags, STACK_SIZE - 1);
|
---|
| 200 | if (!stack_phys) {
|
---|
[0f81ceb7] | 201 | #ifdef CONFIG_FPU
|
---|
[ba9a150] | 202 | assert(thread->saved_fpu_context);
|
---|
| 203 | slab_free(fpu_context_cache, thread->saved_fpu_context);
|
---|
[f76fed4] | 204 | #endif
|
---|
[7f11dc6] | 205 | return ENOMEM;
|
---|
[f76fed4] | 206 | }
|
---|
[a35b458] | 207 |
|
---|
[cd3b380] | 208 | thread->kstack = (uint8_t *) PA2KA(stack_phys);
|
---|
[a35b458] | 209 |
|
---|
[9a1b20c] | 210 | #ifdef CONFIG_UDEBUG
|
---|
[da1bafb] | 211 | mutex_initialize(&thread->udebug.lock, MUTEX_PASSIVE);
|
---|
[9a1b20c] | 212 | #endif
|
---|
[a35b458] | 213 |
|
---|
[7f11dc6] | 214 | return EOK;
|
---|
[266294a9] | 215 | }
|
---|
| 216 |
|
---|
| 217 | /** Destruction of thread_t object */
|
---|
[da1bafb] | 218 | static size_t thr_destructor(void *obj)
|
---|
[266294a9] | 219 | {
|
---|
[da1bafb] | 220 | thread_t *thread = (thread_t *) obj;
|
---|
[a35b458] | 221 |
|
---|
[32fffef0] | 222 | /* call the architecture-specific part of the destructor */
|
---|
[da1bafb] | 223 | thr_destructor_arch(thread);
|
---|
[a35b458] | 224 |
|
---|
[5df1963] | 225 | frame_free(KA2PA(thread->kstack), STACK_FRAMES);
|
---|
[a35b458] | 226 |
|
---|
[0f81ceb7] | 227 | #ifdef CONFIG_FPU
|
---|
[ba9a150] | 228 | assert(thread->saved_fpu_context);
|
---|
| 229 | slab_free(fpu_context_cache, thread->saved_fpu_context);
|
---|
[f76fed4] | 230 | #endif
|
---|
[a35b458] | 231 |
|
---|
[e7c4115d] | 232 | return STACK_FRAMES; /* number of frames freed */
|
---|
[266294a9] | 233 | }
|
---|
[70527f1] | 234 |
|
---|
| 235 | /** Initialize threads
|
---|
| 236 | *
|
---|
| 237 | * Initialize kernel threads support.
|
---|
| 238 | *
|
---|
| 239 | */
|
---|
[f761f1eb] | 240 | void thread_init(void)
|
---|
| 241 | {
|
---|
[43114c5] | 242 | THREAD = NULL;
|
---|
[a35b458] | 243 |
|
---|
[e3306d04] | 244 | atomic_store(&nrdy, 0);
|
---|
[82d515e9] | 245 | thread_cache = slab_cache_create("thread_t", sizeof(thread_t), 0,
|
---|
[6f4495f5] | 246 | thr_constructor, thr_destructor, 0);
|
---|
[a35b458] | 247 |
|
---|
[0f81ceb7] | 248 | #ifdef CONFIG_FPU
|
---|
[82d515e9] | 249 | fpu_context_cache = slab_cache_create("fpu_context_t",
|
---|
[f97f1e51] | 250 | sizeof(fpu_context_t), FPU_CONTEXT_ALIGN, NULL, NULL, 0);
|
---|
[f76fed4] | 251 | #endif
|
---|
[a35b458] | 252 |
|
---|
[ef1eab7] | 253 | odict_initialize(&threads, threads_getkey, threads_cmp);
|
---|
[016acbe] | 254 | }
|
---|
[70527f1] | 255 |
|
---|
[6eef3c4] | 256 | /** Wire thread to the given CPU
|
---|
| 257 | *
|
---|
| 258 | * @param cpu CPU to wire the thread to.
|
---|
| 259 | *
|
---|
| 260 | */
|
---|
| 261 | void thread_wire(thread_t *thread, cpu_t *cpu)
|
---|
| 262 | {
|
---|
| 263 | irq_spinlock_lock(&thread->lock, true);
|
---|
| 264 | thread->cpu = cpu;
|
---|
| 265 | thread->wired = true;
|
---|
| 266 | irq_spinlock_unlock(&thread->lock, true);
|
---|
| 267 | }
|
---|
| 268 |
|
---|
[8a64e81e] | 269 | /** Invoked right before thread_ready() readies the thread. thread is locked. */
|
---|
| 270 | static void before_thread_is_ready(thread_t *thread)
|
---|
| 271 | {
|
---|
[63e27ef] | 272 | assert(irq_spinlock_locked(&thread->lock));
|
---|
[8a64e81e] | 273 | }
|
---|
| 274 |
|
---|
[70527f1] | 275 | /** Make thread ready
|
---|
| 276 | *
|
---|
[da1bafb] | 277 | * Switch thread to the ready state.
|
---|
[70527f1] | 278 | *
|
---|
[df58e44] | 279 | * @param thread Thread to make ready.
|
---|
[70527f1] | 280 | *
|
---|
| 281 | */
|
---|
[da1bafb] | 282 | void thread_ready(thread_t *thread)
|
---|
[f761f1eb] | 283 | {
|
---|
[da1bafb] | 284 | irq_spinlock_lock(&thread->lock, true);
|
---|
[a35b458] | 285 |
|
---|
[63e27ef] | 286 | assert(thread->state != Ready);
|
---|
[518dd43] | 287 |
|
---|
[8a64e81e] | 288 | before_thread_is_ready(thread);
|
---|
[a35b458] | 289 |
|
---|
[6eef3c4] | 290 | int i = (thread->priority < RQ_COUNT - 1) ?
|
---|
| 291 | ++thread->priority : thread->priority;
|
---|
[518dd43] | 292 |
|
---|
[8ad7dd1] | 293 | cpu_t *cpu;
|
---|
| 294 | if (thread->wired || thread->nomigrate || thread->fpu_context_engaged) {
|
---|
| 295 | /* Cannot ready to another CPU */
|
---|
[63e27ef] | 296 | assert(thread->cpu != NULL);
|
---|
[8ad7dd1] | 297 | cpu = thread->cpu;
|
---|
| 298 | } else if (thread->stolen) {
|
---|
| 299 | /* Ready to the stealing CPU */
|
---|
[6eef3c4] | 300 | cpu = CPU;
|
---|
[8ad7dd1] | 301 | } else if (thread->cpu) {
|
---|
| 302 | /* Prefer the CPU on which the thread ran last */
|
---|
[63e27ef] | 303 | assert(thread->cpu != NULL);
|
---|
[8ad7dd1] | 304 | cpu = thread->cpu;
|
---|
| 305 | } else {
|
---|
| 306 | cpu = CPU;
|
---|
| 307 | }
|
---|
[a35b458] | 308 |
|
---|
[da1bafb] | 309 | thread->state = Ready;
|
---|
[a35b458] | 310 |
|
---|
[da1bafb] | 311 | irq_spinlock_pass(&thread->lock, &(cpu->rq[i].lock));
|
---|
[a35b458] | 312 |
|
---|
[70527f1] | 313 | /*
|
---|
[da1bafb] | 314 | * Append thread to respective ready queue
|
---|
| 315 | * on respective processor.
|
---|
[f761f1eb] | 316 | */
|
---|
[a35b458] | 317 |
|
---|
[55b77d9] | 318 | list_append(&thread->rq_link, &cpu->rq[i].rq);
|
---|
[da1bafb] | 319 | cpu->rq[i].n++;
|
---|
| 320 | irq_spinlock_unlock(&(cpu->rq[i].lock), true);
|
---|
[a35b458] | 321 |
|
---|
[59e07c91] | 322 | atomic_inc(&nrdy);
|
---|
[248fc1a] | 323 | atomic_inc(&cpu->nrdy);
|
---|
[f761f1eb] | 324 | }
|
---|
| 325 |
|
---|
[70527f1] | 326 | /** Create new thread
|
---|
| 327 | *
|
---|
| 328 | * Create a new thread.
|
---|
| 329 | *
|
---|
[da1bafb] | 330 | * @param func Thread's implementing function.
|
---|
| 331 | * @param arg Thread's implementing function argument.
|
---|
| 332 | * @param task Task to which the thread belongs. The caller must
|
---|
| 333 | * guarantee that the task won't cease to exist during the
|
---|
| 334 | * call. The task's lock may not be held.
|
---|
| 335 | * @param flags Thread flags.
|
---|
| 336 | * @param name Symbolic name (a copy is made).
|
---|
[70527f1] | 337 | *
|
---|
[da1bafb] | 338 | * @return New thread's structure on success, NULL on failure.
|
---|
[70527f1] | 339 | *
|
---|
| 340 | */
|
---|
[3bacee1] | 341 | thread_t *thread_create(void (*func)(void *), void *arg, task_t *task,
|
---|
[6eef3c4] | 342 | thread_flags_t flags, const char *name)
|
---|
[f761f1eb] | 343 | {
|
---|
[abf6c01] | 344 | thread_t *thread = (thread_t *) slab_alloc(thread_cache, FRAME_ATOMIC);
|
---|
[da1bafb] | 345 | if (!thread)
|
---|
[2a46e10] | 346 | return NULL;
|
---|
[a35b458] | 347 |
|
---|
[deacd722] | 348 | if (thread_create_arch(thread, flags) != EOK) {
|
---|
| 349 | slab_free(thread_cache, thread);
|
---|
| 350 | return NULL;
|
---|
| 351 | }
|
---|
| 352 |
|
---|
[bb68433] | 353 | /* Not needed, but good for debugging */
|
---|
[26aafe8] | 354 | memsetb(thread->kstack, STACK_SIZE, 0);
|
---|
[a35b458] | 355 |
|
---|
[da1bafb] | 356 | irq_spinlock_lock(&tidlock, true);
|
---|
| 357 | thread->tid = ++last_tid;
|
---|
| 358 | irq_spinlock_unlock(&tidlock, true);
|
---|
[a35b458] | 359 |
|
---|
[edc64c0] | 360 | memset(&thread->saved_context, 0, sizeof(thread->saved_context));
|
---|
[da1bafb] | 361 | context_set(&thread->saved_context, FADDR(cushion),
|
---|
[26aafe8] | 362 | (uintptr_t) thread->kstack, STACK_SIZE);
|
---|
[a35b458] | 363 |
|
---|
[a6e55886] | 364 | current_initialize((current_t *) thread->kstack);
|
---|
[a35b458] | 365 |
|
---|
[da1bafb] | 366 | ipl_t ipl = interrupts_disable();
|
---|
[c030818] | 367 | thread->saved_ipl = interrupts_read();
|
---|
[bb68433] | 368 | interrupts_restore(ipl);
|
---|
[a35b458] | 369 |
|
---|
[da1bafb] | 370 | str_cpy(thread->name, THREAD_NAME_BUFLEN, name);
|
---|
[a35b458] | 371 |
|
---|
[da1bafb] | 372 | thread->thread_code = func;
|
---|
| 373 | thread->thread_arg = arg;
|
---|
| 374 | thread->ucycles = 0;
|
---|
| 375 | thread->kcycles = 0;
|
---|
[6eef3c4] | 376 | thread->uncounted =
|
---|
| 377 | ((flags & THREAD_FLAG_UNCOUNTED) == THREAD_FLAG_UNCOUNTED);
|
---|
[da1bafb] | 378 | thread->priority = -1; /* Start in rq[0] */
|
---|
| 379 | thread->cpu = NULL;
|
---|
[6eef3c4] | 380 | thread->wired = false;
|
---|
| 381 | thread->stolen = false;
|
---|
| 382 | thread->uspace =
|
---|
| 383 | ((flags & THREAD_FLAG_USPACE) == THREAD_FLAG_USPACE);
|
---|
[a35b458] | 384 |
|
---|
[43ac0cc] | 385 | thread->nomigrate = 0;
|
---|
[da1bafb] | 386 | thread->state = Entering;
|
---|
[a35b458] | 387 |
|
---|
[da1bafb] | 388 | timeout_initialize(&thread->sleep_timeout);
|
---|
| 389 | thread->sleep_interruptible = false;
|
---|
[b59318e] | 390 | thread->sleep_composable = false;
|
---|
[da1bafb] | 391 | thread->sleep_queue = NULL;
|
---|
| 392 | thread->timeout_pending = false;
|
---|
[a35b458] | 393 |
|
---|
[da1bafb] | 394 | thread->in_copy_from_uspace = false;
|
---|
| 395 | thread->in_copy_to_uspace = false;
|
---|
[a35b458] | 396 |
|
---|
[da1bafb] | 397 | thread->interrupted = false;
|
---|
| 398 | thread->detached = false;
|
---|
| 399 | waitq_initialize(&thread->join_wq);
|
---|
[a35b458] | 400 |
|
---|
[da1bafb] | 401 | thread->task = task;
|
---|
[a35b458] | 402 |
|
---|
[6eef3c4] | 403 | thread->fpu_context_exists = false;
|
---|
| 404 | thread->fpu_context_engaged = false;
|
---|
[a35b458] | 405 |
|
---|
[ef1eab7] | 406 | odlink_initialize(&thread->lthreads);
|
---|
[a35b458] | 407 |
|
---|
[9a1b20c] | 408 | #ifdef CONFIG_UDEBUG
|
---|
[5b7a107] | 409 | /* Initialize debugging stuff */
|
---|
| 410 | thread->btrace = false;
|
---|
[da1bafb] | 411 | udebug_thread_initialize(&thread->udebug);
|
---|
[9a1b20c] | 412 | #endif
|
---|
[a35b458] | 413 |
|
---|
[6eef3c4] | 414 | if ((flags & THREAD_FLAG_NOATTACH) != THREAD_FLAG_NOATTACH)
|
---|
[da1bafb] | 415 | thread_attach(thread, task);
|
---|
[a35b458] | 416 |
|
---|
[da1bafb] | 417 | return thread;
|
---|
[d8431986] | 418 | }
|
---|
| 419 |
|
---|
| 420 | /** Destroy thread memory structure
|
---|
| 421 | *
|
---|
| 422 | * Detach thread from all queues, cpus etc. and destroy it.
|
---|
[da1bafb] | 423 | *
|
---|
| 424 | * @param thread Thread to be destroyed.
|
---|
| 425 | * @param irq_res Indicate whether it should unlock thread->lock
|
---|
| 426 | * in interrupts-restore mode.
|
---|
[d8431986] | 427 | *
|
---|
| 428 | */
|
---|
[da1bafb] | 429 | void thread_destroy(thread_t *thread, bool irq_res)
|
---|
[d8431986] | 430 | {
|
---|
[63e27ef] | 431 | assert(irq_spinlock_locked(&thread->lock));
|
---|
| 432 | assert((thread->state == Exiting) || (thread->state == Lingering));
|
---|
| 433 | assert(thread->task);
|
---|
| 434 | assert(thread->cpu);
|
---|
[a35b458] | 435 |
|
---|
[da1bafb] | 436 | irq_spinlock_lock(&thread->cpu->lock, false);
|
---|
| 437 | if (thread->cpu->fpu_owner == thread)
|
---|
| 438 | thread->cpu->fpu_owner = NULL;
|
---|
| 439 | irq_spinlock_unlock(&thread->cpu->lock, false);
|
---|
[a35b458] | 440 |
|
---|
[da1bafb] | 441 | irq_spinlock_pass(&thread->lock, &threads_lock);
|
---|
[a35b458] | 442 |
|
---|
[ef1eab7] | 443 | odict_remove(&thread->lthreads);
|
---|
[a35b458] | 444 |
|
---|
[da1bafb] | 445 | irq_spinlock_pass(&threads_lock, &thread->task->lock);
|
---|
[a35b458] | 446 |
|
---|
[d8431986] | 447 | /*
|
---|
| 448 | * Detach from the containing task.
|
---|
| 449 | */
|
---|
[da1bafb] | 450 | list_remove(&thread->th_link);
|
---|
| 451 | irq_spinlock_unlock(&thread->task->lock, irq_res);
|
---|
[a35b458] | 452 |
|
---|
[ea7890e7] | 453 | /*
|
---|
[7ed8530] | 454 | * Drop the reference to the containing task.
|
---|
[ea7890e7] | 455 | */
|
---|
[da1bafb] | 456 | task_release(thread->task);
|
---|
[82d515e9] | 457 | slab_free(thread_cache, thread);
|
---|
[d8431986] | 458 | }
|
---|
| 459 |
|
---|
| 460 | /** Make the thread visible to the system.
|
---|
| 461 | *
|
---|
| 462 | * Attach the thread structure to the current task and make it visible in the
|
---|
[5dcee525] | 463 | * threads_tree.
|
---|
[d8431986] | 464 | *
|
---|
[da1bafb] | 465 | * @param t Thread to be attached to the task.
|
---|
| 466 | * @param task Task to which the thread is to be attached.
|
---|
| 467 | *
|
---|
[d8431986] | 468 | */
|
---|
[da1bafb] | 469 | void thread_attach(thread_t *thread, task_t *task)
|
---|
[d8431986] | 470 | {
|
---|
| 471 | /*
|
---|
[9a1b20c] | 472 | * Attach to the specified task.
|
---|
[d8431986] | 473 | */
|
---|
[da1bafb] | 474 | irq_spinlock_lock(&task->lock, true);
|
---|
[a35b458] | 475 |
|
---|
[7ed8530] | 476 | /* Hold a reference to the task. */
|
---|
| 477 | task_hold(task);
|
---|
[a35b458] | 478 |
|
---|
[9a1b20c] | 479 | /* Must not count kbox thread into lifecount */
|
---|
[6eef3c4] | 480 | if (thread->uspace)
|
---|
[9a1b20c] | 481 | atomic_inc(&task->lifecount);
|
---|
[a35b458] | 482 |
|
---|
[55b77d9] | 483 | list_append(&thread->th_link, &task->threads);
|
---|
[a35b458] | 484 |
|
---|
[da1bafb] | 485 | irq_spinlock_pass(&task->lock, &threads_lock);
|
---|
[a35b458] | 486 |
|
---|
[bb68433] | 487 | /*
|
---|
[ef1eab7] | 488 | * Register this thread in the system-wide dictionary.
|
---|
[bb68433] | 489 | */
|
---|
[ef1eab7] | 490 | odict_insert(&thread->lthreads, &threads, NULL);
|
---|
[da1bafb] | 491 | irq_spinlock_unlock(&threads_lock, true);
|
---|
[f761f1eb] | 492 | }
|
---|
| 493 |
|
---|
[0182a665] | 494 | /** Terminate thread.
|
---|
[70527f1] | 495 | *
|
---|
[da1bafb] | 496 | * End current thread execution and switch it to the exiting state.
|
---|
| 497 | * All pending timeouts are executed.
|
---|
| 498 | *
|
---|
[70527f1] | 499 | */
|
---|
[f761f1eb] | 500 | void thread_exit(void)
|
---|
| 501 | {
|
---|
[6eef3c4] | 502 | if (THREAD->uspace) {
|
---|
[9a1b20c] | 503 | #ifdef CONFIG_UDEBUG
|
---|
| 504 | /* Generate udebug THREAD_E event */
|
---|
| 505 | udebug_thread_e_event();
|
---|
[a35b458] | 506 |
|
---|
[0ac99db] | 507 | /*
|
---|
| 508 | * This thread will not execute any code or system calls from
|
---|
| 509 | * now on.
|
---|
| 510 | */
|
---|
| 511 | udebug_stoppable_begin();
|
---|
[9a1b20c] | 512 | #endif
|
---|
| 513 | if (atomic_predec(&TASK->lifecount) == 0) {
|
---|
| 514 | /*
|
---|
| 515 | * We are the last userspace thread in the task that
|
---|
| 516 | * still has not exited. With the exception of the
|
---|
| 517 | * moment the task was created, new userspace threads
|
---|
| 518 | * can only be created by threads of the same task.
|
---|
| 519 | * We are safe to perform cleanup.
|
---|
[da1bafb] | 520 | *
|
---|
[9a1b20c] | 521 | */
|
---|
[ea7890e7] | 522 | ipc_cleanup();
|
---|
[d314571] | 523 | sys_waitq_task_cleanup();
|
---|
[3bacee1] | 524 | LOG("Cleanup of task %" PRIu64 " completed.", TASK->taskid);
|
---|
[ea7890e7] | 525 | }
|
---|
| 526 | }
|
---|
[a35b458] | 527 |
|
---|
[f761f1eb] | 528 | restart:
|
---|
[da1bafb] | 529 | irq_spinlock_lock(&THREAD->lock, true);
|
---|
| 530 | if (THREAD->timeout_pending) {
|
---|
| 531 | /* Busy waiting for timeouts in progress */
|
---|
| 532 | irq_spinlock_unlock(&THREAD->lock, true);
|
---|
[f761f1eb] | 533 | goto restart;
|
---|
| 534 | }
|
---|
[a35b458] | 535 |
|
---|
[43114c5] | 536 | THREAD->state = Exiting;
|
---|
[da1bafb] | 537 | irq_spinlock_unlock(&THREAD->lock, true);
|
---|
[a35b458] | 538 |
|
---|
[f761f1eb] | 539 | scheduler();
|
---|
[a35b458] | 540 |
|
---|
[661a5ac] | 541 | panic("should never be reached");
|
---|
[f761f1eb] | 542 | }
|
---|
| 543 |
|
---|
[518dd43] | 544 | /** Interrupts an existing thread so that it may exit as soon as possible.
|
---|
[1b20da0] | 545 | *
|
---|
| 546 | * Threads that are blocked waiting for a synchronization primitive
|
---|
[897fd8f1] | 547 | * are woken up with a return code of EINTR if the
|
---|
[518dd43] | 548 | * blocking call was interruptable. See waitq_sleep_timeout().
|
---|
[1b20da0] | 549 | *
|
---|
[518dd43] | 550 | * The caller must guarantee the thread object is valid during the entire
|
---|
| 551 | * function, eg by holding the threads_lock lock.
|
---|
[1b20da0] | 552 | *
|
---|
[518dd43] | 553 | * Interrupted threads automatically exit when returning back to user space.
|
---|
[1b20da0] | 554 | *
|
---|
[518dd43] | 555 | * @param thread A valid thread object. The caller must guarantee it
|
---|
| 556 | * will remain valid until thread_interrupt() exits.
|
---|
| 557 | */
|
---|
| 558 | void thread_interrupt(thread_t *thread)
|
---|
| 559 | {
|
---|
[63e27ef] | 560 | assert(thread != NULL);
|
---|
[a35b458] | 561 |
|
---|
[518dd43] | 562 | irq_spinlock_lock(&thread->lock, true);
|
---|
[a35b458] | 563 |
|
---|
[518dd43] | 564 | thread->interrupted = true;
|
---|
| 565 | bool sleeping = (thread->state == Sleeping);
|
---|
[a35b458] | 566 |
|
---|
[518dd43] | 567 | irq_spinlock_unlock(&thread->lock, true);
|
---|
[a35b458] | 568 |
|
---|
[518dd43] | 569 | if (sleeping)
|
---|
| 570 | waitq_interrupt_sleep(thread);
|
---|
| 571 | }
|
---|
| 572 |
|
---|
| 573 | /** Returns true if the thread was interrupted.
|
---|
[1b20da0] | 574 | *
|
---|
[518dd43] | 575 | * @param thread A valid thread object. User must guarantee it will
|
---|
| 576 | * be alive during the entire call.
|
---|
| 577 | * @return true if the thread was already interrupted via thread_interrupt().
|
---|
| 578 | */
|
---|
| 579 | bool thread_interrupted(thread_t *thread)
|
---|
| 580 | {
|
---|
[63e27ef] | 581 | assert(thread != NULL);
|
---|
[a35b458] | 582 |
|
---|
[518dd43] | 583 | bool interrupted;
|
---|
[a35b458] | 584 |
|
---|
[518dd43] | 585 | irq_spinlock_lock(&thread->lock, true);
|
---|
| 586 | interrupted = thread->interrupted;
|
---|
| 587 | irq_spinlock_unlock(&thread->lock, true);
|
---|
[a35b458] | 588 |
|
---|
[518dd43] | 589 | return interrupted;
|
---|
| 590 | }
|
---|
| 591 |
|
---|
[43ac0cc] | 592 | /** Prevent the current thread from being migrated to another processor. */
|
---|
| 593 | void thread_migration_disable(void)
|
---|
| 594 | {
|
---|
[63e27ef] | 595 | assert(THREAD);
|
---|
[a35b458] | 596 |
|
---|
[43ac0cc] | 597 | THREAD->nomigrate++;
|
---|
| 598 | }
|
---|
| 599 |
|
---|
| 600 | /** Allow the current thread to be migrated to another processor. */
|
---|
| 601 | void thread_migration_enable(void)
|
---|
| 602 | {
|
---|
[63e27ef] | 603 | assert(THREAD);
|
---|
| 604 | assert(THREAD->nomigrate > 0);
|
---|
[a35b458] | 605 |
|
---|
[6eef3c4] | 606 | if (THREAD->nomigrate > 0)
|
---|
| 607 | THREAD->nomigrate--;
|
---|
[43ac0cc] | 608 | }
|
---|
| 609 |
|
---|
[70527f1] | 610 | /** Thread sleep
|
---|
| 611 | *
|
---|
| 612 | * Suspend execution of the current thread.
|
---|
| 613 | *
|
---|
| 614 | * @param sec Number of seconds to sleep.
|
---|
| 615 | *
|
---|
| 616 | */
|
---|
[7f1c620] | 617 | void thread_sleep(uint32_t sec)
|
---|
[f761f1eb] | 618 | {
|
---|
[7c3fb9b] | 619 | /*
|
---|
| 620 | * Sleep in 1000 second steps to support
|
---|
| 621 | * full argument range
|
---|
| 622 | */
|
---|
[22e6802] | 623 | while (sec > 0) {
|
---|
| 624 | uint32_t period = (sec > 1000) ? 1000 : sec;
|
---|
[a35b458] | 625 |
|
---|
[22e6802] | 626 | thread_usleep(period * 1000000);
|
---|
| 627 | sec -= period;
|
---|
| 628 | }
|
---|
[f761f1eb] | 629 | }
|
---|
[70527f1] | 630 |
|
---|
[5110d0a] | 631 | errno_t thread_join(thread_t *thread)
|
---|
| 632 | {
|
---|
| 633 | return thread_join_timeout(thread, SYNCH_NO_TIMEOUT, SYNCH_FLAGS_NONE);
|
---|
| 634 | }
|
---|
| 635 |
|
---|
[fe19611] | 636 | /** Wait for another thread to exit.
|
---|
| 637 | *
|
---|
[da1bafb] | 638 | * @param thread Thread to join on exit.
|
---|
| 639 | * @param usec Timeout in microseconds.
|
---|
| 640 | * @param flags Mode of operation.
|
---|
[fe19611] | 641 | *
|
---|
| 642 | * @return An error code from errno.h or an error code from synch.h.
|
---|
[da1bafb] | 643 | *
|
---|
[fe19611] | 644 | */
|
---|
[b7fd2a0] | 645 | errno_t thread_join_timeout(thread_t *thread, uint32_t usec, unsigned int flags)
|
---|
[fe19611] | 646 | {
|
---|
[da1bafb] | 647 | if (thread == THREAD)
|
---|
[fe19611] | 648 | return EINVAL;
|
---|
[a35b458] | 649 |
|
---|
[fe19611] | 650 | /*
|
---|
| 651 | * Since thread join can only be called once on an undetached thread,
|
---|
| 652 | * the thread pointer is guaranteed to be still valid.
|
---|
| 653 | */
|
---|
[a35b458] | 654 |
|
---|
[da1bafb] | 655 | irq_spinlock_lock(&thread->lock, true);
|
---|
[63e27ef] | 656 | assert(!thread->detached);
|
---|
[da1bafb] | 657 | irq_spinlock_unlock(&thread->lock, true);
|
---|
[a35b458] | 658 |
|
---|
[897fd8f1] | 659 | return waitq_sleep_timeout(&thread->join_wq, usec, flags, NULL);
|
---|
[abf6c01] | 660 |
|
---|
| 661 | // FIXME: join should deallocate the thread.
|
---|
| 662 | // Current code calls detach after join, that's contrary to how
|
---|
| 663 | // join is used in other threading APIs.
|
---|
[fe19611] | 664 | }
|
---|
| 665 |
|
---|
| 666 | /** Detach thread.
|
---|
| 667 | *
|
---|
[df58e44] | 668 | * Mark the thread as detached. If the thread is already
|
---|
| 669 | * in the Lingering state, deallocate its resources.
|
---|
[fe19611] | 670 | *
|
---|
[da1bafb] | 671 | * @param thread Thread to be detached.
|
---|
| 672 | *
|
---|
[fe19611] | 673 | */
|
---|
[da1bafb] | 674 | void thread_detach(thread_t *thread)
|
---|
[fe19611] | 675 | {
|
---|
| 676 | /*
|
---|
[31d8e10] | 677 | * Since the thread is expected not to be already detached,
|
---|
[fe19611] | 678 | * pointer to it must be still valid.
|
---|
| 679 | */
|
---|
[da1bafb] | 680 | irq_spinlock_lock(&thread->lock, true);
|
---|
[63e27ef] | 681 | assert(!thread->detached);
|
---|
[a35b458] | 682 |
|
---|
[da1bafb] | 683 | if (thread->state == Lingering) {
|
---|
| 684 | /*
|
---|
| 685 | * Unlock &thread->lock and restore
|
---|
| 686 | * interrupts in thread_destroy().
|
---|
| 687 | */
|
---|
| 688 | thread_destroy(thread, true);
|
---|
[fe19611] | 689 | return;
|
---|
| 690 | } else {
|
---|
[da1bafb] | 691 | thread->detached = true;
|
---|
[fe19611] | 692 | }
|
---|
[a35b458] | 693 |
|
---|
[da1bafb] | 694 | irq_spinlock_unlock(&thread->lock, true);
|
---|
[fe19611] | 695 | }
|
---|
| 696 |
|
---|
[70527f1] | 697 | /** Thread usleep
|
---|
| 698 | *
|
---|
| 699 | * Suspend execution of the current thread.
|
---|
| 700 | *
|
---|
| 701 | * @param usec Number of microseconds to sleep.
|
---|
| 702 | *
|
---|
[1b20da0] | 703 | */
|
---|
[7f1c620] | 704 | void thread_usleep(uint32_t usec)
|
---|
[f761f1eb] | 705 | {
|
---|
| 706 | waitq_t wq;
|
---|
[a35b458] | 707 |
|
---|
[f761f1eb] | 708 | waitq_initialize(&wq);
|
---|
[a35b458] | 709 |
|
---|
[897fd8f1] | 710 | (void) waitq_sleep_timeout(&wq, usec, SYNCH_FLAGS_NON_BLOCKING, NULL);
|
---|
[f761f1eb] | 711 | }
|
---|
| 712 |
|
---|
[ef1eab7] | 713 | static void thread_print(thread_t *thread, bool additional)
|
---|
[5dcee525] | 714 | {
|
---|
[1ba37fa] | 715 | uint64_t ucycles, kcycles;
|
---|
| 716 | char usuffix, ksuffix;
|
---|
[da1bafb] | 717 | order_suffix(thread->ucycles, &ucycles, &usuffix);
|
---|
| 718 | order_suffix(thread->kcycles, &kcycles, &ksuffix);
|
---|
[a35b458] | 719 |
|
---|
[577f042a] | 720 | char *name;
|
---|
| 721 | if (str_cmp(thread->name, "uinit") == 0)
|
---|
| 722 | name = thread->task->name;
|
---|
| 723 | else
|
---|
| 724 | name = thread->name;
|
---|
[a35b458] | 725 |
|
---|
[ef1eab7] | 726 | if (additional)
|
---|
[c1b073b7] | 727 | printf("%-8" PRIu64 " %p %p %9" PRIu64 "%c %9" PRIu64 "%c ",
|
---|
[577f042a] | 728 | thread->tid, thread->thread_code, thread->kstack,
|
---|
| 729 | ucycles, usuffix, kcycles, ksuffix);
|
---|
[48dcc69] | 730 | else
|
---|
[c1b073b7] | 731 | printf("%-8" PRIu64 " %-14s %p %-8s %p %-5" PRIu32 "\n",
|
---|
[577f042a] | 732 | thread->tid, name, thread, thread_states[thread->state],
|
---|
[26aafe8] | 733 | thread->task, thread->task->container);
|
---|
[a35b458] | 734 |
|
---|
[ef1eab7] | 735 | if (additional) {
|
---|
[48dcc69] | 736 | if (thread->cpu)
|
---|
| 737 | printf("%-5u", thread->cpu->id);
|
---|
| 738 | else
|
---|
| 739 | printf("none ");
|
---|
[a35b458] | 740 |
|
---|
[48dcc69] | 741 | if (thread->state == Sleeping) {
|
---|
[c1b073b7] | 742 | printf(" %p", thread->sleep_queue);
|
---|
[48dcc69] | 743 | }
|
---|
[a35b458] | 744 |
|
---|
[48dcc69] | 745 | printf("\n");
|
---|
[43b1e86] | 746 | }
|
---|
[5dcee525] | 747 | }
|
---|
| 748 |
|
---|
[da1bafb] | 749 | /** Print list of threads debug info
|
---|
[48dcc69] | 750 | *
|
---|
| 751 | * @param additional Print additional information.
|
---|
[da1bafb] | 752 | *
|
---|
| 753 | */
|
---|
[48dcc69] | 754 | void thread_print_list(bool additional)
|
---|
[55ab0f1] | 755 | {
|
---|
[ef1eab7] | 756 | thread_t *thread;
|
---|
| 757 |
|
---|
[55ab0f1] | 758 | /* Messing with thread structures, avoid deadlock */
|
---|
[da1bafb] | 759 | irq_spinlock_lock(&threads_lock, true);
|
---|
[a35b458] | 760 |
|
---|
[c1b073b7] | 761 | if (sizeof(void *) <= 4) {
|
---|
| 762 | if (additional)
|
---|
| 763 | printf("[id ] [code ] [stack ] [ucycles ] [kcycles ]"
|
---|
| 764 | " [cpu] [waitqueue]\n");
|
---|
| 765 | else
|
---|
| 766 | printf("[id ] [name ] [address ] [state ] [task ]"
|
---|
| 767 | " [ctn]\n");
|
---|
| 768 | } else {
|
---|
| 769 | if (additional) {
|
---|
| 770 | printf("[id ] [code ] [stack ] [ucycles ] [kcycles ]"
|
---|
| 771 | " [cpu] [waitqueue ]\n");
|
---|
| 772 | } else
|
---|
| 773 | printf("[id ] [name ] [address ] [state ]"
|
---|
| 774 | " [task ] [ctn]\n");
|
---|
| 775 | }
|
---|
[a35b458] | 776 |
|
---|
[aab5e46] | 777 | thread = thread_first();
|
---|
| 778 | while (thread != NULL) {
|
---|
[ef1eab7] | 779 | thread_print(thread, additional);
|
---|
[aab5e46] | 780 | thread = thread_next(thread);
|
---|
[ef1eab7] | 781 | }
|
---|
[a35b458] | 782 |
|
---|
[da1bafb] | 783 | irq_spinlock_unlock(&threads_lock, true);
|
---|
[55ab0f1] | 784 | }
|
---|
[9f52563] | 785 |
|
---|
[016acbe] | 786 | /** Check whether thread exists.
|
---|
| 787 | *
|
---|
| 788 | * Note that threads_lock must be already held and
|
---|
| 789 | * interrupts must be already disabled.
|
---|
| 790 | *
|
---|
[da1bafb] | 791 | * @param thread Pointer to thread.
|
---|
[016acbe] | 792 | *
|
---|
| 793 | * @return True if thread t is known to the system, false otherwise.
|
---|
[da1bafb] | 794 | *
|
---|
[016acbe] | 795 | */
|
---|
[da1bafb] | 796 | bool thread_exists(thread_t *thread)
|
---|
[016acbe] | 797 | {
|
---|
[63e27ef] | 798 | assert(interrupts_disabled());
|
---|
| 799 | assert(irq_spinlock_locked(&threads_lock));
|
---|
[1d432f9] | 800 |
|
---|
[ef1eab7] | 801 | odlink_t *odlink = odict_find_eq(&threads, thread, NULL);
|
---|
| 802 | return odlink != NULL;
|
---|
[016acbe] | 803 | }
|
---|
| 804 |
|
---|
[cce6acf] | 805 | /** Update accounting of current thread.
|
---|
| 806 | *
|
---|
| 807 | * Note that thread_lock on THREAD must be already held and
|
---|
| 808 | * interrupts must be already disabled.
|
---|
| 809 | *
|
---|
[da1bafb] | 810 | * @param user True to update user accounting, false for kernel.
|
---|
| 811 | *
|
---|
[cce6acf] | 812 | */
|
---|
[a2a00e8] | 813 | void thread_update_accounting(bool user)
|
---|
[cce6acf] | 814 | {
|
---|
| 815 | uint64_t time = get_cycle();
|
---|
[1d432f9] | 816 |
|
---|
[63e27ef] | 817 | assert(interrupts_disabled());
|
---|
| 818 | assert(irq_spinlock_locked(&THREAD->lock));
|
---|
[a35b458] | 819 |
|
---|
[da1bafb] | 820 | if (user)
|
---|
[a2a00e8] | 821 | THREAD->ucycles += time - THREAD->last_cycle;
|
---|
[da1bafb] | 822 | else
|
---|
[a2a00e8] | 823 | THREAD->kcycles += time - THREAD->last_cycle;
|
---|
[a35b458] | 824 |
|
---|
[cce6acf] | 825 | THREAD->last_cycle = time;
|
---|
| 826 | }
|
---|
| 827 |
|
---|
[e1b6742] | 828 | /** Find thread structure corresponding to thread ID.
|
---|
| 829 | *
|
---|
| 830 | * The threads_lock must be already held by the caller of this function and
|
---|
| 831 | * interrupts must be disabled.
|
---|
| 832 | *
|
---|
| 833 | * @param id Thread ID.
|
---|
| 834 | *
|
---|
| 835 | * @return Thread structure address or NULL if there is no such thread ID.
|
---|
| 836 | *
|
---|
| 837 | */
|
---|
| 838 | thread_t *thread_find_by_id(thread_id_t thread_id)
|
---|
| 839 | {
|
---|
[ef1eab7] | 840 | thread_t *thread;
|
---|
| 841 |
|
---|
[63e27ef] | 842 | assert(interrupts_disabled());
|
---|
| 843 | assert(irq_spinlock_locked(&threads_lock));
|
---|
[a35b458] | 844 |
|
---|
[aab5e46] | 845 | thread = thread_first();
|
---|
| 846 | while (thread != NULL) {
|
---|
[ef1eab7] | 847 | if (thread->tid == thread_id)
|
---|
| 848 | return thread;
|
---|
[a35b458] | 849 |
|
---|
[aab5e46] | 850 | thread = thread_next(thread);
|
---|
[ef1eab7] | 851 | }
|
---|
[a35b458] | 852 |
|
---|
[ef1eab7] | 853 | return NULL;
|
---|
[e1b6742] | 854 | }
|
---|
| 855 |
|
---|
[aab5e46] | 856 | /** Get count of threads.
|
---|
| 857 | *
|
---|
| 858 | * @return Number of threads in the system
|
---|
| 859 | */
|
---|
| 860 | size_t thread_count(void)
|
---|
| 861 | {
|
---|
| 862 | assert(interrupts_disabled());
|
---|
| 863 | assert(irq_spinlock_locked(&threads_lock));
|
---|
| 864 |
|
---|
| 865 | return odict_count(&threads);
|
---|
| 866 | }
|
---|
| 867 |
|
---|
| 868 | /** Get first thread.
|
---|
| 869 | *
|
---|
| 870 | * @return Pointer to first thread or @c NULL if there are none.
|
---|
| 871 | */
|
---|
| 872 | thread_t *thread_first(void)
|
---|
| 873 | {
|
---|
| 874 | odlink_t *odlink;
|
---|
| 875 |
|
---|
| 876 | assert(interrupts_disabled());
|
---|
| 877 | assert(irq_spinlock_locked(&threads_lock));
|
---|
| 878 |
|
---|
| 879 | odlink = odict_first(&threads);
|
---|
| 880 | if (odlink == NULL)
|
---|
| 881 | return NULL;
|
---|
| 882 |
|
---|
| 883 | return odict_get_instance(odlink, thread_t, lthreads);
|
---|
| 884 | }
|
---|
| 885 |
|
---|
| 886 | /** Get next thread.
|
---|
| 887 | *
|
---|
| 888 | * @param cur Current thread
|
---|
| 889 | * @return Pointer to next thread or @c NULL if there are no more threads.
|
---|
| 890 | */
|
---|
| 891 | thread_t *thread_next(thread_t *cur)
|
---|
| 892 | {
|
---|
| 893 | odlink_t *odlink;
|
---|
| 894 |
|
---|
| 895 | assert(interrupts_disabled());
|
---|
| 896 | assert(irq_spinlock_locked(&threads_lock));
|
---|
| 897 |
|
---|
| 898 | odlink = odict_next(&cur->lthreads, &threads);
|
---|
| 899 | if (odlink == NULL)
|
---|
| 900 | return NULL;
|
---|
| 901 |
|
---|
| 902 | return odict_get_instance(odlink, thread_t, lthreads);
|
---|
| 903 | }
|
---|
| 904 |
|
---|
[5b7a107] | 905 | #ifdef CONFIG_UDEBUG
|
---|
| 906 |
|
---|
[df58e44] | 907 | void thread_stack_trace(thread_id_t thread_id)
|
---|
| 908 | {
|
---|
| 909 | irq_spinlock_lock(&threads_lock, true);
|
---|
[a35b458] | 910 |
|
---|
[df58e44] | 911 | thread_t *thread = thread_find_by_id(thread_id);
|
---|
| 912 | if (thread == NULL) {
|
---|
| 913 | printf("No such thread.\n");
|
---|
| 914 | irq_spinlock_unlock(&threads_lock, true);
|
---|
| 915 | return;
|
---|
| 916 | }
|
---|
[a35b458] | 917 |
|
---|
[df58e44] | 918 | irq_spinlock_lock(&thread->lock, false);
|
---|
[a35b458] | 919 |
|
---|
[df58e44] | 920 | /*
|
---|
| 921 | * Schedule a stack trace to be printed
|
---|
| 922 | * just before the thread is scheduled next.
|
---|
| 923 | *
|
---|
| 924 | * If the thread is sleeping then try to interrupt
|
---|
| 925 | * the sleep. Any request for printing an uspace stack
|
---|
| 926 | * trace from within the kernel should be always
|
---|
| 927 | * considered a last resort debugging means, therefore
|
---|
| 928 | * forcing the thread's sleep to be interrupted
|
---|
| 929 | * is probably justifiable.
|
---|
| 930 | */
|
---|
[a35b458] | 931 |
|
---|
[df58e44] | 932 | bool sleeping = false;
|
---|
| 933 | istate_t *istate = thread->udebug.uspace_state;
|
---|
| 934 | if (istate != NULL) {
|
---|
| 935 | printf("Scheduling thread stack trace.\n");
|
---|
| 936 | thread->btrace = true;
|
---|
| 937 | if (thread->state == Sleeping)
|
---|
| 938 | sleeping = true;
|
---|
| 939 | } else
|
---|
| 940 | printf("Thread interrupt state not available.\n");
|
---|
[a35b458] | 941 |
|
---|
[df58e44] | 942 | irq_spinlock_unlock(&thread->lock, false);
|
---|
[a35b458] | 943 |
|
---|
[df58e44] | 944 | if (sleeping)
|
---|
| 945 | waitq_interrupt_sleep(thread);
|
---|
[a35b458] | 946 |
|
---|
[df58e44] | 947 | irq_spinlock_unlock(&threads_lock, true);
|
---|
| 948 | }
|
---|
[e1b6742] | 949 |
|
---|
[5b7a107] | 950 | #endif /* CONFIG_UDEBUG */
|
---|
[e1b6742] | 951 |
|
---|
[ef1eab7] | 952 | /** Get key function for the @c threads ordered dictionary.
|
---|
| 953 | *
|
---|
| 954 | * @param odlink Link
|
---|
| 955 | * @return Pointer to thread structure cast as 'void *'
|
---|
| 956 | */
|
---|
| 957 | static void *threads_getkey(odlink_t *odlink)
|
---|
| 958 | {
|
---|
| 959 | thread_t *thread = odict_get_instance(odlink, thread_t, lthreads);
|
---|
| 960 | return (void *) thread;
|
---|
| 961 | }
|
---|
| 962 |
|
---|
| 963 | /** Key comparison function for the @c threads ordered dictionary.
|
---|
| 964 | *
|
---|
| 965 | * @param a Pointer to thread A
|
---|
| 966 | * @param b Pointer to thread B
|
---|
| 967 | * @return -1, 0, 1 iff pointer to A is less than, equal to, greater than B
|
---|
| 968 | */
|
---|
| 969 | static int threads_cmp(void *a, void *b)
|
---|
| 970 | {
|
---|
| 971 | if (a > b)
|
---|
| 972 | return -1;
|
---|
| 973 | else if (a == b)
|
---|
| 974 | return 0;
|
---|
| 975 | else
|
---|
| 976 | return +1;
|
---|
| 977 | }
|
---|
| 978 |
|
---|
[9f52563] | 979 | /** Process syscall to create new thread.
|
---|
| 980 | *
|
---|
| 981 | */
|
---|
[5a5269d] | 982 | sys_errno_t sys_thread_create(uspace_ptr_uspace_arg_t uspace_uarg, uspace_ptr_char uspace_name,
|
---|
| 983 | size_t name_len, uspace_ptr_thread_id_t uspace_thread_id)
|
---|
[9f52563] | 984 | {
|
---|
[24345a5] | 985 | if (name_len > THREAD_NAME_BUFLEN - 1)
|
---|
[7faabb7] | 986 | name_len = THREAD_NAME_BUFLEN - 1;
|
---|
[a35b458] | 987 |
|
---|
[da1bafb] | 988 | char namebuf[THREAD_NAME_BUFLEN];
|
---|
[b7fd2a0] | 989 | errno_t rc = copy_from_uspace(namebuf, uspace_name, name_len);
|
---|
[a53ed3a] | 990 | if (rc != EOK)
|
---|
[b7fd2a0] | 991 | return (sys_errno_t) rc;
|
---|
[a35b458] | 992 |
|
---|
[b60c582] | 993 | namebuf[name_len] = 0;
|
---|
[a35b458] | 994 |
|
---|
[4680ef5] | 995 | /*
|
---|
| 996 | * In case of failure, kernel_uarg will be deallocated in this function.
|
---|
| 997 | * In case of success, kernel_uarg will be freed in uinit().
|
---|
| 998 | */
|
---|
[da1bafb] | 999 | uspace_arg_t *kernel_uarg =
|
---|
[11b285d] | 1000 | (uspace_arg_t *) malloc(sizeof(uspace_arg_t));
|
---|
[7473807] | 1001 | if (!kernel_uarg)
|
---|
| 1002 | return (sys_errno_t) ENOMEM;
|
---|
[a35b458] | 1003 |
|
---|
[e3c762cd] | 1004 | rc = copy_from_uspace(kernel_uarg, uspace_uarg, sizeof(uspace_arg_t));
|
---|
[a53ed3a] | 1005 | if (rc != EOK) {
|
---|
[e3c762cd] | 1006 | free(kernel_uarg);
|
---|
[b7fd2a0] | 1007 | return (sys_errno_t) rc;
|
---|
[e3c762cd] | 1008 | }
|
---|
[a35b458] | 1009 |
|
---|
[da1bafb] | 1010 | thread_t *thread = thread_create(uinit, kernel_uarg, TASK,
|
---|
[6eef3c4] | 1011 | THREAD_FLAG_USPACE | THREAD_FLAG_NOATTACH, namebuf);
|
---|
[da1bafb] | 1012 | if (thread) {
|
---|
[5a5269d] | 1013 | if (uspace_thread_id) {
|
---|
[da1bafb] | 1014 | rc = copy_to_uspace(uspace_thread_id, &thread->tid,
|
---|
| 1015 | sizeof(thread->tid));
|
---|
[a53ed3a] | 1016 | if (rc != EOK) {
|
---|
[d8431986] | 1017 | /*
|
---|
| 1018 | * We have encountered a failure, but the thread
|
---|
| 1019 | * has already been created. We need to undo its
|
---|
| 1020 | * creation now.
|
---|
| 1021 | */
|
---|
[a35b458] | 1022 |
|
---|
[d8431986] | 1023 | /*
|
---|
[ea7890e7] | 1024 | * The new thread structure is initialized, but
|
---|
| 1025 | * is still not visible to the system.
|
---|
[d8431986] | 1026 | * We can safely deallocate it.
|
---|
| 1027 | */
|
---|
[82d515e9] | 1028 | slab_free(thread_cache, thread);
|
---|
[da1bafb] | 1029 | free(kernel_uarg);
|
---|
[a35b458] | 1030 |
|
---|
[b7fd2a0] | 1031 | return (sys_errno_t) rc;
|
---|
[3bacee1] | 1032 | }
|
---|
[d8431986] | 1033 | }
|
---|
[a35b458] | 1034 |
|
---|
[9a1b20c] | 1035 | #ifdef CONFIG_UDEBUG
|
---|
[13964ef] | 1036 | /*
|
---|
| 1037 | * Generate udebug THREAD_B event and attach the thread.
|
---|
| 1038 | * This must be done atomically (with the debug locks held),
|
---|
| 1039 | * otherwise we would either miss some thread or receive
|
---|
| 1040 | * THREAD_B events for threads that already existed
|
---|
| 1041 | * and could be detected with THREAD_READ before.
|
---|
| 1042 | */
|
---|
[da1bafb] | 1043 | udebug_thread_b_event_attach(thread, TASK);
|
---|
[13964ef] | 1044 | #else
|
---|
[da1bafb] | 1045 | thread_attach(thread, TASK);
|
---|
[9a1b20c] | 1046 | #endif
|
---|
[da1bafb] | 1047 | thread_ready(thread);
|
---|
[a35b458] | 1048 |
|
---|
[d8431986] | 1049 | return 0;
|
---|
[201abde] | 1050 | } else
|
---|
[0f250f9] | 1051 | free(kernel_uarg);
|
---|
[a35b458] | 1052 |
|
---|
[b7fd2a0] | 1053 | return (sys_errno_t) ENOMEM;
|
---|
[9f52563] | 1054 | }
|
---|
| 1055 |
|
---|
| 1056 | /** Process syscall to terminate thread.
|
---|
| 1057 | *
|
---|
| 1058 | */
|
---|
[b7fd2a0] | 1059 | sys_errno_t sys_thread_exit(int uspace_status)
|
---|
[9f52563] | 1060 | {
|
---|
[68091bd] | 1061 | thread_exit();
|
---|
[9f52563] | 1062 | }
|
---|
[b45c443] | 1063 |
|
---|
[3ce7f082] | 1064 | /** Syscall for getting TID.
|
---|
| 1065 | *
|
---|
[201abde] | 1066 | * @param uspace_thread_id Userspace address of 8-byte buffer where to store
|
---|
| 1067 | * current thread ID.
|
---|
| 1068 | *
|
---|
| 1069 | * @return 0 on success or an error code from @ref errno.h.
|
---|
[da1bafb] | 1070 | *
|
---|
[b45c443] | 1071 | */
|
---|
[5a5269d] | 1072 | sys_errno_t sys_thread_get_id(uspace_ptr_thread_id_t uspace_thread_id)
|
---|
[3ce7f082] | 1073 | {
|
---|
| 1074 | /*
|
---|
| 1075 | * No need to acquire lock on THREAD because tid
|
---|
| 1076 | * remains constant for the lifespan of the thread.
|
---|
[da1bafb] | 1077 | *
|
---|
[3ce7f082] | 1078 | */
|
---|
[b7fd2a0] | 1079 | return (sys_errno_t) copy_to_uspace(uspace_thread_id, &THREAD->tid,
|
---|
[201abde] | 1080 | sizeof(THREAD->tid));
|
---|
[3ce7f082] | 1081 | }
|
---|
[6f4495f5] | 1082 |
|
---|
[d9ece1cb] | 1083 | /** Syscall wrapper for sleeping. */
|
---|
[b7fd2a0] | 1084 | sys_errno_t sys_thread_usleep(uint32_t usec)
|
---|
[d9ece1cb] | 1085 | {
|
---|
[22e6802] | 1086 | thread_usleep(usec);
|
---|
[d9ece1cb] | 1087 | return 0;
|
---|
| 1088 | }
|
---|
| 1089 |
|
---|
[b7fd2a0] | 1090 | sys_errno_t sys_thread_udelay(uint32_t usec)
|
---|
[7e7b791] | 1091 | {
|
---|
[8d6c1f1] | 1092 | delay(usec);
|
---|
[7e7b791] | 1093 | return 0;
|
---|
| 1094 | }
|
---|
| 1095 |
|
---|
[3ce7f082] | 1096 | /** @}
|
---|
| 1097 | */
|
---|