[c05290e] | 1 | /*
|
---|
[df4ed85] | 2 | * Copyright (c) 2006 Jakub Jermar
|
---|
[c05290e] | 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.
|
---|
[b2951e2] | 27 | */
|
---|
| 28 |
|
---|
[afbe96a] | 29 | /** @addtogroup libc
|
---|
[b2951e2] | 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
[47b7006] | 33 | */
|
---|
[c05290e] | 34 |
|
---|
| 35 | #include <thread.h>
|
---|
| 36 | #include <libc.h>
|
---|
[e5a1f82f] | 37 | #include <stdlib.h>
|
---|
[afbe96a] | 38 | #include <libarch/faddr.h>
|
---|
[c0699467] | 39 | #include <abi/proc/uarg.h>
|
---|
[bc1f1c2] | 40 | #include <fibril.h>
|
---|
[19f857a] | 41 | #include <str.h>
|
---|
[80649a91] | 42 | #include <async.h>
|
---|
[2902e1bb] | 43 | #include <errno.h>
|
---|
| 44 | #include <as.h>
|
---|
[47b7006] | 45 | #include "private/thread.h"
|
---|
[29a9f62] | 46 |
|
---|
[2902e1bb] | 47 | #ifndef THREAD_INITIAL_STACK_PAGES
|
---|
| 48 | #define THREAD_INITIAL_STACK_PAGES 2
|
---|
[fcd10af] | 49 | #endif
|
---|
| 50 |
|
---|
[81e55099] | 51 | /** Main thread function.
|
---|
| 52 | *
|
---|
| 53 | * This function is called from __thread_entry() and is used
|
---|
| 54 | * to call the thread's implementing function and perform cleanup
|
---|
[47b7006] | 55 | * and exit when thread returns back.
|
---|
[81e55099] | 56 | *
|
---|
| 57 | * @param uarg Pointer to userspace argument structure.
|
---|
[47b7006] | 58 | *
|
---|
[81e55099] | 59 | */
|
---|
[29a9f62] | 60 | void __thread_main(uspace_arg_t *uarg)
|
---|
[e5a1f82f] | 61 | {
|
---|
[47b7006] | 62 | fibril_t *fibril = fibril_setup();
|
---|
| 63 | if (fibril == NULL)
|
---|
| 64 | thread_exit(0);
|
---|
| 65 |
|
---|
| 66 | __tcb_set(fibril->tcb);
|
---|
| 67 |
|
---|
[e5a1f82f] | 68 | uarg->uspace_thread_function(uarg->uspace_thread_arg);
|
---|
[2902e1bb] | 69 | /*
|
---|
| 70 | * XXX: we cannot free the userspace stack while running on it
|
---|
| 71 | *
|
---|
| 72 | * free(uarg->uspace_stack);
|
---|
| 73 | * free(uarg);
|
---|
| 74 | */
|
---|
[47b7006] | 75 |
|
---|
[53ca318] | 76 | /* If there is a manager, destroy it */
|
---|
[80649a91] | 77 | async_destroy_manager();
|
---|
[47b7006] | 78 | fibril_teardown(fibril);
|
---|
| 79 |
|
---|
[e5a1f82f] | 80 | thread_exit(0);
|
---|
| 81 | }
|
---|
[c05290e] | 82 |
|
---|
[81e55099] | 83 | /** Create userspace thread.
|
---|
| 84 | *
|
---|
| 85 | * This function creates new userspace thread and allocates userspace
|
---|
| 86 | * stack and userspace argument structure for it.
|
---|
| 87 | *
|
---|
| 88 | * @param function Function implementing the thread.
|
---|
| 89 | * @param arg Argument to be passed to thread.
|
---|
| 90 | * @param name Symbolic name of the thread.
|
---|
[201abde] | 91 | * @param tid Thread ID of the newly created thread.
|
---|
[81e55099] | 92 | *
|
---|
[201abde] | 93 | * @return Zero on success or a code from @ref errno.h on failure.
|
---|
[81e55099] | 94 | */
|
---|
[a000878c] | 95 | int thread_create(void (* function)(void *), void *arg, const char *name,
|
---|
[f6d2c81] | 96 | thread_id_t *tid)
|
---|
[c05290e] | 97 | {
|
---|
[2902e1bb] | 98 | uspace_arg_t *uarg =
|
---|
| 99 | (uspace_arg_t *) malloc(sizeof(uspace_arg_t));
|
---|
| 100 | if (!uarg)
|
---|
| 101 | return ENOMEM;
|
---|
| 102 |
|
---|
| 103 | size_t stack_size = getpagesize() * THREAD_INITIAL_STACK_PAGES;
|
---|
| 104 | void *stack = as_area_create(AS_AREA_ANY, stack_size,
|
---|
| 105 | AS_AREA_READ | AS_AREA_WRITE | AS_AREA_CACHEABLE);
|
---|
| 106 | if (stack == AS_MAP_FAILED) {
|
---|
| 107 | free(uarg);
|
---|
| 108 | return ENOMEM;
|
---|
[e5a1f82f] | 109 | }
|
---|
[81e55099] | 110 |
|
---|
[e5a1f82f] | 111 | uarg->uspace_entry = (void *) FADDR(__thread_entry);
|
---|
[2902e1bb] | 112 | uarg->uspace_stack = stack;
|
---|
| 113 | uarg->uspace_stack_size = stack_size;
|
---|
[81e55099] | 114 | uarg->uspace_thread_function = function;
|
---|
[e5a1f82f] | 115 | uarg->uspace_thread_arg = arg;
|
---|
| 116 | uarg->uspace_uarg = uarg;
|
---|
| 117 |
|
---|
[2902e1bb] | 118 | int rc = __SYSCALL4(SYS_THREAD_CREATE, (sysarg_t) uarg,
|
---|
| 119 | (sysarg_t) name, (sysarg_t) str_size(name), (sysarg_t) tid);
|
---|
[f6d2c81] | 120 |
|
---|
[2902e1bb] | 121 | if (rc != EOK) {
|
---|
[f6d2c81] | 122 | /*
|
---|
| 123 | * Failed to create a new thread.
|
---|
[2902e1bb] | 124 | * Free up the allocated data.
|
---|
[f6d2c81] | 125 | */
|
---|
[2902e1bb] | 126 | as_area_destroy(stack);
|
---|
[f6d2c81] | 127 | free(uarg);
|
---|
| 128 | }
|
---|
[2902e1bb] | 129 |
|
---|
[f6d2c81] | 130 | return rc;
|
---|
[c05290e] | 131 | }
|
---|
| 132 |
|
---|
[81e55099] | 133 | /** Terminate current thread.
|
---|
| 134 | *
|
---|
[096ba7a] | 135 | * @param status Exit status. Currently not used.
|
---|
[47b7006] | 136 | *
|
---|
[81e55099] | 137 | */
|
---|
[c05290e] | 138 | void thread_exit(int status)
|
---|
| 139 | {
|
---|
| 140 | __SYSCALL1(SYS_THREAD_EXIT, (sysarg_t) status);
|
---|
[47b7006] | 141 |
|
---|
| 142 | /* Unreachable */
|
---|
| 143 | while (1);
|
---|
[c05290e] | 144 | }
|
---|
[01ff41c] | 145 |
|
---|
[dd655970] | 146 | /** Detach thread.
|
---|
| 147 | *
|
---|
| 148 | * Currently not implemented.
|
---|
| 149 | *
|
---|
| 150 | * @param thread TID.
|
---|
| 151 | */
|
---|
[201abde] | 152 | void thread_detach(thread_id_t thread)
|
---|
[dd655970] | 153 | {
|
---|
| 154 | }
|
---|
| 155 |
|
---|
| 156 | /** Join thread.
|
---|
| 157 | *
|
---|
| 158 | * Currently not implemented.
|
---|
| 159 | *
|
---|
| 160 | * @param thread TID.
|
---|
| 161 | *
|
---|
| 162 | * @return Thread exit status.
|
---|
| 163 | */
|
---|
[201abde] | 164 | int thread_join(thread_id_t thread)
|
---|
[dd655970] | 165 | {
|
---|
[a2c58f6] | 166 | return 0;
|
---|
[dd655970] | 167 | }
|
---|
| 168 |
|
---|
| 169 | /** Get current thread ID.
|
---|
| 170 | *
|
---|
| 171 | * @return Current thread ID.
|
---|
| 172 | */
|
---|
[201abde] | 173 | thread_id_t thread_get_id(void)
|
---|
[dd655970] | 174 | {
|
---|
[201abde] | 175 | thread_id_t thread_id;
|
---|
| 176 |
|
---|
| 177 | (void) __SYSCALL1(SYS_THREAD_GET_ID, (sysarg_t) &thread_id);
|
---|
| 178 |
|
---|
| 179 | return thread_id;
|
---|
[dd655970] | 180 | }
|
---|
| 181 |
|
---|
[afbe96a] | 182 | /** @}
|
---|
[b2951e2] | 183 | */
|
---|