[f761f1eb] | 1 | /*
|
---|
[7ed8530] | 2 | * Copyright (c) 2010 Jakub Jermar
|
---|
[f761f1eb] | 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
|
---|
[da1bafb] | 35 | * @brief Thread management functions.
|
---|
[9179d0a] | 36 | */
|
---|
| 37 |
|
---|
[f761f1eb] | 38 | #include <proc/scheduler.h>
|
---|
| 39 | #include <proc/thread.h>
|
---|
| 40 | #include <proc/task.h>
|
---|
| 41 | #include <mm/frame.h>
|
---|
| 42 | #include <mm/page.h>
|
---|
| 43 | #include <arch/asm.h>
|
---|
[cce6acf] | 44 | #include <arch/cycle.h>
|
---|
[f761f1eb] | 45 | #include <arch.h>
|
---|
| 46 | #include <synch/spinlock.h>
|
---|
| 47 | #include <synch/waitq.h>
|
---|
| 48 | #include <cpu.h>
|
---|
[e535eeb] | 49 | #include <str.h>
|
---|
[f761f1eb] | 50 | #include <context.h>
|
---|
[5dcee525] | 51 | #include <adt/avl.h>
|
---|
[5c9a08b] | 52 | #include <adt/list.h>
|
---|
[f761f1eb] | 53 | #include <time/clock.h>
|
---|
[b3f8fb7] | 54 | #include <time/timeout.h>
|
---|
[8d6c1f1] | 55 | #include <time/delay.h>
|
---|
[4ffa9e0] | 56 | #include <config.h>
|
---|
| 57 | #include <arch/interrupt.h>
|
---|
[26a8604f] | 58 | #include <smp/ipi.h>
|
---|
[f2ffad4] | 59 | #include <arch/faddr.h>
|
---|
[23684b7] | 60 | #include <atomic.h>
|
---|
[9c0a9b3] | 61 | #include <memstr.h>
|
---|
[55ab0f1] | 62 | #include <print.h>
|
---|
[266294a9] | 63 | #include <mm/slab.h>
|
---|
| 64 | #include <debug.h>
|
---|
[9f52563] | 65 | #include <main/uinit.h>
|
---|
[e3c762cd] | 66 | #include <syscall/copy.h>
|
---|
| 67 | #include <errno.h>
|
---|
[52755f1] | 68 |
|
---|
[fe19611] | 69 | /** Thread states */
|
---|
[a000878c] | 70 | const char *thread_states[] = {
|
---|
[fe19611] | 71 | "Invalid",
|
---|
| 72 | "Running",
|
---|
| 73 | "Sleeping",
|
---|
| 74 | "Ready",
|
---|
| 75 | "Entering",
|
---|
| 76 | "Exiting",
|
---|
[48d14222] | 77 | "Lingering"
|
---|
[e1b6742] | 78 | };
|
---|
| 79 |
|
---|
| 80 | typedef struct {
|
---|
| 81 | thread_id_t thread_id;
|
---|
| 82 | thread_t *thread;
|
---|
| 83 | } thread_iterator_t;
|
---|
[f761f1eb] | 84 |
|
---|
[5dcee525] | 85 | /** Lock protecting the threads_tree AVL tree.
|
---|
[4e33b6b] | 86 | *
|
---|
| 87 | * For locking rules, see declaration thereof.
|
---|
[da1bafb] | 88 | *
|
---|
[4e33b6b] | 89 | */
|
---|
[da1bafb] | 90 | IRQ_SPINLOCK_INITIALIZE(threads_lock);
|
---|
[88169d9] | 91 |
|
---|
[81c0171e] | 92 | /** AVL tree of all threads.
|
---|
[88169d9] | 93 | *
|
---|
[5dcee525] | 94 | * When a thread is found in the threads_tree AVL tree, it is guaranteed to
|
---|
[4e33b6b] | 95 | * exist as long as the threads_lock is held.
|
---|
[da1bafb] | 96 | *
|
---|
[88169d9] | 97 | */
|
---|
[da1bafb] | 98 | avltree_t threads_tree;
|
---|
[f761f1eb] | 99 |
|
---|
[da1bafb] | 100 | IRQ_SPINLOCK_STATIC_INITIALIZE(tidlock);
|
---|
| 101 | static thread_id_t last_tid = 0;
|
---|
[f761f1eb] | 102 |
|
---|
[266294a9] | 103 | static slab_cache_t *thread_slab;
|
---|
[da1bafb] | 104 |
|
---|
[0f81ceb7] | 105 | #ifdef CONFIG_FPU
|
---|
[f76fed4] | 106 | slab_cache_t *fpu_context_slab;
|
---|
| 107 | #endif
|
---|
[266294a9] | 108 |
|
---|
[4e33b6b] | 109 | /** Thread wrapper.
|
---|
[70527f1] | 110 | *
|
---|
[4e33b6b] | 111 | * This wrapper is provided to ensure that every thread makes a call to
|
---|
| 112 | * thread_exit() when its implementing function returns.
|
---|
[f761f1eb] | 113 | *
|
---|
[22f7769] | 114 | * interrupts_disable() is assumed.
|
---|
[70527f1] | 115 | *
|
---|
[f761f1eb] | 116 | */
|
---|
[e16e036a] | 117 | static void cushion(void)
|
---|
[f761f1eb] | 118 | {
|
---|
[43114c5] | 119 | void (*f)(void *) = THREAD->thread_code;
|
---|
| 120 | void *arg = THREAD->thread_arg;
|
---|
[449dc1ed] | 121 | THREAD->last_cycle = get_cycle();
|
---|
[da1bafb] | 122 |
|
---|
[0313ff0] | 123 | /* This is where each thread wakes up after its creation */
|
---|
[da1bafb] | 124 | irq_spinlock_unlock(&THREAD->lock, false);
|
---|
[22f7769] | 125 | interrupts_enable();
|
---|
[da1bafb] | 126 |
|
---|
[f761f1eb] | 127 | f(arg);
|
---|
[0313ff0] | 128 |
|
---|
| 129 | /* Accumulate accounting to the task */
|
---|
[da1bafb] | 130 | irq_spinlock_lock(&THREAD->lock, true);
|
---|
[62b6d17] | 131 | if (!THREAD->uncounted) {
|
---|
[a2a00e8] | 132 | thread_update_accounting(true);
|
---|
| 133 | uint64_t ucycles = THREAD->ucycles;
|
---|
| 134 | THREAD->ucycles = 0;
|
---|
| 135 | uint64_t kcycles = THREAD->kcycles;
|
---|
| 136 | THREAD->kcycles = 0;
|
---|
[62b6d17] | 137 |
|
---|
[da1bafb] | 138 | irq_spinlock_pass(&THREAD->lock, &TASK->lock);
|
---|
[a2a00e8] | 139 | TASK->ucycles += ucycles;
|
---|
| 140 | TASK->kcycles += kcycles;
|
---|
[da1bafb] | 141 | irq_spinlock_unlock(&TASK->lock, true);
|
---|
[62b6d17] | 142 | } else
|
---|
[da1bafb] | 143 | irq_spinlock_unlock(&THREAD->lock, true);
|
---|
[0313ff0] | 144 |
|
---|
[f761f1eb] | 145 | thread_exit();
|
---|
[da1bafb] | 146 |
|
---|
| 147 | /* Not reached */
|
---|
[f761f1eb] | 148 | }
|
---|
| 149 |
|
---|
[da1bafb] | 150 | /** Initialization and allocation for thread_t structure
|
---|
| 151 | *
|
---|
| 152 | */
|
---|
| 153 | static int thr_constructor(void *obj, unsigned int kmflags)
|
---|
[266294a9] | 154 | {
|
---|
[da1bafb] | 155 | thread_t *thread = (thread_t *) obj;
|
---|
| 156 |
|
---|
| 157 | irq_spinlock_initialize(&thread->lock, "thread_t_lock");
|
---|
| 158 | link_initialize(&thread->rq_link);
|
---|
| 159 | link_initialize(&thread->wq_link);
|
---|
| 160 | link_initialize(&thread->th_link);
|
---|
| 161 |
|
---|
[32fffef0] | 162 | /* call the architecture-specific part of the constructor */
|
---|
[da1bafb] | 163 | thr_constructor_arch(thread);
|
---|
[266294a9] | 164 |
|
---|
[0f81ceb7] | 165 | #ifdef CONFIG_FPU
|
---|
[d8431986] | 166 | #ifdef CONFIG_FPU_LAZY
|
---|
[da1bafb] | 167 | thread->saved_fpu_context = NULL;
|
---|
| 168 | #else /* CONFIG_FPU_LAZY */
|
---|
| 169 | thread->saved_fpu_context = slab_alloc(fpu_context_slab, kmflags);
|
---|
| 170 | if (!thread->saved_fpu_context)
|
---|
[f76fed4] | 171 | return -1;
|
---|
[da1bafb] | 172 | #endif /* CONFIG_FPU_LAZY */
|
---|
| 173 | #endif /* CONFIG_FPU */
|
---|
| 174 |
|
---|
| 175 | thread->kstack = (uint8_t *) frame_alloc(STACK_FRAMES, FRAME_KA | kmflags);
|
---|
| 176 | if (!thread->kstack) {
|
---|
[0f81ceb7] | 177 | #ifdef CONFIG_FPU
|
---|
[da1bafb] | 178 | if (thread->saved_fpu_context)
|
---|
| 179 | slab_free(fpu_context_slab, thread->saved_fpu_context);
|
---|
[f76fed4] | 180 | #endif
|
---|
[266294a9] | 181 | return -1;
|
---|
[f76fed4] | 182 | }
|
---|
[da1bafb] | 183 |
|
---|
[9a1b20c] | 184 | #ifdef CONFIG_UDEBUG
|
---|
[da1bafb] | 185 | mutex_initialize(&thread->udebug.lock, MUTEX_PASSIVE);
|
---|
[9a1b20c] | 186 | #endif
|
---|
[da1bafb] | 187 |
|
---|
[266294a9] | 188 | return 0;
|
---|
| 189 | }
|
---|
| 190 |
|
---|
| 191 | /** Destruction of thread_t object */
|
---|
[da1bafb] | 192 | static size_t thr_destructor(void *obj)
|
---|
[266294a9] | 193 | {
|
---|
[da1bafb] | 194 | thread_t *thread = (thread_t *) obj;
|
---|
| 195 |
|
---|
[32fffef0] | 196 | /* call the architecture-specific part of the destructor */
|
---|
[da1bafb] | 197 | thr_destructor_arch(thread);
|
---|
| 198 |
|
---|
| 199 | frame_free(KA2PA(thread->kstack));
|
---|
| 200 |
|
---|
[0f81ceb7] | 201 | #ifdef CONFIG_FPU
|
---|
[da1bafb] | 202 | if (thread->saved_fpu_context)
|
---|
| 203 | slab_free(fpu_context_slab, thread->saved_fpu_context);
|
---|
[f76fed4] | 204 | #endif
|
---|
[da1bafb] | 205 |
|
---|
| 206 | return 1; /* One page freed */
|
---|
[266294a9] | 207 | }
|
---|
[70527f1] | 208 |
|
---|
| 209 | /** Initialize threads
|
---|
| 210 | *
|
---|
| 211 | * Initialize kernel threads support.
|
---|
| 212 | *
|
---|
| 213 | */
|
---|
[f761f1eb] | 214 | void thread_init(void)
|
---|
| 215 | {
|
---|
[43114c5] | 216 | THREAD = NULL;
|
---|
[da1bafb] | 217 |
|
---|
[7217199] | 218 | atomic_set(&nrdy, 0);
|
---|
[4e33b6b] | 219 | thread_slab = slab_cache_create("thread_slab", sizeof(thread_t), 0,
|
---|
[6f4495f5] | 220 | thr_constructor, thr_destructor, 0);
|
---|
[da1bafb] | 221 |
|
---|
[0f81ceb7] | 222 | #ifdef CONFIG_FPU
|
---|
[4e33b6b] | 223 | fpu_context_slab = slab_cache_create("fpu_slab", sizeof(fpu_context_t),
|
---|
[6f4495f5] | 224 | FPU_CONTEXT_ALIGN, NULL, NULL, 0);
|
---|
[f76fed4] | 225 | #endif
|
---|
[da1bafb] | 226 |
|
---|
[5dcee525] | 227 | avltree_create(&threads_tree);
|
---|
[016acbe] | 228 | }
|
---|
[70527f1] | 229 |
|
---|
| 230 | /** Make thread ready
|
---|
| 231 | *
|
---|
[da1bafb] | 232 | * Switch thread to the ready state.
|
---|
[70527f1] | 233 | *
|
---|
[df58e44] | 234 | * @param thread Thread to make ready.
|
---|
[70527f1] | 235 | *
|
---|
| 236 | */
|
---|
[da1bafb] | 237 | void thread_ready(thread_t *thread)
|
---|
[f761f1eb] | 238 | {
|
---|
[da1bafb] | 239 | irq_spinlock_lock(&thread->lock, true);
|
---|
[f761f1eb] | 240 |
|
---|
[df58e44] | 241 | ASSERT(thread->state != Ready);
|
---|
[da1bafb] | 242 |
|
---|
| 243 | int i = (thread->priority < RQ_COUNT - 1)
|
---|
| 244 | ? ++thread->priority : thread->priority;
|
---|
| 245 |
|
---|
| 246 | cpu_t *cpu = CPU;
|
---|
| 247 | if (thread->flags & THREAD_FLAG_WIRED) {
|
---|
| 248 | ASSERT(thread->cpu != NULL);
|
---|
| 249 | cpu = thread->cpu;
|
---|
[f761f1eb] | 250 | }
|
---|
[da1bafb] | 251 | thread->state = Ready;
|
---|
| 252 |
|
---|
| 253 | irq_spinlock_pass(&thread->lock, &(cpu->rq[i].lock));
|
---|
[f761f1eb] | 254 |
|
---|
[70527f1] | 255 | /*
|
---|
[da1bafb] | 256 | * Append thread to respective ready queue
|
---|
| 257 | * on respective processor.
|
---|
[f761f1eb] | 258 | */
|
---|
[da1bafb] | 259 |
|
---|
[55b77d9] | 260 | list_append(&thread->rq_link, &cpu->rq[i].rq);
|
---|
[da1bafb] | 261 | cpu->rq[i].n++;
|
---|
| 262 | irq_spinlock_unlock(&(cpu->rq[i].lock), true);
|
---|
| 263 |
|
---|
[59e07c91] | 264 | atomic_inc(&nrdy);
|
---|
[da1bafb] | 265 | // FIXME: Why is the avg value not used
|
---|
| 266 | // avg = atomic_get(&nrdy) / config.cpu_active;
|
---|
[248fc1a] | 267 | atomic_inc(&cpu->nrdy);
|
---|
[f761f1eb] | 268 | }
|
---|
| 269 |
|
---|
[70527f1] | 270 | /** Create new thread
|
---|
| 271 | *
|
---|
| 272 | * Create a new thread.
|
---|
| 273 | *
|
---|
[da1bafb] | 274 | * @param func Thread's implementing function.
|
---|
| 275 | * @param arg Thread's implementing function argument.
|
---|
| 276 | * @param task Task to which the thread belongs. The caller must
|
---|
| 277 | * guarantee that the task won't cease to exist during the
|
---|
| 278 | * call. The task's lock may not be held.
|
---|
| 279 | * @param flags Thread flags.
|
---|
| 280 | * @param name Symbolic name (a copy is made).
|
---|
| 281 | * @param uncounted Thread's accounting doesn't affect accumulated task
|
---|
| 282 | * accounting.
|
---|
[70527f1] | 283 | *
|
---|
[da1bafb] | 284 | * @return New thread's structure on success, NULL on failure.
|
---|
[70527f1] | 285 | *
|
---|
| 286 | */
|
---|
[4e33b6b] | 287 | thread_t *thread_create(void (* func)(void *), void *arg, task_t *task,
|
---|
[da1bafb] | 288 | unsigned int flags, const char *name, bool uncounted)
|
---|
[f761f1eb] | 289 | {
|
---|
[da1bafb] | 290 | thread_t *thread = (thread_t *) slab_alloc(thread_slab, 0);
|
---|
| 291 | if (!thread)
|
---|
[2a46e10] | 292 | return NULL;
|
---|
[aa8d0f7] | 293 |
|
---|
[bb68433] | 294 | /* Not needed, but good for debugging */
|
---|
[26aafe8] | 295 | memsetb(thread->kstack, STACK_SIZE, 0);
|
---|
[bb68433] | 296 |
|
---|
[da1bafb] | 297 | irq_spinlock_lock(&tidlock, true);
|
---|
| 298 | thread->tid = ++last_tid;
|
---|
| 299 | irq_spinlock_unlock(&tidlock, true);
|
---|
[bb68433] | 300 |
|
---|
[da1bafb] | 301 | context_save(&thread->saved_context);
|
---|
| 302 | context_set(&thread->saved_context, FADDR(cushion),
|
---|
[26aafe8] | 303 | (uintptr_t) thread->kstack, STACK_SIZE);
|
---|
[bb68433] | 304 |
|
---|
[da1bafb] | 305 | the_initialize((the_t *) thread->kstack);
|
---|
[bb68433] | 306 |
|
---|
[da1bafb] | 307 | ipl_t ipl = interrupts_disable();
|
---|
| 308 | thread->saved_context.ipl = interrupts_read();
|
---|
[bb68433] | 309 | interrupts_restore(ipl);
|
---|
| 310 |
|
---|
[da1bafb] | 311 | str_cpy(thread->name, THREAD_NAME_BUFLEN, name);
|
---|
| 312 |
|
---|
| 313 | thread->thread_code = func;
|
---|
| 314 | thread->thread_arg = arg;
|
---|
| 315 | thread->ticks = -1;
|
---|
| 316 | thread->ucycles = 0;
|
---|
| 317 | thread->kcycles = 0;
|
---|
| 318 | thread->uncounted = uncounted;
|
---|
| 319 | thread->priority = -1; /* Start in rq[0] */
|
---|
| 320 | thread->cpu = NULL;
|
---|
| 321 | thread->flags = flags;
|
---|
[43ac0cc] | 322 | thread->nomigrate = 0;
|
---|
[da1bafb] | 323 | thread->state = Entering;
|
---|
| 324 |
|
---|
| 325 | timeout_initialize(&thread->sleep_timeout);
|
---|
| 326 | thread->sleep_interruptible = false;
|
---|
| 327 | thread->sleep_queue = NULL;
|
---|
| 328 | thread->timeout_pending = false;
|
---|
| 329 |
|
---|
| 330 | thread->in_copy_from_uspace = false;
|
---|
| 331 | thread->in_copy_to_uspace = false;
|
---|
| 332 |
|
---|
| 333 | thread->interrupted = false;
|
---|
| 334 | thread->detached = false;
|
---|
| 335 | waitq_initialize(&thread->join_wq);
|
---|
| 336 |
|
---|
| 337 | thread->task = task;
|
---|
| 338 |
|
---|
| 339 | thread->fpu_context_exists = 0;
|
---|
| 340 | thread->fpu_context_engaged = 0;
|
---|
| 341 |
|
---|
| 342 | avltree_node_initialize(&thread->threads_tree_node);
|
---|
| 343 | thread->threads_tree_node.key = (uintptr_t) thread;
|
---|
[bb68433] | 344 |
|
---|
[9a1b20c] | 345 | #ifdef CONFIG_UDEBUG
|
---|
[5b7a107] | 346 | /* Initialize debugging stuff */
|
---|
| 347 | thread->btrace = false;
|
---|
[da1bafb] | 348 | udebug_thread_initialize(&thread->udebug);
|
---|
[9a1b20c] | 349 | #endif
|
---|
[da1bafb] | 350 |
|
---|
| 351 | /* Might depend on previous initialization */
|
---|
| 352 | thread_create_arch(thread);
|
---|
| 353 |
|
---|
[d8431986] | 354 | if (!(flags & THREAD_FLAG_NOATTACH))
|
---|
[da1bafb] | 355 | thread_attach(thread, task);
|
---|
| 356 |
|
---|
| 357 | return thread;
|
---|
[d8431986] | 358 | }
|
---|
| 359 |
|
---|
| 360 | /** Destroy thread memory structure
|
---|
| 361 | *
|
---|
| 362 | * Detach thread from all queues, cpus etc. and destroy it.
|
---|
[da1bafb] | 363 | *
|
---|
| 364 | * @param thread Thread to be destroyed.
|
---|
| 365 | * @param irq_res Indicate whether it should unlock thread->lock
|
---|
| 366 | * in interrupts-restore mode.
|
---|
[d8431986] | 367 | *
|
---|
| 368 | */
|
---|
[da1bafb] | 369 | void thread_destroy(thread_t *thread, bool irq_res)
|
---|
[d8431986] | 370 | {
|
---|
[2d3ddad] | 371 | ASSERT(irq_spinlock_locked(&thread->lock));
|
---|
[da1bafb] | 372 | ASSERT((thread->state == Exiting) || (thread->state == Lingering));
|
---|
| 373 | ASSERT(thread->task);
|
---|
| 374 | ASSERT(thread->cpu);
|
---|
| 375 |
|
---|
| 376 | irq_spinlock_lock(&thread->cpu->lock, false);
|
---|
| 377 | if (thread->cpu->fpu_owner == thread)
|
---|
| 378 | thread->cpu->fpu_owner = NULL;
|
---|
| 379 | irq_spinlock_unlock(&thread->cpu->lock, false);
|
---|
| 380 |
|
---|
| 381 | irq_spinlock_pass(&thread->lock, &threads_lock);
|
---|
| 382 |
|
---|
| 383 | avltree_delete(&threads_tree, &thread->threads_tree_node);
|
---|
| 384 |
|
---|
| 385 | irq_spinlock_pass(&threads_lock, &thread->task->lock);
|
---|
| 386 |
|
---|
[d8431986] | 387 | /*
|
---|
| 388 | * Detach from the containing task.
|
---|
| 389 | */
|
---|
[da1bafb] | 390 | list_remove(&thread->th_link);
|
---|
| 391 | irq_spinlock_unlock(&thread->task->lock, irq_res);
|
---|
| 392 |
|
---|
[ea7890e7] | 393 | /*
|
---|
[7ed8530] | 394 | * Drop the reference to the containing task.
|
---|
[ea7890e7] | 395 | */
|
---|
[da1bafb] | 396 | task_release(thread->task);
|
---|
| 397 | slab_free(thread_slab, thread);
|
---|
[d8431986] | 398 | }
|
---|
| 399 |
|
---|
| 400 | /** Make the thread visible to the system.
|
---|
| 401 | *
|
---|
| 402 | * Attach the thread structure to the current task and make it visible in the
|
---|
[5dcee525] | 403 | * threads_tree.
|
---|
[d8431986] | 404 | *
|
---|
[da1bafb] | 405 | * @param t Thread to be attached to the task.
|
---|
| 406 | * @param task Task to which the thread is to be attached.
|
---|
| 407 | *
|
---|
[d8431986] | 408 | */
|
---|
[da1bafb] | 409 | void thread_attach(thread_t *thread, task_t *task)
|
---|
[d8431986] | 410 | {
|
---|
| 411 | /*
|
---|
[9a1b20c] | 412 | * Attach to the specified task.
|
---|
[d8431986] | 413 | */
|
---|
[da1bafb] | 414 | irq_spinlock_lock(&task->lock, true);
|
---|
| 415 |
|
---|
[7ed8530] | 416 | /* Hold a reference to the task. */
|
---|
| 417 | task_hold(task);
|
---|
[da1bafb] | 418 |
|
---|
[9a1b20c] | 419 | /* Must not count kbox thread into lifecount */
|
---|
[da1bafb] | 420 | if (thread->flags & THREAD_FLAG_USPACE)
|
---|
[9a1b20c] | 421 | atomic_inc(&task->lifecount);
|
---|
[da1bafb] | 422 |
|
---|
[55b77d9] | 423 | list_append(&thread->th_link, &task->threads);
|
---|
[da1bafb] | 424 |
|
---|
| 425 | irq_spinlock_pass(&task->lock, &threads_lock);
|
---|
| 426 |
|
---|
[bb68433] | 427 | /*
|
---|
| 428 | * Register this thread in the system-wide list.
|
---|
| 429 | */
|
---|
[da1bafb] | 430 | avltree_insert(&threads_tree, &thread->threads_tree_node);
|
---|
| 431 | irq_spinlock_unlock(&threads_lock, true);
|
---|
[f761f1eb] | 432 | }
|
---|
| 433 |
|
---|
[0182a665] | 434 | /** Terminate thread.
|
---|
[70527f1] | 435 | *
|
---|
[da1bafb] | 436 | * End current thread execution and switch it to the exiting state.
|
---|
| 437 | * All pending timeouts are executed.
|
---|
| 438 | *
|
---|
[70527f1] | 439 | */
|
---|
[f761f1eb] | 440 | void thread_exit(void)
|
---|
| 441 | {
|
---|
[9a1b20c] | 442 | if (THREAD->flags & THREAD_FLAG_USPACE) {
|
---|
| 443 | #ifdef CONFIG_UDEBUG
|
---|
| 444 | /* Generate udebug THREAD_E event */
|
---|
| 445 | udebug_thread_e_event();
|
---|
[0ac99db] | 446 |
|
---|
| 447 | /*
|
---|
| 448 | * This thread will not execute any code or system calls from
|
---|
| 449 | * now on.
|
---|
| 450 | */
|
---|
| 451 | udebug_stoppable_begin();
|
---|
[9a1b20c] | 452 | #endif
|
---|
| 453 | if (atomic_predec(&TASK->lifecount) == 0) {
|
---|
| 454 | /*
|
---|
| 455 | * We are the last userspace thread in the task that
|
---|
| 456 | * still has not exited. With the exception of the
|
---|
| 457 | * moment the task was created, new userspace threads
|
---|
| 458 | * can only be created by threads of the same task.
|
---|
| 459 | * We are safe to perform cleanup.
|
---|
[da1bafb] | 460 | *
|
---|
[9a1b20c] | 461 | */
|
---|
[ea7890e7] | 462 | ipc_cleanup();
|
---|
[52755f1] | 463 | futex_cleanup();
|
---|
| 464 | LOG("Cleanup of task %" PRIu64" completed.", TASK->taskid);
|
---|
[ea7890e7] | 465 | }
|
---|
| 466 | }
|
---|
[da1bafb] | 467 |
|
---|
[f761f1eb] | 468 | restart:
|
---|
[da1bafb] | 469 | irq_spinlock_lock(&THREAD->lock, true);
|
---|
| 470 | if (THREAD->timeout_pending) {
|
---|
| 471 | /* Busy waiting for timeouts in progress */
|
---|
| 472 | irq_spinlock_unlock(&THREAD->lock, true);
|
---|
[f761f1eb] | 473 | goto restart;
|
---|
| 474 | }
|
---|
[ea7890e7] | 475 |
|
---|
[43114c5] | 476 | THREAD->state = Exiting;
|
---|
[da1bafb] | 477 | irq_spinlock_unlock(&THREAD->lock, true);
|
---|
| 478 |
|
---|
[f761f1eb] | 479 | scheduler();
|
---|
[da1bafb] | 480 |
|
---|
[874621f] | 481 | /* Not reached */
|
---|
[da1bafb] | 482 | while (true);
|
---|
[f761f1eb] | 483 | }
|
---|
| 484 |
|
---|
[43ac0cc] | 485 | /** Prevent the current thread from being migrated to another processor. */
|
---|
| 486 | void thread_migration_disable(void)
|
---|
| 487 | {
|
---|
| 488 | ASSERT(THREAD);
|
---|
| 489 |
|
---|
| 490 | THREAD->nomigrate++;
|
---|
| 491 | }
|
---|
| 492 |
|
---|
| 493 | /** Allow the current thread to be migrated to another processor. */
|
---|
| 494 | void thread_migration_enable(void)
|
---|
| 495 | {
|
---|
| 496 | ASSERT(THREAD);
|
---|
| 497 | ASSERT(THREAD->nomigrate > 0);
|
---|
| 498 |
|
---|
| 499 | THREAD->nomigrate--;
|
---|
| 500 | }
|
---|
| 501 |
|
---|
[70527f1] | 502 | /** Thread sleep
|
---|
| 503 | *
|
---|
| 504 | * Suspend execution of the current thread.
|
---|
| 505 | *
|
---|
| 506 | * @param sec Number of seconds to sleep.
|
---|
| 507 | *
|
---|
| 508 | */
|
---|
[7f1c620] | 509 | void thread_sleep(uint32_t sec)
|
---|
[f761f1eb] | 510 | {
|
---|
[22e6802] | 511 | /* Sleep in 1000 second steps to support
|
---|
| 512 | full argument range */
|
---|
| 513 | while (sec > 0) {
|
---|
| 514 | uint32_t period = (sec > 1000) ? 1000 : sec;
|
---|
[da1bafb] | 515 |
|
---|
[22e6802] | 516 | thread_usleep(period * 1000000);
|
---|
| 517 | sec -= period;
|
---|
| 518 | }
|
---|
[f761f1eb] | 519 | }
|
---|
[70527f1] | 520 |
|
---|
[fe19611] | 521 | /** Wait for another thread to exit.
|
---|
| 522 | *
|
---|
[da1bafb] | 523 | * @param thread Thread to join on exit.
|
---|
| 524 | * @param usec Timeout in microseconds.
|
---|
| 525 | * @param flags Mode of operation.
|
---|
[fe19611] | 526 | *
|
---|
| 527 | * @return An error code from errno.h or an error code from synch.h.
|
---|
[da1bafb] | 528 | *
|
---|
[fe19611] | 529 | */
|
---|
[da1bafb] | 530 | int thread_join_timeout(thread_t *thread, uint32_t usec, unsigned int flags)
|
---|
[fe19611] | 531 | {
|
---|
[da1bafb] | 532 | if (thread == THREAD)
|
---|
[fe19611] | 533 | return EINVAL;
|
---|
[da1bafb] | 534 |
|
---|
[fe19611] | 535 | /*
|
---|
| 536 | * Since thread join can only be called once on an undetached thread,
|
---|
| 537 | * the thread pointer is guaranteed to be still valid.
|
---|
| 538 | */
|
---|
| 539 |
|
---|
[da1bafb] | 540 | irq_spinlock_lock(&thread->lock, true);
|
---|
| 541 | ASSERT(!thread->detached);
|
---|
| 542 | irq_spinlock_unlock(&thread->lock, true);
|
---|
[0182a665] | 543 |
|
---|
[da1bafb] | 544 | return waitq_sleep_timeout(&thread->join_wq, usec, flags);
|
---|
[fe19611] | 545 | }
|
---|
| 546 |
|
---|
| 547 | /** Detach thread.
|
---|
| 548 | *
|
---|
[df58e44] | 549 | * Mark the thread as detached. If the thread is already
|
---|
| 550 | * in the Lingering state, deallocate its resources.
|
---|
[fe19611] | 551 | *
|
---|
[da1bafb] | 552 | * @param thread Thread to be detached.
|
---|
| 553 | *
|
---|
[fe19611] | 554 | */
|
---|
[da1bafb] | 555 | void thread_detach(thread_t *thread)
|
---|
[fe19611] | 556 | {
|
---|
| 557 | /*
|
---|
[31d8e10] | 558 | * Since the thread is expected not to be already detached,
|
---|
[fe19611] | 559 | * pointer to it must be still valid.
|
---|
| 560 | */
|
---|
[da1bafb] | 561 | irq_spinlock_lock(&thread->lock, true);
|
---|
| 562 | ASSERT(!thread->detached);
|
---|
| 563 |
|
---|
| 564 | if (thread->state == Lingering) {
|
---|
| 565 | /*
|
---|
| 566 | * Unlock &thread->lock and restore
|
---|
| 567 | * interrupts in thread_destroy().
|
---|
| 568 | */
|
---|
| 569 | thread_destroy(thread, true);
|
---|
[fe19611] | 570 | return;
|
---|
| 571 | } else {
|
---|
[da1bafb] | 572 | thread->detached = true;
|
---|
[fe19611] | 573 | }
|
---|
[da1bafb] | 574 |
|
---|
| 575 | irq_spinlock_unlock(&thread->lock, true);
|
---|
[fe19611] | 576 | }
|
---|
| 577 |
|
---|
[70527f1] | 578 | /** Thread usleep
|
---|
| 579 | *
|
---|
| 580 | * Suspend execution of the current thread.
|
---|
| 581 | *
|
---|
| 582 | * @param usec Number of microseconds to sleep.
|
---|
| 583 | *
|
---|
| 584 | */
|
---|
[7f1c620] | 585 | void thread_usleep(uint32_t usec)
|
---|
[f761f1eb] | 586 | {
|
---|
| 587 | waitq_t wq;
|
---|
[22e6802] | 588 |
|
---|
[f761f1eb] | 589 | waitq_initialize(&wq);
|
---|
[22e6802] | 590 |
|
---|
[116d1ef4] | 591 | (void) waitq_sleep_timeout(&wq, usec, SYNCH_FLAGS_NON_BLOCKING);
|
---|
[f761f1eb] | 592 | }
|
---|
| 593 |
|
---|
[b76a2217] | 594 | static bool thread_walker(avltree_node_t *node, void *arg)
|
---|
[5dcee525] | 595 | {
|
---|
[48dcc69] | 596 | bool *additional = (bool *) arg;
|
---|
[da1bafb] | 597 | thread_t *thread = avltree_get_instance(node, thread_t, threads_tree_node);
|
---|
[52755f1] | 598 |
|
---|
[1ba37fa] | 599 | uint64_t ucycles, kcycles;
|
---|
| 600 | char usuffix, ksuffix;
|
---|
[da1bafb] | 601 | order_suffix(thread->ucycles, &ucycles, &usuffix);
|
---|
| 602 | order_suffix(thread->kcycles, &kcycles, &ksuffix);
|
---|
| 603 |
|
---|
[577f042a] | 604 | char *name;
|
---|
| 605 | if (str_cmp(thread->name, "uinit") == 0)
|
---|
| 606 | name = thread->task->name;
|
---|
| 607 | else
|
---|
| 608 | name = thread->name;
|
---|
| 609 |
|
---|
[52755f1] | 610 | #ifdef __32_BITS__
|
---|
[48dcc69] | 611 | if (*additional)
|
---|
[ae0300b5] | 612 | printf("%-8" PRIu64 " %10p %10p %9" PRIu64 "%c %9" PRIu64 "%c ",
|
---|
[577f042a] | 613 | thread->tid, thread->thread_code, thread->kstack,
|
---|
| 614 | ucycles, usuffix, kcycles, ksuffix);
|
---|
[48dcc69] | 615 | else
|
---|
[ae0300b5] | 616 | printf("%-8" PRIu64 " %-14s %10p %-8s %10p %-5" PRIu32 "\n",
|
---|
[577f042a] | 617 | thread->tid, name, thread, thread_states[thread->state],
|
---|
[26aafe8] | 618 | thread->task, thread->task->container);
|
---|
[52755f1] | 619 | #endif
|
---|
[da1bafb] | 620 |
|
---|
[52755f1] | 621 | #ifdef __64_BITS__
|
---|
[48dcc69] | 622 | if (*additional)
|
---|
[ae0300b5] | 623 | printf("%-8" PRIu64 " %18p %18p\n"
|
---|
[48dcc69] | 624 | " %9" PRIu64 "%c %9" PRIu64 "%c ",
|
---|
| 625 | thread->tid, thread->thread_code, thread->kstack,
|
---|
| 626 | ucycles, usuffix, kcycles, ksuffix);
|
---|
[5dcee525] | 627 | else
|
---|
[ae0300b5] | 628 | printf("%-8" PRIu64 " %-14s %18p %-8s %18p %-5" PRIu32 "\n",
|
---|
[577f042a] | 629 | thread->tid, name, thread, thread_states[thread->state],
|
---|
[26aafe8] | 630 | thread->task, thread->task->container);
|
---|
[48dcc69] | 631 | #endif
|
---|
[da1bafb] | 632 |
|
---|
[48dcc69] | 633 | if (*additional) {
|
---|
| 634 | if (thread->cpu)
|
---|
| 635 | printf("%-5u", thread->cpu->id);
|
---|
| 636 | else
|
---|
| 637 | printf("none ");
|
---|
| 638 |
|
---|
| 639 | if (thread->state == Sleeping) {
|
---|
[52755f1] | 640 | #ifdef __32_BITS__
|
---|
[48dcc69] | 641 | printf(" %10p", thread->sleep_queue);
|
---|
[52755f1] | 642 | #endif
|
---|
[48dcc69] | 643 |
|
---|
[52755f1] | 644 | #ifdef __64_BITS__
|
---|
[48dcc69] | 645 | printf(" %18p", thread->sleep_queue);
|
---|
[52755f1] | 646 | #endif
|
---|
[48dcc69] | 647 | }
|
---|
| 648 |
|
---|
| 649 | printf("\n");
|
---|
[43b1e86] | 650 | }
|
---|
[da1bafb] | 651 |
|
---|
[b76a2217] | 652 | return true;
|
---|
[5dcee525] | 653 | }
|
---|
| 654 |
|
---|
[da1bafb] | 655 | /** Print list of threads debug info
|
---|
[48dcc69] | 656 | *
|
---|
| 657 | * @param additional Print additional information.
|
---|
[da1bafb] | 658 | *
|
---|
| 659 | */
|
---|
[48dcc69] | 660 | void thread_print_list(bool additional)
|
---|
[55ab0f1] | 661 | {
|
---|
| 662 | /* Messing with thread structures, avoid deadlock */
|
---|
[da1bafb] | 663 | irq_spinlock_lock(&threads_lock, true);
|
---|
| 664 |
|
---|
| 665 | #ifdef __32_BITS__
|
---|
[48dcc69] | 666 | if (additional)
|
---|
[577f042a] | 667 | printf("[id ] [code ] [stack ] [ucycles ] [kcycles ]"
|
---|
| 668 | " [cpu] [waitqueue]\n");
|
---|
[48dcc69] | 669 | else
|
---|
| 670 | printf("[id ] [name ] [address ] [state ] [task ]"
|
---|
[26aafe8] | 671 | " [ctn]\n");
|
---|
[52755f1] | 672 | #endif
|
---|
[da1bafb] | 673 |
|
---|
[52755f1] | 674 | #ifdef __64_BITS__
|
---|
[48dcc69] | 675 | if (additional) {
|
---|
| 676 | printf("[id ] [code ] [stack ]\n"
|
---|
| 677 | " [ucycles ] [kcycles ] [cpu] [waitqueue ]\n");
|
---|
| 678 | } else
|
---|
| 679 | printf("[id ] [name ] [address ] [state ]"
|
---|
[26aafe8] | 680 | " [task ] [ctn]\n");
|
---|
[52755f1] | 681 | #endif
|
---|
[da1bafb] | 682 |
|
---|
[48dcc69] | 683 | avltree_walk(&threads_tree, thread_walker, &additional);
|
---|
[da1bafb] | 684 |
|
---|
| 685 | irq_spinlock_unlock(&threads_lock, true);
|
---|
[55ab0f1] | 686 | }
|
---|
[9f52563] | 687 |
|
---|
[016acbe] | 688 | /** Check whether thread exists.
|
---|
| 689 | *
|
---|
| 690 | * Note that threads_lock must be already held and
|
---|
| 691 | * interrupts must be already disabled.
|
---|
| 692 | *
|
---|
[da1bafb] | 693 | * @param thread Pointer to thread.
|
---|
[016acbe] | 694 | *
|
---|
| 695 | * @return True if thread t is known to the system, false otherwise.
|
---|
[da1bafb] | 696 | *
|
---|
[016acbe] | 697 | */
|
---|
[da1bafb] | 698 | bool thread_exists(thread_t *thread)
|
---|
[016acbe] | 699 | {
|
---|
[1d432f9] | 700 | ASSERT(interrupts_disabled());
|
---|
| 701 | ASSERT(irq_spinlock_locked(&threads_lock));
|
---|
| 702 |
|
---|
[da1bafb] | 703 | avltree_node_t *node =
|
---|
| 704 | avltree_search(&threads_tree, (avltree_key_t) ((uintptr_t) thread));
|
---|
[016acbe] | 705 |
|
---|
[5dcee525] | 706 | return node != NULL;
|
---|
[016acbe] | 707 | }
|
---|
| 708 |
|
---|
[cce6acf] | 709 | /** Update accounting of current thread.
|
---|
| 710 | *
|
---|
| 711 | * Note that thread_lock on THREAD must be already held and
|
---|
| 712 | * interrupts must be already disabled.
|
---|
| 713 | *
|
---|
[da1bafb] | 714 | * @param user True to update user accounting, false for kernel.
|
---|
| 715 | *
|
---|
[cce6acf] | 716 | */
|
---|
[a2a00e8] | 717 | void thread_update_accounting(bool user)
|
---|
[cce6acf] | 718 | {
|
---|
| 719 | uint64_t time = get_cycle();
|
---|
[1d432f9] | 720 |
|
---|
| 721 | ASSERT(interrupts_disabled());
|
---|
| 722 | ASSERT(irq_spinlock_locked(&THREAD->lock));
|
---|
[da1bafb] | 723 |
|
---|
| 724 | if (user)
|
---|
[a2a00e8] | 725 | THREAD->ucycles += time - THREAD->last_cycle;
|
---|
[da1bafb] | 726 | else
|
---|
[a2a00e8] | 727 | THREAD->kcycles += time - THREAD->last_cycle;
|
---|
[da1bafb] | 728 |
|
---|
[cce6acf] | 729 | THREAD->last_cycle = time;
|
---|
| 730 | }
|
---|
| 731 |
|
---|
[e1b6742] | 732 | static bool thread_search_walker(avltree_node_t *node, void *arg)
|
---|
| 733 | {
|
---|
| 734 | thread_t *thread =
|
---|
| 735 | (thread_t *) avltree_get_instance(node, thread_t, threads_tree_node);
|
---|
| 736 | thread_iterator_t *iterator = (thread_iterator_t *) arg;
|
---|
| 737 |
|
---|
| 738 | if (thread->tid == iterator->thread_id) {
|
---|
| 739 | iterator->thread = thread;
|
---|
| 740 | return false;
|
---|
| 741 | }
|
---|
| 742 |
|
---|
| 743 | return true;
|
---|
| 744 | }
|
---|
| 745 |
|
---|
| 746 | /** Find thread structure corresponding to thread ID.
|
---|
| 747 | *
|
---|
| 748 | * The threads_lock must be already held by the caller of this function and
|
---|
| 749 | * interrupts must be disabled.
|
---|
| 750 | *
|
---|
| 751 | * @param id Thread ID.
|
---|
| 752 | *
|
---|
| 753 | * @return Thread structure address or NULL if there is no such thread ID.
|
---|
| 754 | *
|
---|
| 755 | */
|
---|
| 756 | thread_t *thread_find_by_id(thread_id_t thread_id)
|
---|
| 757 | {
|
---|
[1d432f9] | 758 | ASSERT(interrupts_disabled());
|
---|
| 759 | ASSERT(irq_spinlock_locked(&threads_lock));
|
---|
[df58e44] | 760 |
|
---|
[e1b6742] | 761 | thread_iterator_t iterator;
|
---|
| 762 |
|
---|
| 763 | iterator.thread_id = thread_id;
|
---|
| 764 | iterator.thread = NULL;
|
---|
| 765 |
|
---|
| 766 | avltree_walk(&threads_tree, thread_search_walker, (void *) &iterator);
|
---|
| 767 |
|
---|
| 768 | return iterator.thread;
|
---|
| 769 | }
|
---|
| 770 |
|
---|
[5b7a107] | 771 | #ifdef CONFIG_UDEBUG
|
---|
| 772 |
|
---|
[df58e44] | 773 | void thread_stack_trace(thread_id_t thread_id)
|
---|
| 774 | {
|
---|
| 775 | irq_spinlock_lock(&threads_lock, true);
|
---|
| 776 |
|
---|
| 777 | thread_t *thread = thread_find_by_id(thread_id);
|
---|
| 778 | if (thread == NULL) {
|
---|
| 779 | printf("No such thread.\n");
|
---|
| 780 | irq_spinlock_unlock(&threads_lock, true);
|
---|
| 781 | return;
|
---|
| 782 | }
|
---|
| 783 |
|
---|
| 784 | irq_spinlock_lock(&thread->lock, false);
|
---|
| 785 |
|
---|
| 786 | /*
|
---|
| 787 | * Schedule a stack trace to be printed
|
---|
| 788 | * just before the thread is scheduled next.
|
---|
| 789 | *
|
---|
| 790 | * If the thread is sleeping then try to interrupt
|
---|
| 791 | * the sleep. Any request for printing an uspace stack
|
---|
| 792 | * trace from within the kernel should be always
|
---|
| 793 | * considered a last resort debugging means, therefore
|
---|
| 794 | * forcing the thread's sleep to be interrupted
|
---|
| 795 | * is probably justifiable.
|
---|
| 796 | */
|
---|
| 797 |
|
---|
| 798 | bool sleeping = false;
|
---|
| 799 | istate_t *istate = thread->udebug.uspace_state;
|
---|
| 800 | if (istate != NULL) {
|
---|
| 801 | printf("Scheduling thread stack trace.\n");
|
---|
| 802 | thread->btrace = true;
|
---|
| 803 | if (thread->state == Sleeping)
|
---|
| 804 | sleeping = true;
|
---|
| 805 | } else
|
---|
| 806 | printf("Thread interrupt state not available.\n");
|
---|
| 807 |
|
---|
| 808 | irq_spinlock_unlock(&thread->lock, false);
|
---|
| 809 |
|
---|
| 810 | if (sleeping)
|
---|
| 811 | waitq_interrupt_sleep(thread);
|
---|
| 812 |
|
---|
| 813 | irq_spinlock_unlock(&threads_lock, true);
|
---|
| 814 | }
|
---|
[e1b6742] | 815 |
|
---|
[5b7a107] | 816 | #endif /* CONFIG_UDEBUG */
|
---|
[e1b6742] | 817 |
|
---|
[9f52563] | 818 | /** Process syscall to create new thread.
|
---|
| 819 | *
|
---|
| 820 | */
|
---|
[96b02eb9] | 821 | sysarg_t sys_thread_create(uspace_arg_t *uspace_uarg, char *uspace_name,
|
---|
[7faabb7] | 822 | size_t name_len, thread_id_t *uspace_thread_id)
|
---|
[9f52563] | 823 | {
|
---|
[24345a5] | 824 | if (name_len > THREAD_NAME_BUFLEN - 1)
|
---|
[7faabb7] | 825 | name_len = THREAD_NAME_BUFLEN - 1;
|
---|
[da1bafb] | 826 |
|
---|
| 827 | char namebuf[THREAD_NAME_BUFLEN];
|
---|
| 828 | int rc = copy_from_uspace(namebuf, uspace_name, name_len);
|
---|
[e3c762cd] | 829 | if (rc != 0)
|
---|
[96b02eb9] | 830 | return (sysarg_t) rc;
|
---|
[da1bafb] | 831 |
|
---|
[b60c582] | 832 | namebuf[name_len] = 0;
|
---|
[da1bafb] | 833 |
|
---|
[4680ef5] | 834 | /*
|
---|
| 835 | * In case of failure, kernel_uarg will be deallocated in this function.
|
---|
| 836 | * In case of success, kernel_uarg will be freed in uinit().
|
---|
[da1bafb] | 837 | *
|
---|
[4680ef5] | 838 | */
|
---|
[da1bafb] | 839 | uspace_arg_t *kernel_uarg =
|
---|
| 840 | (uspace_arg_t *) malloc(sizeof(uspace_arg_t), 0);
|
---|
[4680ef5] | 841 |
|
---|
[e3c762cd] | 842 | rc = copy_from_uspace(kernel_uarg, uspace_uarg, sizeof(uspace_arg_t));
|
---|
| 843 | if (rc != 0) {
|
---|
| 844 | free(kernel_uarg);
|
---|
[96b02eb9] | 845 | return (sysarg_t) rc;
|
---|
[e3c762cd] | 846 | }
|
---|
[da1bafb] | 847 |
|
---|
| 848 | thread_t *thread = thread_create(uinit, kernel_uarg, TASK,
|
---|
[d8431986] | 849 | THREAD_FLAG_USPACE | THREAD_FLAG_NOATTACH, namebuf, false);
|
---|
[da1bafb] | 850 | if (thread) {
|
---|
[d8431986] | 851 | if (uspace_thread_id != NULL) {
|
---|
[da1bafb] | 852 | rc = copy_to_uspace(uspace_thread_id, &thread->tid,
|
---|
| 853 | sizeof(thread->tid));
|
---|
[d8431986] | 854 | if (rc != 0) {
|
---|
| 855 | /*
|
---|
| 856 | * We have encountered a failure, but the thread
|
---|
| 857 | * has already been created. We need to undo its
|
---|
| 858 | * creation now.
|
---|
| 859 | */
|
---|
[da1bafb] | 860 |
|
---|
[d8431986] | 861 | /*
|
---|
[ea7890e7] | 862 | * The new thread structure is initialized, but
|
---|
| 863 | * is still not visible to the system.
|
---|
[d8431986] | 864 | * We can safely deallocate it.
|
---|
| 865 | */
|
---|
[da1bafb] | 866 | slab_free(thread_slab, thread);
|
---|
| 867 | free(kernel_uarg);
|
---|
| 868 |
|
---|
[96b02eb9] | 869 | return (sysarg_t) rc;
|
---|
[d8431986] | 870 | }
|
---|
| 871 | }
|
---|
[da1bafb] | 872 |
|
---|
[9a1b20c] | 873 | #ifdef CONFIG_UDEBUG
|
---|
[13964ef] | 874 | /*
|
---|
| 875 | * Generate udebug THREAD_B event and attach the thread.
|
---|
| 876 | * This must be done atomically (with the debug locks held),
|
---|
| 877 | * otherwise we would either miss some thread or receive
|
---|
| 878 | * THREAD_B events for threads that already existed
|
---|
| 879 | * and could be detected with THREAD_READ before.
|
---|
| 880 | */
|
---|
[da1bafb] | 881 | udebug_thread_b_event_attach(thread, TASK);
|
---|
[13964ef] | 882 | #else
|
---|
[da1bafb] | 883 | thread_attach(thread, TASK);
|
---|
[9a1b20c] | 884 | #endif
|
---|
[da1bafb] | 885 | thread_ready(thread);
|
---|
| 886 |
|
---|
[d8431986] | 887 | return 0;
|
---|
[201abde] | 888 | } else
|
---|
[0f250f9] | 889 | free(kernel_uarg);
|
---|
[da1bafb] | 890 |
|
---|
[96b02eb9] | 891 | return (sysarg_t) ENOMEM;
|
---|
[9f52563] | 892 | }
|
---|
| 893 |
|
---|
| 894 | /** Process syscall to terminate thread.
|
---|
| 895 | *
|
---|
| 896 | */
|
---|
[96b02eb9] | 897 | sysarg_t sys_thread_exit(int uspace_status)
|
---|
[9f52563] | 898 | {
|
---|
[68091bd] | 899 | thread_exit();
|
---|
[da1bafb] | 900 |
|
---|
[68091bd] | 901 | /* Unreachable */
|
---|
| 902 | return 0;
|
---|
[9f52563] | 903 | }
|
---|
[b45c443] | 904 |
|
---|
[3ce7f082] | 905 | /** Syscall for getting TID.
|
---|
| 906 | *
|
---|
[201abde] | 907 | * @param uspace_thread_id Userspace address of 8-byte buffer where to store
|
---|
| 908 | * current thread ID.
|
---|
| 909 | *
|
---|
| 910 | * @return 0 on success or an error code from @ref errno.h.
|
---|
[da1bafb] | 911 | *
|
---|
[b45c443] | 912 | */
|
---|
[96b02eb9] | 913 | sysarg_t sys_thread_get_id(thread_id_t *uspace_thread_id)
|
---|
[3ce7f082] | 914 | {
|
---|
| 915 | /*
|
---|
| 916 | * No need to acquire lock on THREAD because tid
|
---|
| 917 | * remains constant for the lifespan of the thread.
|
---|
[da1bafb] | 918 | *
|
---|
[3ce7f082] | 919 | */
|
---|
[96b02eb9] | 920 | return (sysarg_t) copy_to_uspace(uspace_thread_id, &THREAD->tid,
|
---|
[201abde] | 921 | sizeof(THREAD->tid));
|
---|
[3ce7f082] | 922 | }
|
---|
[6f4495f5] | 923 |
|
---|
[d9ece1cb] | 924 | /** Syscall wrapper for sleeping. */
|
---|
[96b02eb9] | 925 | sysarg_t sys_thread_usleep(uint32_t usec)
|
---|
[d9ece1cb] | 926 | {
|
---|
[22e6802] | 927 | thread_usleep(usec);
|
---|
[d9ece1cb] | 928 | return 0;
|
---|
| 929 | }
|
---|
| 930 |
|
---|
[7e7b791] | 931 | sysarg_t sys_thread_udelay(uint32_t usec)
|
---|
| 932 | {
|
---|
[8d6c1f1] | 933 | delay(usec);
|
---|
[7e7b791] | 934 | return 0;
|
---|
| 935 | }
|
---|
| 936 |
|
---|
[3ce7f082] | 937 | /** @}
|
---|
| 938 | */
|
---|