[1] | 1 | /* |
---|
| 2 | * sys_thread_create.c - creates a new user thread |
---|
[289] | 3 | * |
---|
[624] | 4 | * Author Alain Greiner (2016,2017,2018,2019) |
---|
[1] | 5 | * |
---|
| 6 | * Copyright (c) UPMC Sorbonne Universites |
---|
| 7 | * |
---|
| 8 | * This file is part of ALMOS-MKH. |
---|
| 9 | * |
---|
| 10 | * ALMOS-MKH is free software; you can redistribute it and/or modify it |
---|
| 11 | * under the terms of the GNU General Public License as published by |
---|
| 12 | * the Free Software Foundation; version 2.0 of the License. |
---|
| 13 | * |
---|
| 14 | * ALMOS-MKH is distributed in the hope that it will be useful, but |
---|
| 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
| 17 | * General Public License for more details. |
---|
| 18 | * |
---|
| 19 | * You should have received a copy of the GNU General Public License |
---|
| 20 | * along with ALMOS-MKH; if not, write to the Free Software Foundation, |
---|
| 21 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
---|
| 22 | */ |
---|
| 23 | |
---|
[14] | 24 | #include <kernel_config.h> |
---|
[457] | 25 | #include <hal_kernel_types.h> |
---|
[23] | 26 | #include <hal_uspace.h> |
---|
[624] | 27 | #include <hal_vmm.h> |
---|
[1] | 28 | #include <printk.h> |
---|
| 29 | #include <errno.h> |
---|
| 30 | #include <core.h> |
---|
| 31 | #include <cluster.h> |
---|
| 32 | #include <list.h> |
---|
| 33 | #include <xlist.h> |
---|
| 34 | #include <thread.h> |
---|
| 35 | #include <scheduler.h> |
---|
| 36 | #include <kmem.h> |
---|
| 37 | #include <process.h> |
---|
| 38 | #include <dqdt.h> |
---|
[23] | 39 | #include <rpc.h> |
---|
[1] | 40 | |
---|
[506] | 41 | #include <syscalls.h> |
---|
[1] | 42 | |
---|
[566] | 43 | ///////////////////////////////////////////////////////// |
---|
| 44 | int sys_thread_create( trdid_t * trdid_ptr, |
---|
| 45 | struct pthread_attr_s * user_attr, |
---|
| 46 | void * start_func, |
---|
| 47 | void * start_args ) |
---|
[1] | 48 | { |
---|
[633] | 49 | pthread_attr_t kern_attr; // copy of pthread attributes in kernel space |
---|
| 50 | thread_t * parent; // pointer on thread executing the pthread_create |
---|
[566] | 51 | cxy_t child_cxy; // created child thread cluster identifier |
---|
[633] | 52 | thread_t * child_ptr; // pointer on created child thread |
---|
| 53 | xptr_t child_xp; // extended pointer on created thread |
---|
| 54 | trdid_t trdid; // created thread identifier |
---|
| 55 | process_t * process; // pointer on local process descriptor |
---|
| 56 | vseg_t * vseg; // required for user space checking |
---|
| 57 | error_t error; |
---|
[1] | 58 | |
---|
[633] | 59 | // get parent thead pointer, extended pointer, and process |
---|
| 60 | parent = CURRENT_THREAD; |
---|
| 61 | process = parent->process; |
---|
[1] | 62 | |
---|
[594] | 63 | #if (DEBUG_SYS_THREAD_CREATE || CONFIG_INSTRUMENTATION_SYSCALLS) |
---|
| 64 | uint64_t tm_start = hal_get_cycles(); |
---|
| 65 | #endif |
---|
| 66 | |
---|
[438] | 67 | #if DEBUG_SYS_THREAD_CREATE |
---|
[437] | 68 | tm_start = hal_get_cycles(); |
---|
[438] | 69 | if( DEBUG_SYS_THREAD_CREATE < tm_start ) |
---|
[594] | 70 | printk("\n[%s] thread[%x,%x] enter / cycle %d\n", |
---|
[619] | 71 | __FUNCTION__, process->pid, parent->trdid, (uint32_t)tm_start ); |
---|
[437] | 72 | #endif |
---|
| 73 | |
---|
[440] | 74 | // check trdid buffer in user space |
---|
[566] | 75 | error = vmm_get_vseg( process , (intptr_t)trdid_ptr , &vseg ); |
---|
[440] | 76 | |
---|
| 77 | if ( error ) |
---|
| 78 | { |
---|
| 79 | |
---|
| 80 | #if DEBUG_SYSCALLS_ERROR |
---|
[594] | 81 | printk("\n[ERROR] in %s : thread[%x,%x] / trdid buffer %x unmapped %x\n", |
---|
| 82 | __FUNCTION__, process->pid, parent->trdid, (intptr_t)trdid_ptr ); |
---|
[440] | 83 | #endif |
---|
| 84 | parent->errno = EINVAL; |
---|
| 85 | return -1; |
---|
| 86 | } |
---|
| 87 | |
---|
| 88 | // check user_attr buffer in user space & copy to kernel space |
---|
[407] | 89 | if( user_attr != NULL ) |
---|
| 90 | { |
---|
[440] | 91 | error = vmm_get_vseg( process , (intptr_t)user_attr , &vseg ); |
---|
[23] | 92 | |
---|
[407] | 93 | if( error ) |
---|
| 94 | { |
---|
[437] | 95 | |
---|
[438] | 96 | #if DEBUG_SYSCALLS_ERROR |
---|
[594] | 97 | printk("\n[ERROR] in %s : thread[%x,%x] / user_attr buffer unmapped %x\n", |
---|
| 98 | __FUNCTION__, process->pid, parent->trdid, (intptr_t)user_attr ); |
---|
[437] | 99 | #endif |
---|
[407] | 100 | parent->errno = EINVAL; |
---|
| 101 | return -1; |
---|
| 102 | } |
---|
| 103 | |
---|
[626] | 104 | hal_copy_from_uspace( local_cxy, |
---|
| 105 | &kern_attr, |
---|
| 106 | user_attr, |
---|
| 107 | sizeof(pthread_attr_t) ); |
---|
[407] | 108 | } |
---|
[23] | 109 | |
---|
[289] | 110 | // check start_func in user space |
---|
[440] | 111 | error = vmm_get_vseg( process , (intptr_t)start_func , &vseg ); |
---|
[23] | 112 | |
---|
[440] | 113 | if( error ) |
---|
| 114 | { |
---|
[437] | 115 | |
---|
[438] | 116 | #if DEBUG_SYSCALLS_ERROR |
---|
[594] | 117 | printk("\n[ERROR] in %s : thread[%x,%x] / start_func unmapped %x\n", |
---|
| 118 | __FUNCTION__, process->pid, parent->trdid, (intptr_t)start_func ); |
---|
[437] | 119 | #endif |
---|
[440] | 120 | parent->errno = EINVAL; |
---|
| 121 | return -1; |
---|
[1] | 122 | } |
---|
| 123 | |
---|
[506] | 124 | // check start_args buffer in user space |
---|
| 125 | if( start_args != NULL ) |
---|
[440] | 126 | { |
---|
[506] | 127 | error = vmm_get_vseg( process , (intptr_t)start_args , &vseg ); |
---|
[1] | 128 | |
---|
[440] | 129 | if( error ) |
---|
| 130 | { |
---|
[437] | 131 | |
---|
[438] | 132 | #if DEBUG_SYSCALLS_ERROR |
---|
[594] | 133 | printk("\n[ERROR] in %s : thread[%x,%x] / start_args buffer unmapped %x\n", |
---|
| 134 | __FUNCTION__, process->pid, parent->trdid, (intptr_t)start_args ); |
---|
[437] | 135 | #endif |
---|
[440] | 136 | parent->errno = EINVAL; |
---|
| 137 | return -1; |
---|
| 138 | } |
---|
[23] | 139 | } |
---|
| 140 | |
---|
[566] | 141 | // define attributes and child_cxy |
---|
[407] | 142 | if( user_attr != NULL ) // user defined attributes |
---|
| 143 | { |
---|
[566] | 144 | // check / get child_cxy |
---|
[407] | 145 | if( kern_attr.attributes & PT_ATTR_CLUSTER_DEFINED ) |
---|
| 146 | { |
---|
| 147 | if( cluster_is_undefined( kern_attr.cxy ) ) |
---|
| 148 | { |
---|
[437] | 149 | |
---|
[438] | 150 | #if DEBUG_SYSCALLS_ERROR |
---|
[594] | 151 | printk("\n[ERROR] in %s : thread[%x,%x] / illegal target cluster %x\n", |
---|
| 152 | __FUNCTION__, process->pid, parent->trdid, kern_attr.cxy ); |
---|
[437] | 153 | #endif |
---|
[407] | 154 | parent->errno = EINVAL; |
---|
| 155 | return -1; |
---|
| 156 | } |
---|
[566] | 157 | child_cxy = kern_attr.cxy; |
---|
[289] | 158 | } |
---|
[407] | 159 | else |
---|
| 160 | { |
---|
[566] | 161 | child_cxy = dqdt_get_cluster_for_process(); |
---|
[407] | 162 | } |
---|
[289] | 163 | } |
---|
[407] | 164 | else // set default attributes |
---|
[289] | 165 | { |
---|
[407] | 166 | kern_attr.attributes = PT_ATTR_DETACH | PT_ATTR_CLUSTER_DEFINED; |
---|
[566] | 167 | child_cxy = dqdt_get_cluster_for_process(); |
---|
[289] | 168 | } |
---|
[1] | 169 | |
---|
[289] | 170 | // create the thread, using a RPC if required |
---|
[407] | 171 | // this returns "error", "child_ptr", and "child_xp" |
---|
[1] | 172 | |
---|
[566] | 173 | if( child_cxy == local_cxy ) // target cluster is local |
---|
[289] | 174 | { |
---|
| 175 | // create thread in local cluster |
---|
| 176 | error = thread_user_create( process->pid, |
---|
| 177 | start_func, |
---|
[506] | 178 | start_args, |
---|
[407] | 179 | &kern_attr, |
---|
[289] | 180 | &child_ptr ); |
---|
[1] | 181 | |
---|
[289] | 182 | child_xp = XPTR( local_cxy , child_ptr ); |
---|
| 183 | } |
---|
| 184 | else // target cluster is remote |
---|
| 185 | { |
---|
[566] | 186 | rpc_thread_user_create_client( child_cxy, |
---|
[289] | 187 | process->pid, |
---|
| 188 | start_func, |
---|
[506] | 189 | start_args, |
---|
[407] | 190 | &kern_attr, |
---|
[289] | 191 | &child_xp, |
---|
| 192 | &error ); |
---|
[23] | 193 | |
---|
[289] | 194 | child_ptr = (thread_t *)GET_PTR( child_xp ); |
---|
| 195 | } |
---|
[1] | 196 | |
---|
[289] | 197 | // check successful thread creation |
---|
| 198 | if( error ) |
---|
| 199 | { |
---|
[437] | 200 | |
---|
[438] | 201 | #if DEBUG_SYSCALLS_ERROR |
---|
[594] | 202 | printk("\n[ERROR] in %s : thread[%x,%x] cannot create new thread\n", |
---|
| 203 | __FUNCTION__ , process->pid, parent->trdid ); |
---|
[437] | 204 | #endif |
---|
[440] | 205 | parent->errno = ENOMEM; |
---|
| 206 | return -1; |
---|
[289] | 207 | } |
---|
[1] | 208 | |
---|
[289] | 209 | // returns trdid to user space |
---|
[566] | 210 | trdid = hal_remote_l32( XPTR( child_cxy , &child_ptr->trdid ) ); |
---|
[626] | 211 | hal_copy_to_uspace( local_cxy, |
---|
| 212 | &trdid, |
---|
| 213 | trdid_ptr, |
---|
| 214 | sizeof(pthread_t) ); |
---|
[1] | 215 | |
---|
[407] | 216 | // activate new thread |
---|
| 217 | thread_unblock( child_xp , THREAD_BLOCKED_GLOBAL ); |
---|
| 218 | |
---|
| 219 | hal_fence(); |
---|
| 220 | |
---|
[594] | 221 | #if (DEBUG_SYS_THREAD_CREATE || CONFIG_INSTRUMENTATION_SYSCALLS) |
---|
| 222 | uint64_t tm_end = hal_get_cycles(); |
---|
| 223 | #endif |
---|
| 224 | |
---|
[438] | 225 | #if DEBUG_SYS_THREAD_CREATE |
---|
| 226 | if( DEBUG_SYS_THREAD_CREATE < tm_end ) |
---|
[594] | 227 | printk("\n[%s] thread[%x,%x] created thread %x / cycle %d\n", |
---|
| 228 | __FUNCTION__, process->pid, parent->trdid, child_ptr->trdid, (uint32_t)tm_end ); |
---|
[437] | 229 | #endif |
---|
[1] | 230 | |
---|
[594] | 231 | #if CONFIG_INSTRUMENTATION_SYSCALLS |
---|
| 232 | hal_atomic_add( &syscalls_cumul_cost[SYS_THREAD_CREATE] , tm_end - tm_start ); |
---|
| 233 | hal_atomic_add( &syscalls_occurences[SYS_THREAD_CREATE] , 1 ); |
---|
| 234 | #endif |
---|
| 235 | |
---|
[1] | 236 | return 0; |
---|
| 237 | |
---|
[407] | 238 | } // end sys_thread_create() |
---|
| 239 | |
---|