[f761f1eb] | 1 | /*
|
---|
| 2 | * Copyright (C) 2001-2004 Jakub Jermar
|
---|
| 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
[cc73a8a1] | 29 | /** @addtogroup genericproc
|
---|
[b45c443] | 30 | * @{
|
---|
| 31 | */
|
---|
| 32 |
|
---|
[9179d0a] | 33 | /**
|
---|
[b45c443] | 34 | * @file
|
---|
[9179d0a] | 35 | * @brief Thread management functions.
|
---|
| 36 | */
|
---|
| 37 |
|
---|
[f761f1eb] | 38 | #include <proc/scheduler.h>
|
---|
| 39 | #include <proc/thread.h>
|
---|
| 40 | #include <proc/task.h>
|
---|
[0f250f9] | 41 | #include <proc/uarg.h>
|
---|
[f761f1eb] | 42 | #include <mm/frame.h>
|
---|
| 43 | #include <mm/page.h>
|
---|
| 44 | #include <arch/asm.h>
|
---|
[cce6acf] | 45 | #include <arch/cycle.h>
|
---|
[f761f1eb] | 46 | #include <arch.h>
|
---|
| 47 | #include <synch/synch.h>
|
---|
| 48 | #include <synch/spinlock.h>
|
---|
| 49 | #include <synch/waitq.h>
|
---|
| 50 | #include <synch/rwlock.h>
|
---|
| 51 | #include <cpu.h>
|
---|
| 52 | #include <func.h>
|
---|
| 53 | #include <context.h>
|
---|
[016acbe] | 54 | #include <adt/btree.h>
|
---|
[5c9a08b] | 55 | #include <adt/list.h>
|
---|
[f761f1eb] | 56 | #include <typedefs.h>
|
---|
| 57 | #include <time/clock.h>
|
---|
[4ffa9e0] | 58 | #include <config.h>
|
---|
| 59 | #include <arch/interrupt.h>
|
---|
[26a8604f] | 60 | #include <smp/ipi.h>
|
---|
[f2ffad4] | 61 | #include <arch/faddr.h>
|
---|
[23684b7] | 62 | #include <atomic.h>
|
---|
[9c0a9b3] | 63 | #include <memstr.h>
|
---|
[55ab0f1] | 64 | #include <print.h>
|
---|
[266294a9] | 65 | #include <mm/slab.h>
|
---|
| 66 | #include <debug.h>
|
---|
[9f52563] | 67 | #include <main/uinit.h>
|
---|
[e3c762cd] | 68 | #include <syscall/copy.h>
|
---|
| 69 | #include <errno.h>
|
---|
[f761f1eb] | 70 |
|
---|
[fe19611] | 71 |
|
---|
| 72 | /** Thread states */
|
---|
| 73 | char *thread_states[] = {
|
---|
| 74 | "Invalid",
|
---|
| 75 | "Running",
|
---|
| 76 | "Sleeping",
|
---|
| 77 | "Ready",
|
---|
| 78 | "Entering",
|
---|
| 79 | "Exiting",
|
---|
| 80 | "Undead"
|
---|
| 81 | };
|
---|
[f761f1eb] | 82 |
|
---|
[88169d9] | 83 | /** Lock protecting the threads_btree B+tree. For locking rules, see declaration thereof. */
|
---|
[016acbe] | 84 | SPINLOCK_INITIALIZE(threads_lock);
|
---|
[88169d9] | 85 |
|
---|
| 86 | /** B+tree of all threads.
|
---|
| 87 | *
|
---|
| 88 | * When a thread is found in the threads_btree B+tree, it is guaranteed to exist as long
|
---|
| 89 | * as the threads_lock is held.
|
---|
| 90 | */
|
---|
| 91 | btree_t threads_btree;
|
---|
[f761f1eb] | 92 |
|
---|
[dc747e3] | 93 | SPINLOCK_INITIALIZE(tidlock);
|
---|
[7f1c620] | 94 | uint32_t last_tid = 0;
|
---|
[f761f1eb] | 95 |
|
---|
[266294a9] | 96 | static slab_cache_t *thread_slab;
|
---|
[f76fed4] | 97 | #ifdef ARCH_HAS_FPU
|
---|
| 98 | slab_cache_t *fpu_context_slab;
|
---|
| 99 | #endif
|
---|
[266294a9] | 100 |
|
---|
[70527f1] | 101 | /** Thread wrapper
|
---|
| 102 | *
|
---|
| 103 | * This wrapper is provided to ensure that every thread
|
---|
[f761f1eb] | 104 | * makes a call to thread_exit() when its implementing
|
---|
| 105 | * function returns.
|
---|
| 106 | *
|
---|
[22f7769] | 107 | * interrupts_disable() is assumed.
|
---|
[70527f1] | 108 | *
|
---|
[f761f1eb] | 109 | */
|
---|
[e16e036a] | 110 | static void cushion(void)
|
---|
[f761f1eb] | 111 | {
|
---|
[43114c5] | 112 | void (*f)(void *) = THREAD->thread_code;
|
---|
| 113 | void *arg = THREAD->thread_arg;
|
---|
[449dc1ed] | 114 | THREAD->last_cycle = get_cycle();
|
---|
[f761f1eb] | 115 |
|
---|
[0313ff0] | 116 | /* This is where each thread wakes up after its creation */
|
---|
[43114c5] | 117 | spinlock_unlock(&THREAD->lock);
|
---|
[22f7769] | 118 | interrupts_enable();
|
---|
[f761f1eb] | 119 |
|
---|
| 120 | f(arg);
|
---|
[0313ff0] | 121 |
|
---|
| 122 | /* Accumulate accounting to the task */
|
---|
| 123 | ipl_t ipl = interrupts_disable();
|
---|
| 124 |
|
---|
| 125 | spinlock_lock(&THREAD->lock);
|
---|
[62b6d17] | 126 | if (!THREAD->uncounted) {
|
---|
| 127 | thread_update_accounting();
|
---|
| 128 | uint64_t cycles = THREAD->cycles;
|
---|
| 129 | THREAD->cycles = 0;
|
---|
| 130 | spinlock_unlock(&THREAD->lock);
|
---|
| 131 |
|
---|
| 132 | spinlock_lock(&TASK->lock);
|
---|
| 133 | TASK->cycles += cycles;
|
---|
| 134 | spinlock_unlock(&TASK->lock);
|
---|
| 135 | } else
|
---|
| 136 | spinlock_unlock(&THREAD->lock);
|
---|
[0313ff0] | 137 |
|
---|
| 138 | interrupts_restore(ipl);
|
---|
| 139 |
|
---|
[f761f1eb] | 140 | thread_exit();
|
---|
| 141 | /* not reached */
|
---|
| 142 | }
|
---|
| 143 |
|
---|
[266294a9] | 144 | /** Initialization and allocation for thread_t structure */
|
---|
| 145 | static int thr_constructor(void *obj, int kmflags)
|
---|
| 146 | {
|
---|
[764c302] | 147 | thread_t *t = (thread_t *) obj;
|
---|
[266294a9] | 148 |
|
---|
| 149 | spinlock_initialize(&t->lock, "thread_t_lock");
|
---|
| 150 | link_initialize(&t->rq_link);
|
---|
| 151 | link_initialize(&t->wq_link);
|
---|
| 152 | link_initialize(&t->th_link);
|
---|
[32fffef0] | 153 |
|
---|
| 154 | /* call the architecture-specific part of the constructor */
|
---|
| 155 | thr_constructor_arch(t);
|
---|
[266294a9] | 156 |
|
---|
[f76fed4] | 157 | #ifdef ARCH_HAS_FPU
|
---|
| 158 | # ifdef CONFIG_FPU_LAZY
|
---|
| 159 | t->saved_fpu_context = NULL;
|
---|
| 160 | # else
|
---|
| 161 | t->saved_fpu_context = slab_alloc(fpu_context_slab,kmflags);
|
---|
| 162 | if (!t->saved_fpu_context)
|
---|
| 163 | return -1;
|
---|
| 164 | # endif
|
---|
| 165 | #endif
|
---|
| 166 |
|
---|
[e45f81a] | 167 | t->kstack = frame_alloc(STACK_FRAMES, FRAME_KA | kmflags);
|
---|
| 168 | if (! t->kstack) {
|
---|
[f76fed4] | 169 | #ifdef ARCH_HAS_FPU
|
---|
| 170 | if (t->saved_fpu_context)
|
---|
| 171 | slab_free(fpu_context_slab,t->saved_fpu_context);
|
---|
| 172 | #endif
|
---|
[266294a9] | 173 | return -1;
|
---|
[f76fed4] | 174 | }
|
---|
[266294a9] | 175 |
|
---|
| 176 | return 0;
|
---|
| 177 | }
|
---|
| 178 |
|
---|
| 179 | /** Destruction of thread_t object */
|
---|
| 180 | static int thr_destructor(void *obj)
|
---|
| 181 | {
|
---|
[764c302] | 182 | thread_t *t = (thread_t *) obj;
|
---|
[266294a9] | 183 |
|
---|
[32fffef0] | 184 | /* call the architecture-specific part of the destructor */
|
---|
| 185 | thr_destructor_arch(t);
|
---|
| 186 |
|
---|
[2e9eae2] | 187 | frame_free(KA2PA(t->kstack));
|
---|
[f76fed4] | 188 | #ifdef ARCH_HAS_FPU
|
---|
| 189 | if (t->saved_fpu_context)
|
---|
| 190 | slab_free(fpu_context_slab,t->saved_fpu_context);
|
---|
| 191 | #endif
|
---|
[266294a9] | 192 | return 1; /* One page freed */
|
---|
| 193 | }
|
---|
[70527f1] | 194 |
|
---|
| 195 | /** Initialize threads
|
---|
| 196 | *
|
---|
| 197 | * Initialize kernel threads support.
|
---|
| 198 | *
|
---|
| 199 | */
|
---|
[f761f1eb] | 200 | void thread_init(void)
|
---|
| 201 | {
|
---|
[43114c5] | 202 | THREAD = NULL;
|
---|
[80d2bdb] | 203 | atomic_set(&nrdy,0);
|
---|
[266294a9] | 204 | thread_slab = slab_cache_create("thread_slab",
|
---|
| 205 | sizeof(thread_t),0,
|
---|
| 206 | thr_constructor, thr_destructor, 0);
|
---|
[f76fed4] | 207 | #ifdef ARCH_HAS_FPU
|
---|
| 208 | fpu_context_slab = slab_cache_create("fpu_slab",
|
---|
| 209 | sizeof(fpu_context_t),
|
---|
| 210 | FPU_CONTEXT_ALIGN,
|
---|
| 211 | NULL, NULL, 0);
|
---|
| 212 | #endif
|
---|
[f761f1eb] | 213 |
|
---|
[016acbe] | 214 | btree_create(&threads_btree);
|
---|
| 215 | }
|
---|
[70527f1] | 216 |
|
---|
| 217 | /** Make thread ready
|
---|
| 218 | *
|
---|
| 219 | * Switch thread t to the ready state.
|
---|
| 220 | *
|
---|
| 221 | * @param t Thread to make ready.
|
---|
| 222 | *
|
---|
| 223 | */
|
---|
[f761f1eb] | 224 | void thread_ready(thread_t *t)
|
---|
| 225 | {
|
---|
| 226 | cpu_t *cpu;
|
---|
| 227 | runq_t *r;
|
---|
[22f7769] | 228 | ipl_t ipl;
|
---|
[80d2bdb] | 229 | int i, avg;
|
---|
[f761f1eb] | 230 |
|
---|
[22f7769] | 231 | ipl = interrupts_disable();
|
---|
[f761f1eb] | 232 |
|
---|
| 233 | spinlock_lock(&t->lock);
|
---|
| 234 |
|
---|
[fbcfd458] | 235 | ASSERT(! (t->state == Ready));
|
---|
| 236 |
|
---|
[22f7769] | 237 | i = (t->priority < RQ_COUNT -1) ? ++t->priority : t->priority;
|
---|
[f761f1eb] | 238 |
|
---|
[8262010] | 239 | cpu = CPU;
|
---|
[32fffef0] | 240 | if (t->flags & THREAD_FLAG_WIRED) {
|
---|
[f761f1eb] | 241 | cpu = t->cpu;
|
---|
| 242 | }
|
---|
[81c4c6da] | 243 | t->state = Ready;
|
---|
[f761f1eb] | 244 | spinlock_unlock(&t->lock);
|
---|
| 245 |
|
---|
[70527f1] | 246 | /*
|
---|
[f761f1eb] | 247 | * Append t to respective ready queue on respective processor.
|
---|
| 248 | */
|
---|
| 249 | r = &cpu->rq[i];
|
---|
| 250 | spinlock_lock(&r->lock);
|
---|
| 251 | list_append(&t->rq_link, &r->rq_head);
|
---|
| 252 | r->n++;
|
---|
| 253 | spinlock_unlock(&r->lock);
|
---|
| 254 |
|
---|
[59e07c91] | 255 | atomic_inc(&nrdy);
|
---|
[80d2bdb] | 256 | avg = atomic_get(&nrdy) / config.cpu_active;
|
---|
[248fc1a] | 257 | atomic_inc(&cpu->nrdy);
|
---|
[76cec1e] | 258 |
|
---|
[22f7769] | 259 | interrupts_restore(ipl);
|
---|
[f761f1eb] | 260 | }
|
---|
| 261 |
|
---|
[266294a9] | 262 | /** Destroy thread memory structure
|
---|
| 263 | *
|
---|
| 264 | * Detach thread from all queues, cpus etc. and destroy it.
|
---|
| 265 | *
|
---|
| 266 | * Assume thread->lock is held!!
|
---|
| 267 | */
|
---|
| 268 | void thread_destroy(thread_t *t)
|
---|
| 269 | {
|
---|
[7509ddc] | 270 | bool destroy_task = false;
|
---|
| 271 |
|
---|
[c778c1a] | 272 | ASSERT(t->state == Exiting || t->state == Undead);
|
---|
[266294a9] | 273 | ASSERT(t->task);
|
---|
| 274 | ASSERT(t->cpu);
|
---|
| 275 |
|
---|
| 276 | spinlock_lock(&t->cpu->lock);
|
---|
| 277 | if(t->cpu->fpu_owner==t)
|
---|
| 278 | t->cpu->fpu_owner=NULL;
|
---|
| 279 | spinlock_unlock(&t->cpu->lock);
|
---|
| 280 |
|
---|
[7509ddc] | 281 | spinlock_unlock(&t->lock);
|
---|
| 282 |
|
---|
| 283 | spinlock_lock(&threads_lock);
|
---|
[7f1c620] | 284 | btree_remove(&threads_btree, (btree_key_t) ((uintptr_t ) t), NULL);
|
---|
[7509ddc] | 285 | spinlock_unlock(&threads_lock);
|
---|
| 286 |
|
---|
[266294a9] | 287 | /*
|
---|
| 288 | * Detach from the containing task.
|
---|
| 289 | */
|
---|
| 290 | spinlock_lock(&t->task->lock);
|
---|
| 291 | list_remove(&t->th_link);
|
---|
[7509ddc] | 292 | if (--t->task->refcount == 0) {
|
---|
| 293 | t->task->accept_new_threads = false;
|
---|
| 294 | destroy_task = true;
|
---|
| 295 | }
|
---|
| 296 | spinlock_unlock(&t->task->lock);
|
---|
[266294a9] | 297 |
|
---|
[7509ddc] | 298 | if (destroy_task)
|
---|
| 299 | task_destroy(t->task);
|
---|
[266294a9] | 300 |
|
---|
| 301 | slab_free(thread_slab, t);
|
---|
| 302 | }
|
---|
| 303 |
|
---|
[70527f1] | 304 | /** Create new thread
|
---|
| 305 | *
|
---|
| 306 | * Create a new thread.
|
---|
| 307 | *
|
---|
[62b6d17] | 308 | * @param func Thread's implementing function.
|
---|
| 309 | * @param arg Thread's implementing function argument.
|
---|
| 310 | * @param task Task to which the thread belongs.
|
---|
| 311 | * @param flags Thread flags.
|
---|
| 312 | * @param name Symbolic name.
|
---|
| 313 | * @param uncounted Thread's accounting doesn't affect accumulated task accounting.
|
---|
[70527f1] | 314 | *
|
---|
| 315 | * @return New thread's structure on success, NULL on failure.
|
---|
| 316 | *
|
---|
| 317 | */
|
---|
[62b6d17] | 318 | thread_t *thread_create(void (* func)(void *), void *arg, task_t *task, int flags, char *name, bool uncounted)
|
---|
[f761f1eb] | 319 | {
|
---|
| 320 | thread_t *t;
|
---|
[bb68433] | 321 | ipl_t ipl;
|
---|
| 322 |
|
---|
[266294a9] | 323 | t = (thread_t *) slab_alloc(thread_slab, 0);
|
---|
[2a46e10] | 324 | if (!t)
|
---|
| 325 | return NULL;
|
---|
[f761f1eb] | 326 |
|
---|
[bb68433] | 327 | /* Not needed, but good for debugging */
|
---|
[764c302] | 328 | memsetb((uintptr_t) t->kstack, THREAD_STACK_SIZE * 1 << STACK_FRAMES, 0);
|
---|
[bb68433] | 329 |
|
---|
| 330 | ipl = interrupts_disable();
|
---|
| 331 | spinlock_lock(&tidlock);
|
---|
| 332 | t->tid = ++last_tid;
|
---|
| 333 | spinlock_unlock(&tidlock);
|
---|
| 334 | interrupts_restore(ipl);
|
---|
| 335 |
|
---|
| 336 | context_save(&t->saved_context);
|
---|
[7f1c620] | 337 | context_set(&t->saved_context, FADDR(cushion), (uintptr_t) t->kstack, THREAD_STACK_SIZE);
|
---|
[bb68433] | 338 |
|
---|
| 339 | the_initialize((the_t *) t->kstack);
|
---|
| 340 |
|
---|
| 341 | ipl = interrupts_disable();
|
---|
| 342 | t->saved_context.ipl = interrupts_read();
|
---|
| 343 | interrupts_restore(ipl);
|
---|
| 344 |
|
---|
[9f52563] | 345 | memcpy(t->name, name, THREAD_NAME_BUFLEN);
|
---|
| 346 |
|
---|
[bb68433] | 347 | t->thread_code = func;
|
---|
| 348 | t->thread_arg = arg;
|
---|
| 349 | t->ticks = -1;
|
---|
[cce6acf] | 350 | t->cycles = 0;
|
---|
[62b6d17] | 351 | t->uncounted = uncounted;
|
---|
[bb68433] | 352 | t->priority = -1; /* start in rq[0] */
|
---|
| 353 | t->cpu = NULL;
|
---|
[32fffef0] | 354 | t->flags = flags;
|
---|
[bb68433] | 355 | t->state = Entering;
|
---|
| 356 | t->call_me = NULL;
|
---|
| 357 | t->call_me_with = NULL;
|
---|
| 358 |
|
---|
| 359 | timeout_initialize(&t->sleep_timeout);
|
---|
[116d1ef4] | 360 | t->sleep_interruptible = false;
|
---|
[bb68433] | 361 | t->sleep_queue = NULL;
|
---|
| 362 | t->timeout_pending = 0;
|
---|
[e3c762cd] | 363 |
|
---|
| 364 | t->in_copy_from_uspace = false;
|
---|
| 365 | t->in_copy_to_uspace = false;
|
---|
[7509ddc] | 366 |
|
---|
| 367 | t->interrupted = false;
|
---|
[48e7dd6] | 368 | t->join_type = None;
|
---|
[fe19611] | 369 | t->detached = false;
|
---|
| 370 | waitq_initialize(&t->join_wq);
|
---|
| 371 |
|
---|
[bb68433] | 372 | t->rwlock_holder_type = RWLOCK_NONE;
|
---|
[6a27d63] | 373 |
|
---|
[bb68433] | 374 | t->task = task;
|
---|
| 375 |
|
---|
[6f8a426] | 376 | t->fpu_context_exists = 0;
|
---|
| 377 | t->fpu_context_engaged = 0;
|
---|
[32fffef0] | 378 |
|
---|
| 379 | thread_create_arch(t); /* might depend on previous initialization */
|
---|
[bb68433] | 380 |
|
---|
[7509ddc] | 381 | /*
|
---|
| 382 | * Attach to the containing task.
|
---|
| 383 | */
|
---|
[0182a665] | 384 | ipl = interrupts_disable();
|
---|
[7509ddc] | 385 | spinlock_lock(&task->lock);
|
---|
| 386 | if (!task->accept_new_threads) {
|
---|
| 387 | spinlock_unlock(&task->lock);
|
---|
| 388 | slab_free(thread_slab, t);
|
---|
[0182a665] | 389 | interrupts_restore(ipl);
|
---|
[7509ddc] | 390 | return NULL;
|
---|
| 391 | }
|
---|
| 392 | list_append(&t->th_link, &task->th_head);
|
---|
[b91bb65] | 393 | if (task->refcount++ == 0)
|
---|
| 394 | task->main_thread = t;
|
---|
[7509ddc] | 395 | spinlock_unlock(&task->lock);
|
---|
| 396 |
|
---|
[bb68433] | 397 | /*
|
---|
| 398 | * Register this thread in the system-wide list.
|
---|
| 399 | */
|
---|
| 400 | spinlock_lock(&threads_lock);
|
---|
[7f1c620] | 401 | btree_insert(&threads_btree, (btree_key_t) ((uintptr_t) t), (void *) t, NULL);
|
---|
[bb68433] | 402 | spinlock_unlock(&threads_lock);
|
---|
| 403 |
|
---|
| 404 | interrupts_restore(ipl);
|
---|
[6f8a426] | 405 |
|
---|
[f761f1eb] | 406 | return t;
|
---|
| 407 | }
|
---|
| 408 |
|
---|
[0182a665] | 409 | /** Terminate thread.
|
---|
[70527f1] | 410 | *
|
---|
| 411 | * End current thread execution and switch it to the exiting
|
---|
| 412 | * state. All pending timeouts are executed.
|
---|
| 413 | *
|
---|
| 414 | */
|
---|
[f761f1eb] | 415 | void thread_exit(void)
|
---|
| 416 | {
|
---|
[22f7769] | 417 | ipl_t ipl;
|
---|
[f761f1eb] | 418 |
|
---|
| 419 | restart:
|
---|
[22f7769] | 420 | ipl = interrupts_disable();
|
---|
[43114c5] | 421 | spinlock_lock(&THREAD->lock);
|
---|
| 422 | if (THREAD->timeout_pending) { /* busy waiting for timeouts in progress */
|
---|
| 423 | spinlock_unlock(&THREAD->lock);
|
---|
[22f7769] | 424 | interrupts_restore(ipl);
|
---|
[f761f1eb] | 425 | goto restart;
|
---|
| 426 | }
|
---|
[43114c5] | 427 | THREAD->state = Exiting;
|
---|
| 428 | spinlock_unlock(&THREAD->lock);
|
---|
[f761f1eb] | 429 | scheduler();
|
---|
[874621f] | 430 |
|
---|
| 431 | /* Not reached */
|
---|
| 432 | while (1)
|
---|
| 433 | ;
|
---|
[f761f1eb] | 434 | }
|
---|
| 435 |
|
---|
[70527f1] | 436 |
|
---|
| 437 | /** Thread sleep
|
---|
| 438 | *
|
---|
| 439 | * Suspend execution of the current thread.
|
---|
| 440 | *
|
---|
| 441 | * @param sec Number of seconds to sleep.
|
---|
| 442 | *
|
---|
| 443 | */
|
---|
[7f1c620] | 444 | void thread_sleep(uint32_t sec)
|
---|
[f761f1eb] | 445 | {
|
---|
[76cec1e] | 446 | thread_usleep(sec*1000000);
|
---|
[f761f1eb] | 447 | }
|
---|
[70527f1] | 448 |
|
---|
[fe19611] | 449 | /** Wait for another thread to exit.
|
---|
| 450 | *
|
---|
| 451 | * @param t Thread to join on exit.
|
---|
| 452 | * @param usec Timeout in microseconds.
|
---|
| 453 | * @param flags Mode of operation.
|
---|
| 454 | *
|
---|
| 455 | * @return An error code from errno.h or an error code from synch.h.
|
---|
| 456 | */
|
---|
[7f1c620] | 457 | int thread_join_timeout(thread_t *t, uint32_t usec, int flags)
|
---|
[fe19611] | 458 | {
|
---|
| 459 | ipl_t ipl;
|
---|
| 460 | int rc;
|
---|
| 461 |
|
---|
| 462 | if (t == THREAD)
|
---|
| 463 | return EINVAL;
|
---|
| 464 |
|
---|
| 465 | /*
|
---|
| 466 | * Since thread join can only be called once on an undetached thread,
|
---|
| 467 | * the thread pointer is guaranteed to be still valid.
|
---|
| 468 | */
|
---|
| 469 |
|
---|
| 470 | ipl = interrupts_disable();
|
---|
| 471 | spinlock_lock(&t->lock);
|
---|
| 472 | ASSERT(!t->detached);
|
---|
| 473 | spinlock_unlock(&t->lock);
|
---|
[7b3e7f4] | 474 | interrupts_restore(ipl);
|
---|
[fe19611] | 475 |
|
---|
[0182a665] | 476 | rc = waitq_sleep_timeout(&t->join_wq, usec, flags);
|
---|
| 477 |
|
---|
[fe19611] | 478 | return rc;
|
---|
| 479 | }
|
---|
| 480 |
|
---|
| 481 | /** Detach thread.
|
---|
| 482 | *
|
---|
| 483 | * Mark the thread as detached, if the thread is already in the Undead state,
|
---|
| 484 | * deallocate its resources.
|
---|
| 485 | *
|
---|
| 486 | * @param t Thread to be detached.
|
---|
| 487 | */
|
---|
| 488 | void thread_detach(thread_t *t)
|
---|
| 489 | {
|
---|
| 490 | ipl_t ipl;
|
---|
| 491 |
|
---|
| 492 | /*
|
---|
| 493 | * Since the thread is expected to not be already detached,
|
---|
| 494 | * pointer to it must be still valid.
|
---|
| 495 | */
|
---|
| 496 | ipl = interrupts_disable();
|
---|
| 497 | spinlock_lock(&t->lock);
|
---|
| 498 | ASSERT(!t->detached);
|
---|
| 499 | if (t->state == Undead) {
|
---|
| 500 | thread_destroy(t); /* unlocks &t->lock */
|
---|
| 501 | interrupts_restore(ipl);
|
---|
| 502 | return;
|
---|
| 503 | } else {
|
---|
| 504 | t->detached = true;
|
---|
| 505 | }
|
---|
| 506 | spinlock_unlock(&t->lock);
|
---|
| 507 | interrupts_restore(ipl);
|
---|
| 508 | }
|
---|
| 509 |
|
---|
[70527f1] | 510 | /** Thread usleep
|
---|
| 511 | *
|
---|
| 512 | * Suspend execution of the current thread.
|
---|
| 513 | *
|
---|
| 514 | * @param usec Number of microseconds to sleep.
|
---|
| 515 | *
|
---|
| 516 | */
|
---|
[7f1c620] | 517 | void thread_usleep(uint32_t usec)
|
---|
[f761f1eb] | 518 | {
|
---|
| 519 | waitq_t wq;
|
---|
| 520 |
|
---|
| 521 | waitq_initialize(&wq);
|
---|
| 522 |
|
---|
[116d1ef4] | 523 | (void) waitq_sleep_timeout(&wq, usec, SYNCH_FLAGS_NON_BLOCKING);
|
---|
[f761f1eb] | 524 | }
|
---|
| 525 |
|
---|
[70527f1] | 526 | /** Register thread out-of-context invocation
|
---|
| 527 | *
|
---|
| 528 | * Register a function and its argument to be executed
|
---|
| 529 | * on next context switch to the current thread.
|
---|
| 530 | *
|
---|
| 531 | * @param call_me Out-of-context function.
|
---|
| 532 | * @param call_me_with Out-of-context function argument.
|
---|
| 533 | *
|
---|
| 534 | */
|
---|
[f761f1eb] | 535 | void thread_register_call_me(void (* call_me)(void *), void *call_me_with)
|
---|
| 536 | {
|
---|
[22f7769] | 537 | ipl_t ipl;
|
---|
[f761f1eb] | 538 |
|
---|
[22f7769] | 539 | ipl = interrupts_disable();
|
---|
[43114c5] | 540 | spinlock_lock(&THREAD->lock);
|
---|
| 541 | THREAD->call_me = call_me;
|
---|
| 542 | THREAD->call_me_with = call_me_with;
|
---|
| 543 | spinlock_unlock(&THREAD->lock);
|
---|
[22f7769] | 544 | interrupts_restore(ipl);
|
---|
[f761f1eb] | 545 | }
|
---|
[55ab0f1] | 546 |
|
---|
| 547 | /** Print list of threads debug info */
|
---|
| 548 | void thread_print_list(void)
|
---|
| 549 | {
|
---|
| 550 | link_t *cur;
|
---|
| 551 | ipl_t ipl;
|
---|
| 552 |
|
---|
| 553 | /* Messing with thread structures, avoid deadlock */
|
---|
| 554 | ipl = interrupts_disable();
|
---|
| 555 | spinlock_lock(&threads_lock);
|
---|
[cce6acf] | 556 |
|
---|
[0313ff0] | 557 | printf("tid name address state task ctx code stack cycles cpu kstack waitqueue\n");
|
---|
[cce6acf] | 558 | printf("------ ---------- ---------- -------- ---------- --- ---------- ---------- ---------- ---- ---------- ----------\n");
|
---|
[55ab0f1] | 559 |
|
---|
[016acbe] | 560 | for (cur = threads_btree.leaf_head.next; cur != &threads_btree.leaf_head; cur = cur->next) {
|
---|
| 561 | btree_node_t *node;
|
---|
| 562 | int i;
|
---|
| 563 |
|
---|
| 564 | node = list_get_instance(cur, btree_node_t, leaf_link);
|
---|
| 565 | for (i = 0; i < node->keys; i++) {
|
---|
| 566 | thread_t *t;
|
---|
| 567 |
|
---|
| 568 | t = (thread_t *) node->value[i];
|
---|
[cce6acf] | 569 |
|
---|
| 570 | uint64_t cycles;
|
---|
| 571 | char suffix;
|
---|
| 572 |
|
---|
| 573 | if (t->cycles > 1000000000000000000LL) {
|
---|
| 574 | cycles = t->cycles / 1000000000000000000LL;
|
---|
| 575 | suffix = 'E';
|
---|
| 576 | } else if (t->cycles > 1000000000000LL) {
|
---|
| 577 | cycles = t->cycles / 1000000000000LL;
|
---|
| 578 | suffix = 'T';
|
---|
| 579 | } else if (t->cycles > 1000000LL) {
|
---|
| 580 | cycles = t->cycles / 1000000LL;
|
---|
| 581 | suffix = 'M';
|
---|
| 582 | } else {
|
---|
| 583 | cycles = t->cycles;
|
---|
| 584 | suffix = ' ';
|
---|
| 585 | }
|
---|
| 586 |
|
---|
| 587 | printf("%-6zd %-10s %#10zx %-8s %#10zx %-3ld %#10zx %#10zx %9llu%c ", t->tid, t->name, t, thread_states[t->state], t->task, t->task->context, t->thread_code, t->kstack, cycles, suffix);
|
---|
| 588 |
|
---|
[016acbe] | 589 | if (t->cpu)
|
---|
[cce6acf] | 590 | printf("%-4zd", t->cpu->id);
|
---|
[016acbe] | 591 | else
|
---|
| 592 | printf("none");
|
---|
[cce6acf] | 593 |
|
---|
| 594 | if (t->state == Sleeping)
|
---|
| 595 | printf(" %#10zx %#10zx", t->kstack, t->sleep_queue);
|
---|
| 596 |
|
---|
[016acbe] | 597 | printf("\n");
|
---|
| 598 | }
|
---|
[55ab0f1] | 599 | }
|
---|
| 600 |
|
---|
| 601 | spinlock_unlock(&threads_lock);
|
---|
[37c57f2] | 602 | interrupts_restore(ipl);
|
---|
[55ab0f1] | 603 | }
|
---|
[9f52563] | 604 |
|
---|
[016acbe] | 605 | /** Check whether thread exists.
|
---|
| 606 | *
|
---|
| 607 | * Note that threads_lock must be already held and
|
---|
| 608 | * interrupts must be already disabled.
|
---|
| 609 | *
|
---|
| 610 | * @param t Pointer to thread.
|
---|
| 611 | *
|
---|
| 612 | * @return True if thread t is known to the system, false otherwise.
|
---|
| 613 | */
|
---|
| 614 | bool thread_exists(thread_t *t)
|
---|
| 615 | {
|
---|
| 616 | btree_node_t *leaf;
|
---|
| 617 |
|
---|
[7f1c620] | 618 | return btree_search(&threads_btree, (btree_key_t) ((uintptr_t) t), &leaf) != NULL;
|
---|
[016acbe] | 619 | }
|
---|
| 620 |
|
---|
[cce6acf] | 621 |
|
---|
| 622 | /** Update accounting of current thread.
|
---|
| 623 | *
|
---|
| 624 | * Note that thread_lock on THREAD must be already held and
|
---|
| 625 | * interrupts must be already disabled.
|
---|
| 626 | *
|
---|
| 627 | */
|
---|
| 628 | void thread_update_accounting(void)
|
---|
| 629 | {
|
---|
| 630 | uint64_t time = get_cycle();
|
---|
| 631 | THREAD->cycles += time - THREAD->last_cycle;
|
---|
| 632 | THREAD->last_cycle = time;
|
---|
| 633 | }
|
---|
| 634 |
|
---|
[9f52563] | 635 | /** Process syscall to create new thread.
|
---|
| 636 | *
|
---|
| 637 | */
|
---|
[7f1c620] | 638 | unative_t sys_thread_create(uspace_arg_t *uspace_uarg, char *uspace_name)
|
---|
[9f52563] | 639 | {
|
---|
[68091bd] | 640 | thread_t *t;
|
---|
| 641 | char namebuf[THREAD_NAME_BUFLEN];
|
---|
[45fb65c] | 642 | uspace_arg_t *kernel_uarg;
|
---|
[7f1c620] | 643 | uint32_t tid;
|
---|
[e3c762cd] | 644 | int rc;
|
---|
[9f52563] | 645 |
|
---|
[e3c762cd] | 646 | rc = copy_from_uspace(namebuf, uspace_name, THREAD_NAME_BUFLEN);
|
---|
| 647 | if (rc != 0)
|
---|
[7f1c620] | 648 | return (unative_t) rc;
|
---|
[0f250f9] | 649 |
|
---|
| 650 | kernel_uarg = (uspace_arg_t *) malloc(sizeof(uspace_arg_t), 0);
|
---|
[e3c762cd] | 651 | rc = copy_from_uspace(kernel_uarg, uspace_uarg, sizeof(uspace_arg_t));
|
---|
| 652 | if (rc != 0) {
|
---|
| 653 | free(kernel_uarg);
|
---|
[7f1c620] | 654 | return (unative_t) rc;
|
---|
[e3c762cd] | 655 | }
|
---|
[9f52563] | 656 |
|
---|
[62b6d17] | 657 | if ((t = thread_create(uinit, kernel_uarg, TASK, THREAD_FLAG_USPACE, namebuf, false))) {
|
---|
[9f52563] | 658 | tid = t->tid;
|
---|
[68091bd] | 659 | thread_ready(t);
|
---|
[7f1c620] | 660 | return (unative_t) tid;
|
---|
[68091bd] | 661 | } else {
|
---|
[0f250f9] | 662 | free(kernel_uarg);
|
---|
[68091bd] | 663 | }
|
---|
[9f52563] | 664 |
|
---|
[7f1c620] | 665 | return (unative_t) ENOMEM;
|
---|
[9f52563] | 666 | }
|
---|
| 667 |
|
---|
| 668 | /** Process syscall to terminate thread.
|
---|
| 669 | *
|
---|
| 670 | */
|
---|
[7f1c620] | 671 | unative_t sys_thread_exit(int uspace_status)
|
---|
[9f52563] | 672 | {
|
---|
[68091bd] | 673 | thread_exit();
|
---|
| 674 | /* Unreachable */
|
---|
| 675 | return 0;
|
---|
[9f52563] | 676 | }
|
---|
[b45c443] | 677 |
|
---|
[cc73a8a1] | 678 | /** @}
|
---|
[b45c443] | 679 | */
|
---|