Subversion Repositories HelenOS

Rev

Rev 2227 | Rev 2446 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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