[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 <libc.h>
|
---|
[76d0981d] | 36 | #include <stdbool.h>
|
---|
[e5a1f82f] | 37 | #include <stdlib.h>
|
---|
[afbe96a] | 38 | #include <libarch/faddr.h>
|
---|
[c0699467] | 39 | #include <abi/proc/uarg.h>
|
---|
[bc1f1c2] | 40 | #include <fibril.h>
|
---|
[0aae87a6] | 41 | #include <stack.h>
|
---|
[19f857a] | 42 | #include <str.h>
|
---|
[80649a91] | 43 | #include <async.h>
|
---|
[2902e1bb] | 44 | #include <errno.h>
|
---|
| 45 | #include <as.h>
|
---|
[6340b4d2] | 46 |
|
---|
| 47 | #include "../private/thread.h"
|
---|
| 48 | #include "../private/fibril.h"
|
---|
[29a9f62] | 49 |
|
---|
[81e55099] | 50 | /** Main thread function.
|
---|
| 51 | *
|
---|
| 52 | * This function is called from __thread_entry() and is used
|
---|
| 53 | * to call the thread's implementing function and perform cleanup
|
---|
[47b7006] | 54 | * and exit when thread returns back.
|
---|
[81e55099] | 55 | *
|
---|
| 56 | * @param uarg Pointer to userspace argument structure.
|
---|
[47b7006] | 57 | *
|
---|
[81e55099] | 58 | */
|
---|
[29a9f62] | 59 | void __thread_main(uspace_arg_t *uarg)
|
---|
[e5a1f82f] | 60 | {
|
---|
[40abf56] | 61 | assert(!__tcb_is_set());
|
---|
| 62 |
|
---|
| 63 | fibril_t *fibril = uarg->uspace_thread_arg;
|
---|
| 64 | assert(fibril);
|
---|
[a35b458] | 65 |
|
---|
[47b7006] | 66 | __tcb_set(fibril->tcb);
|
---|
[a35b458] | 67 |
|
---|
[40abf56] | 68 | uarg->uspace_thread_function(fibril->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 | */
|
---|
[a35b458] | 75 |
|
---|
[514d561] | 76 | fibril_teardown(fibril);
|
---|
[e5a1f82f] | 77 | thread_exit(0);
|
---|
| 78 | }
|
---|
[c05290e] | 79 |
|
---|
[81e55099] | 80 | /** Create userspace thread.
|
---|
| 81 | *
|
---|
| 82 | * This function creates new userspace thread and allocates userspace
|
---|
| 83 | * stack and userspace argument structure for it.
|
---|
| 84 | *
|
---|
| 85 | * @param function Function implementing the thread.
|
---|
| 86 | * @param arg Argument to be passed to thread.
|
---|
| 87 | * @param name Symbolic name of the thread.
|
---|
[201abde] | 88 | * @param tid Thread ID of the newly created thread.
|
---|
[81e55099] | 89 | *
|
---|
[201abde] | 90 | * @return Zero on success or a code from @ref errno.h on failure.
|
---|
[81e55099] | 91 | */
|
---|
[1433ecda] | 92 | errno_t thread_create(void (*function)(void *), void *arg, const char *name,
|
---|
[f6d2c81] | 93 | thread_id_t *tid)
|
---|
[c05290e] | 94 | {
|
---|
[40abf56] | 95 | uspace_arg_t *uarg = calloc(1, sizeof(uspace_arg_t));
|
---|
[2902e1bb] | 96 | if (!uarg)
|
---|
| 97 | return ENOMEM;
|
---|
[a35b458] | 98 |
|
---|
[40abf56] | 99 | fibril_t *fibril = fibril_alloc();
|
---|
| 100 | if (!fibril) {
|
---|
| 101 | free(uarg);
|
---|
| 102 | return ENOMEM;
|
---|
| 103 | }
|
---|
| 104 |
|
---|
[0aae87a6] | 105 | size_t stack_size = stack_size_get();
|
---|
[2902e1bb] | 106 | void *stack = as_area_create(AS_AREA_ANY, stack_size,
|
---|
[3b8a990] | 107 | AS_AREA_READ | AS_AREA_WRITE | AS_AREA_CACHEABLE | AS_AREA_GUARD |
|
---|
[6aeca0d] | 108 | AS_AREA_LATE_RESERVE, AS_AREA_UNPAGED);
|
---|
[2902e1bb] | 109 | if (stack == AS_MAP_FAILED) {
|
---|
[514d561] | 110 | fibril_teardown(fibril);
|
---|
[2902e1bb] | 111 | free(uarg);
|
---|
| 112 | return ENOMEM;
|
---|
[e5a1f82f] | 113 | }
|
---|
[a35b458] | 114 |
|
---|
[40abf56] | 115 | fibril->arg = arg;
|
---|
[e5a1f82f] | 116 | uarg->uspace_entry = (void *) FADDR(__thread_entry);
|
---|
[2902e1bb] | 117 | uarg->uspace_stack = stack;
|
---|
| 118 | uarg->uspace_stack_size = stack_size;
|
---|
[81e55099] | 119 | uarg->uspace_thread_function = function;
|
---|
[40abf56] | 120 | uarg->uspace_thread_arg = fibril;
|
---|
[e5a1f82f] | 121 | uarg->uspace_uarg = uarg;
|
---|
[a35b458] | 122 |
|
---|
[b7fd2a0] | 123 | errno_t rc = (errno_t) __SYSCALL4(SYS_THREAD_CREATE, (sysarg_t) uarg,
|
---|
[2902e1bb] | 124 | (sysarg_t) name, (sysarg_t) str_size(name), (sysarg_t) tid);
|
---|
[a35b458] | 125 |
|
---|
[2902e1bb] | 126 | if (rc != EOK) {
|
---|
[f6d2c81] | 127 | /*
|
---|
| 128 | * Failed to create a new thread.
|
---|
[2902e1bb] | 129 | * Free up the allocated data.
|
---|
[f6d2c81] | 130 | */
|
---|
[2902e1bb] | 131 | as_area_destroy(stack);
|
---|
[f6d2c81] | 132 | free(uarg);
|
---|
| 133 | }
|
---|
[a35b458] | 134 |
|
---|
[f6d2c81] | 135 | return rc;
|
---|
[c05290e] | 136 | }
|
---|
| 137 |
|
---|
[81e55099] | 138 | /** Terminate current thread.
|
---|
| 139 | *
|
---|
[096ba7a] | 140 | * @param status Exit status. Currently not used.
|
---|
[47b7006] | 141 | *
|
---|
[81e55099] | 142 | */
|
---|
[c05290e] | 143 | void thread_exit(int status)
|
---|
| 144 | {
|
---|
| 145 | __SYSCALL1(SYS_THREAD_EXIT, (sysarg_t) status);
|
---|
[a35b458] | 146 |
|
---|
[47b7006] | 147 | /* Unreachable */
|
---|
[76d0981d] | 148 | while (true)
|
---|
[1433ecda] | 149 | ;
|
---|
[c05290e] | 150 | }
|
---|
[01ff41c] | 151 |
|
---|
[dd655970] | 152 | /** Detach thread.
|
---|
| 153 | *
|
---|
| 154 | * Currently not implemented.
|
---|
| 155 | *
|
---|
| 156 | * @param thread TID.
|
---|
| 157 | */
|
---|
[201abde] | 158 | void thread_detach(thread_id_t thread)
|
---|
[dd655970] | 159 | {
|
---|
| 160 | }
|
---|
| 161 |
|
---|
| 162 | /** Get current thread ID.
|
---|
| 163 | *
|
---|
| 164 | * @return Current thread ID.
|
---|
| 165 | */
|
---|
[201abde] | 166 | thread_id_t thread_get_id(void)
|
---|
[dd655970] | 167 | {
|
---|
[201abde] | 168 | thread_id_t thread_id;
|
---|
| 169 |
|
---|
| 170 | (void) __SYSCALL1(SYS_THREAD_GET_ID, (sysarg_t) &thread_id);
|
---|
| 171 |
|
---|
| 172 | return thread_id;
|
---|
[dd655970] | 173 | }
|
---|
| 174 |
|
---|
[582a0b8] | 175 | /** Wait unconditionally for specified number of microseconds
|
---|
| 176 | *
|
---|
| 177 | */
|
---|
[bd41ac52] | 178 | void thread_usleep(usec_t usec)
|
---|
[582a0b8] | 179 | {
|
---|
| 180 | (void) __SYSCALL1(SYS_THREAD_USLEEP, usec);
|
---|
| 181 | }
|
---|
| 182 |
|
---|
| 183 | /** Wait unconditionally for specified number of seconds
|
---|
| 184 | *
|
---|
| 185 | */
|
---|
[bd41ac52] | 186 | void thread_sleep(sec_t sec)
|
---|
[582a0b8] | 187 | {
|
---|
| 188 | /*
|
---|
[bd41ac52] | 189 | * Sleep in 1000 second steps to support full argument range
|
---|
[582a0b8] | 190 | */
|
---|
| 191 | while (sec > 0) {
|
---|
| 192 | unsigned int period = (sec > 1000) ? 1000 : sec;
|
---|
[a35b458] | 193 |
|
---|
[bd41ac52] | 194 | thread_usleep(SEC2USEC(period));
|
---|
[582a0b8] | 195 | sec -= period;
|
---|
| 196 | }
|
---|
| 197 | }
|
---|
| 198 |
|
---|
[afbe96a] | 199 | /** @}
|
---|
[b2951e2] | 200 | */
|
---|