source: mainline/kernel/generic/src/proc/task.c@ d0b1443

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since d0b1443 was f74bbaf, checked in by Martin Decky <martin@…>, 18 years ago

start shutdown infrastructure

  • Property mode set to 100644
File size: 13.3 KB
RevLine 
[f761f1eb]1/*
[df4ed85]2 * Copyright (c) 2001-2004 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
[9179d0a]35 * @brief Task management.
36 */
37
[5be1923]38#include <main/uinit.h>
[f761f1eb]39#include <proc/thread.h>
40#include <proc/task.h>
[0f250f9]41#include <proc/uarg.h>
[20d50a1]42#include <mm/as.h>
[085d973]43#include <mm/slab.h>
[31d8e10]44#include <atomic.h>
[f761f1eb]45#include <synch/spinlock.h>
[5573942]46#include <synch/waitq.h>
[f761f1eb]47#include <arch.h>
48#include <panic.h>
[7f6e755]49#include <adt/btree.h>
[5c9a08b]50#include <adt/list.h>
[6d9c49a]51#include <ipc/ipc.h>
[1077d91]52#include <security/cap.h>
[6d9c49a]53#include <memstr.h>
[37c57f2]54#include <print.h>
[d4b5542]55#include <lib/elf.h>
[7509ddc]56#include <errno.h>
[95155b0c]57#include <func.h>
[e3c762cd]58#include <syscall/copy.h>
[0dbc4e7]59#include <console/klog.h>
[8e5e78f]60
[a84af84]61#ifndef LOADED_PROG_STACK_PAGES_NO
62#define LOADED_PROG_STACK_PAGES_NO 1
63#endif
[8e5e78f]64
[88169d9]65/** Spinlock protecting the tasks_btree B+tree. */
[dc747e3]66SPINLOCK_INITIALIZE(tasks_lock);
[88169d9]67
68/** B+tree of active tasks.
69 *
[6f4495f5]70 * The task is guaranteed to exist after it was found in the tasks_btree as
71 * long as:
[88169d9]72 * @li the tasks_lock is held,
[6f4495f5]73 * @li the task's lock is held when task's lock is acquired before releasing
74 * tasks_lock or
[7bb6b06]75 * @li the task's refcount is greater than 0
[88169d9]76 *
77 */
[7f6e755]78btree_t tasks_btree;
[88169d9]79
[286e03d]80static task_id_t task_counter = 0;
[70527f1]81
[b91bb65]82static void ktaskclnp(void *arg);
[48e7dd6]83static void ktaskgc(void *arg);
[7509ddc]84
[70527f1]85/** Initialize tasks
86 *
87 * Initialize kernel tasks support.
88 *
89 */
[f761f1eb]90void task_init(void)
91{
[43114c5]92 TASK = NULL;
[7f6e755]93 btree_create(&tasks_btree);
[f761f1eb]94}
95
[f74bbaf]96/** Kill all tasks except the current task.
97 *
98 */
99void task_done(void)
100{
101 task_t *t;
102 do { /* Repeat until there are any tasks except TASK */
103
104 /* Messing with task structures, avoid deadlock */
105 ipl_t ipl = interrupts_disable();
106 spinlock_lock(&tasks_lock);
107
108 t = NULL;
109 link_t *cur;
110 for (cur = tasks_btree.leaf_head.next; cur != &tasks_btree.leaf_head; cur = cur->next) {
111 btree_node_t *node = list_get_instance(cur, btree_node_t, leaf_link);
112
113 unsigned int i;
114 for (i = 0; i < node->keys; i++) {
115 if ((task_t *) node->value[i] != TASK) {
116 t = (task_t *) node->value[i];
117 break;
118 }
119 }
120 }
121
122 if (t != NULL) {
123 task_id_t id = t->taskid;
124
125 spinlock_unlock(&tasks_lock);
126 interrupts_restore(ipl);
127
128#ifdef CONFIG_DEBUG
129 printf("Killing task %llu\n", id);
130#endif
131 task_kill(id);
132 } else {
133 spinlock_unlock(&tasks_lock);
134 interrupts_restore(ipl);
135 }
136
137 } while (t != NULL);
138}
[70527f1]139
140/** Create new task
141 *
142 * Create new task with no threads.
143 *
[20d50a1]144 * @param as Task's address space.
[ff14c520]145 * @param name Symbolic name.
[70527f1]146 *
[5be1923]147 * @return New task's structure
[70527f1]148 *
149 */
[ff14c520]150task_t *task_create(as_t *as, char *name)
[f761f1eb]151{
[22f7769]152 ipl_t ipl;
[f761f1eb]153 task_t *ta;
[2ba7810]154 int i;
[f761f1eb]155
[bb68433]156 ta = (task_t *) malloc(sizeof(task_t), 0);
157
[963074b3]158 task_create_arch(ta);
159
[bb68433]160 spinlock_initialize(&ta->lock, "task_ta_lock");
161 list_initialize(&ta->th_head);
162 ta->as = as;
[ff14c520]163 ta->name = name;
[b91bb65]164 ta->main_thread = NULL;
[7509ddc]165 ta->refcount = 0;
[cfffb290]166 ta->context = CONTEXT;
[7509ddc]167
[1077d91]168 ta->capabilities = 0;
[7509ddc]169 ta->accept_new_threads = true;
[0313ff0]170 ta->cycles = 0;
[2ba7810]171
[6d9c49a]172 ipc_answerbox_init(&ta->answerbox);
[cfffb290]173 for (i = 0; i < IPC_MAX_PHONES; i++)
[2ba7810]174 ipc_phone_init(&ta->phones[i]);
[6f4495f5]175 if ((ipc_phone_0) && (context_check(ipc_phone_0->task->context,
176 ta->context)))
[2ba7810]177 ipc_phone_connect(&ta->phones[0], ipc_phone_0);
[5f62ef9]178 atomic_set(&ta->active_calls, 0);
[4fded58]179
180 mutex_initialize(&ta->futexes_lock);
181 btree_create(&ta->futexes);
[bb68433]182
183 ipl = interrupts_disable();
[482826d]184
185 /*
186 * Increment address space reference count.
187 */
[31d8e10]188 atomic_inc(&as->refcount);
[482826d]189
[bb68433]190 spinlock_lock(&tasks_lock);
[286e03d]191
192 ta->taskid = ++task_counter;
[b7f364e]193 btree_insert(&tasks_btree, (btree_key_t) ta->taskid, (void *) ta, NULL);
[286e03d]194
[bb68433]195 spinlock_unlock(&tasks_lock);
196 interrupts_restore(ipl);
197
[f761f1eb]198 return ta;
199}
200
[7509ddc]201/** Destroy task.
202 *
203 * @param t Task to be destroyed.
204 */
205void task_destroy(task_t *t)
206{
[31e8ddd]207 task_destroy_arch(t);
208 btree_destroy(&t->futexes);
209
[31d8e10]210 if (atomic_predec(&t->as->refcount) == 0)
[31e8ddd]211 as_destroy(t->as);
212
213 free(t);
214 TASK = NULL;
[7509ddc]215}
216
[5be1923]217/** Create new task with 1 thread and run it
[ff14c520]218 *
[9179d0a]219 * @param program_addr Address of program executable image.
[ff14c520]220 * @param name Program name.
[5be1923]221 *
[7f0837c]222 * @return Task of the running program or NULL on error.
[5be1923]223 */
[ff14c520]224task_t * task_run_program(void *program_addr, char *name)
[5be1923]225{
226 as_t *as;
227 as_area_t *a;
228 int rc;
[b91bb65]229 thread_t *t1, *t2;
[5be1923]230 task_t *task;
[0f250f9]231 uspace_arg_t *kernel_uarg;
[5be1923]232
233 as = as_create(0);
[a0bb10ef]234 ASSERT(as);
[5be1923]235
[649799a]236 rc = elf_load((elf_header_t *) program_addr, as);
[5be1923]237 if (rc != EE_OK) {
[482826d]238 as_destroy(as);
[5be1923]239 return NULL;
240 }
241
[0f250f9]242 kernel_uarg = (uspace_arg_t *) malloc(sizeof(uspace_arg_t), 0);
[6f4495f5]243 kernel_uarg->uspace_entry =
244 (void *) ((elf_header_t *) program_addr)->e_entry;
[0f250f9]245 kernel_uarg->uspace_stack = (void *) USTACK_ADDRESS;
246 kernel_uarg->uspace_thread_function = NULL;
247 kernel_uarg->uspace_thread_arg = NULL;
248 kernel_uarg->uspace_uarg = NULL;
[9f52563]249
[ff14c520]250 task = task_create(as, name);
[a0bb10ef]251 ASSERT(task);
252
[5be1923]253 /*
254 * Create the data as_area.
255 */
[6f4495f5]256 a = as_area_create(as, AS_AREA_READ | AS_AREA_WRITE | AS_AREA_CACHEABLE,
257 LOADED_PROG_STACK_PAGES_NO * PAGE_SIZE, USTACK_ADDRESS,
258 AS_AREA_ATTR_NONE, &anon_backend, NULL);
[5be1923]259
[b91bb65]260 /*
261 * Create the main thread.
262 */
[6f4495f5]263 t1 = thread_create(uinit, kernel_uarg, task, THREAD_FLAG_USPACE,
264 "uinit", false);
[b91bb65]265 ASSERT(t1);
[a0bb10ef]266
[b91bb65]267 /*
268 * Create killer thread for the new task.
269 */
[62b6d17]270 t2 = thread_create(ktaskgc, t1, task, 0, "ktaskgc", true);
[b91bb65]271 ASSERT(t2);
272 thread_ready(t2);
273
274 thread_ready(t1);
275
[5be1923]276 return task;
277}
[37c57f2]278
[ec55358]279/** Syscall for reading task ID from userspace.
280 *
[6f4495f5]281 * @param uspace_task_id Userspace address of 8-byte buffer where to store
282 * current task ID.
[ec55358]283 *
[e3c762cd]284 * @return 0 on success or an error code from @ref errno.h.
[ec55358]285 */
[7f1c620]286unative_t sys_task_get_id(task_id_t *uspace_task_id)
[ec55358]287{
288 /*
289 * No need to acquire lock on TASK because taskid
290 * remains constant for the lifespan of the task.
291 */
[6f4495f5]292 return (unative_t) copy_to_uspace(uspace_task_id, &TASK->taskid,
293 sizeof(TASK->taskid));
[ec55358]294}
295
[9a8d91b]296/** Find task structure corresponding to task ID.
297 *
298 * The tasks_lock must be already held by the caller of this function
299 * and interrupts must be disabled.
300 *
301 * @param id Task ID.
302 *
303 * @return Task structure address or NULL if there is no such task ID.
304 */
305task_t *task_find_by_id(task_id_t id)
306{
307 btree_node_t *leaf;
308
309 return (task_t *) btree_search(&tasks_btree, (btree_key_t) id, &leaf);
310}
311
[0313ff0]312/** Get accounting data of given task.
313 *
[771cd22]314 * Note that task lock of 't' must be already held and
[0313ff0]315 * interrupts must be already disabled.
316 *
317 * @param t Pointer to thread.
318 *
319 */
320uint64_t task_get_accounting(task_t *t)
321{
322 /* Accumulated value of task */
323 uint64_t ret = t->cycles;
324
325 /* Current values of threads */
326 link_t *cur;
327 for (cur = t->th_head.next; cur != &t->th_head; cur = cur->next) {
328 thread_t *thr = list_get_instance(cur, thread_t, th_link);
329
330 spinlock_lock(&thr->lock);
[62b6d17]331 /* Process only counted threads */
332 if (!thr->uncounted) {
[6f4495f5]333 if (thr == THREAD) {
334 /* Update accounting of current thread */
335 thread_update_accounting();
336 }
[62b6d17]337 ret += thr->cycles;
338 }
[0313ff0]339 spinlock_unlock(&thr->lock);
340 }
341
342 return ret;
343}
344
[7509ddc]345/** Kill task.
346 *
347 * @param id ID of the task to be killed.
348 *
349 * @return 0 on success or an error code from errno.h
350 */
351int task_kill(task_id_t id)
352{
353 ipl_t ipl;
354 task_t *ta;
355 thread_t *t;
356 link_t *cur;
[9b6aae6]357
358 if (id == 1)
359 return EPERM;
[7509ddc]360
361 ipl = interrupts_disable();
362 spinlock_lock(&tasks_lock);
363
364 if (!(ta = task_find_by_id(id))) {
365 spinlock_unlock(&tasks_lock);
366 interrupts_restore(ipl);
367 return ENOENT;
368 }
[2569ec90]369
[7509ddc]370 spinlock_lock(&ta->lock);
371 ta->refcount++;
372 spinlock_unlock(&ta->lock);
[31e8ddd]373
[2569ec90]374 btree_remove(&tasks_btree, ta->taskid, NULL);
[31e8ddd]375 spinlock_unlock(&tasks_lock);
[7509ddc]376
[62b6d17]377 t = thread_create(ktaskclnp, NULL, ta, 0, "ktaskclnp", true);
[7509ddc]378
379 spinlock_lock(&ta->lock);
[34dcd3f]380 ta->accept_new_threads = false;
[7509ddc]381 ta->refcount--;
[b91bb65]382
383 /*
[0182a665]384 * Interrupt all threads except ktaskclnp.
[b91bb65]385 */
[7509ddc]386 for (cur = ta->th_head.next; cur != &ta->th_head; cur = cur->next) {
387 thread_t *thr;
388 bool sleeping = false;
389
390 thr = list_get_instance(cur, thread_t, th_link);
391 if (thr == t)
392 continue;
393
394 spinlock_lock(&thr->lock);
395 thr->interrupted = true;
396 if (thr->state == Sleeping)
397 sleeping = true;
398 spinlock_unlock(&thr->lock);
399
400 if (sleeping)
[5573942]401 waitq_interrupt_sleep(thr);
[7509ddc]402 }
403
[34dcd3f]404 spinlock_unlock(&ta->lock);
405 interrupts_restore(ipl);
[7509ddc]406
[34dcd3f]407 if (t)
408 thread_ready(t);
409
[7509ddc]410 return 0;
411}
412
[37c57f2]413/** Print task list */
414void task_print_list(void)
415{
416 link_t *cur;
417 ipl_t ipl;
418
[f74bbaf]419 /* Messing with task structures, avoid deadlock */
[37c57f2]420 ipl = interrupts_disable();
421 spinlock_lock(&tasks_lock);
[f88fcbe]422
[6f4495f5]423 printf("taskid name ctx address as cycles threads "
424 "calls callee\n");
425 printf("------ ---------- --- ---------- ---------- ---------- ------- " "------ ------>\n");
[37c57f2]426
[6f4495f5]427 for (cur = tasks_btree.leaf_head.next; cur != &tasks_btree.leaf_head;
428 cur = cur->next) {
[7f6e755]429 btree_node_t *node;
[4184e76]430 unsigned int i;
[7f6e755]431
432 node = list_get_instance(cur, btree_node_t, leaf_link);
433 for (i = 0; i < node->keys; i++) {
434 task_t *t;
435 int j;
436
437 t = (task_t *) node->value[i];
438
439 spinlock_lock(&t->lock);
[0313ff0]440
[95155b0c]441 uint64_t cycles;
[0313ff0]442 char suffix;
[95155b0c]443 order(task_get_accounting(t), &cycles, &suffix);
[0313ff0]444
[201abde]445 printf("%-6llu %-10s %-3ld %#10zx %#10zx %9llu%c %7zd "
[6f4495f5]446 "%6zd", t->taskid, t->name, t->context, t, t->as,
447 cycles, suffix, t->refcount,
448 atomic_get(&t->active_calls));
[f88fcbe]449 for (j = 0; j < IPC_MAX_PHONES; j++) {
[7f6e755]450 if (t->phones[j].callee)
[6f4495f5]451 printf(" %zd:%#zx", j,
452 t->phones[j].callee);
[7f6e755]453 }
454 printf("\n");
[0313ff0]455
[7f6e755]456 spinlock_unlock(&t->lock);
[37c57f2]457 }
458 }
459
460 spinlock_unlock(&tasks_lock);
461 interrupts_restore(ipl);
462}
[7509ddc]463
[b91bb65]464/** Kernel thread used to cleanup the task after it is killed. */
[34dcd3f]465void ktaskclnp(void *arg)
[7509ddc]466{
[34dcd3f]467 ipl_t ipl;
[b91bb65]468 thread_t *t = NULL, *main_thread;
[34dcd3f]469 link_t *cur;
[48e7dd6]470 bool again;
[34dcd3f]471
472 thread_detach(THREAD);
473
474loop:
475 ipl = interrupts_disable();
476 spinlock_lock(&TASK->lock);
477
[b91bb65]478 main_thread = TASK->main_thread;
479
[34dcd3f]480 /*
481 * Find a thread to join.
482 */
[48e7dd6]483 again = false;
[34dcd3f]484 for (cur = TASK->th_head.next; cur != &TASK->th_head; cur = cur->next) {
485 t = list_get_instance(cur, thread_t, th_link);
[48e7dd6]486
487 spinlock_lock(&t->lock);
488 if (t == THREAD) {
489 spinlock_unlock(&t->lock);
490 continue;
491 } else if (t == main_thread) {
492 spinlock_unlock(&t->lock);
[34dcd3f]493 continue;
[48e7dd6]494 } else if (t->join_type != None) {
495 spinlock_unlock(&t->lock);
496 again = true;
[b91bb65]497 continue;
[48e7dd6]498 } else {
499 t->join_type = TaskClnp;
500 spinlock_unlock(&t->lock);
501 again = false;
[34dcd3f]502 break;
[48e7dd6]503 }
[34dcd3f]504 }
505
506 spinlock_unlock(&TASK->lock);
507 interrupts_restore(ipl);
508
[48e7dd6]509 if (again) {
510 /*
511 * Other cleanup (e.g. ktaskgc) is in progress.
512 */
513 scheduler();
514 goto loop;
515 }
516
[34dcd3f]517 if (t != THREAD) {
[6f4495f5]518 ASSERT(t != main_thread); /* uninit is joined and detached
519 * in ktaskgc */
[34dcd3f]520 thread_join(t);
521 thread_detach(t);
[6f4495f5]522 goto loop; /* go for another thread */
[34dcd3f]523 }
524
525 /*
526 * Now there are no other threads in this task
527 * and no new threads can be created.
528 */
[7bb6b06]529
[e090e1bc]530 ipc_cleanup();
531 futex_cleanup();
[201abde]532 klog_printf("Cleanup of task %llu completed.", TASK->taskid);
[7509ddc]533}
[b91bb65]534
[88636f68]535/** Kernel thread used to kill the userspace task when its main thread exits.
[b91bb65]536 *
537 * This thread waits until the main userspace thread (i.e. uninit) exits.
[48e7dd6]538 * When this happens, the task is killed. In the meantime, exited threads
539 * are garbage collected.
[b91bb65]540 *
541 * @param arg Pointer to the thread structure of the task's main thread.
542 */
[48e7dd6]543void ktaskgc(void *arg)
[b91bb65]544{
545 thread_t *t = (thread_t *) arg;
[48e7dd6]546loop:
[b91bb65]547 /*
548 * Userspace threads cannot detach themselves,
549 * therefore the thread pointer is guaranteed to be valid.
550 */
[6f4495f5]551 if (thread_join_timeout(t, 1000000, SYNCH_FLAGS_NONE) ==
552 ESYNCH_TIMEOUT) { /* sleep uninterruptibly here! */
[48e7dd6]553 ipl_t ipl;
554 link_t *cur;
555 thread_t *thr = NULL;
556
557 /*
[6f4495f5]558 * The join timed out. Try to do some garbage collection of
559 * Undead threads.
[48e7dd6]560 */
561more_gc:
562 ipl = interrupts_disable();
563 spinlock_lock(&TASK->lock);
564
[6f4495f5]565 for (cur = TASK->th_head.next; cur != &TASK->th_head;
566 cur = cur->next) {
[48e7dd6]567 thr = list_get_instance(cur, thread_t, th_link);
568 spinlock_lock(&thr->lock);
[6f4495f5]569 if (thr != t && thr->state == Undead &&
570 thr->join_type == None) {
[48e7dd6]571 thr->join_type = TaskGC;
572 spinlock_unlock(&thr->lock);
573 break;
574 }
575 spinlock_unlock(&thr->lock);
576 thr = NULL;
577 }
578 spinlock_unlock(&TASK->lock);
[92922e6]579 interrupts_restore(ipl);
[48e7dd6]580
581 if (thr) {
582 thread_join(thr);
583 thread_detach(thr);
584 scheduler();
585 goto more_gc;
586 }
587
588 goto loop;
589 }
[b91bb65]590 thread_detach(t);
591 task_kill(TASK->taskid);
592}
[b45c443]593
[cc73a8a1]594/** @}
[b45c443]595 */
Note: See TracBrowser for help on using the repository browser.