| 1 | /*
|
|---|
| 2 | * sys_thread_create.c - creates a new user thread
|
|---|
| 3 | *
|
|---|
| 4 | * Author Alain Greiner (2016,2017,2018)
|
|---|
| 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 |
|
|---|
| 24 | #include <kernel_config.h>
|
|---|
| 25 | #include <hal_kernel_types.h>
|
|---|
| 26 | #include <hal_uspace.h>
|
|---|
| 27 | #include <printk.h>
|
|---|
| 28 | #include <errno.h>
|
|---|
| 29 | #include <core.h>
|
|---|
| 30 | #include <cluster.h>
|
|---|
| 31 | #include <list.h>
|
|---|
| 32 | #include <xlist.h>
|
|---|
| 33 | #include <thread.h>
|
|---|
| 34 | #include <scheduler.h>
|
|---|
| 35 | #include <kmem.h>
|
|---|
| 36 | #include <process.h>
|
|---|
| 37 | #include <spinlock.h>
|
|---|
| 38 | #include <dqdt.h>
|
|---|
| 39 | #include <rpc.h>
|
|---|
| 40 |
|
|---|
| 41 |
|
|---|
| 42 | ///////////////////////////////////////////////////
|
|---|
| 43 | int sys_thread_create ( pthread_t * trdid_ptr,
|
|---|
| 44 | pthread_attr_t * user_attr,
|
|---|
| 45 | void * start_func,
|
|---|
| 46 | void * start_arg )
|
|---|
| 47 | {
|
|---|
| 48 | pthread_attr_t kern_attr; // copy of pthread attributes in kernel space
|
|---|
| 49 | thread_t * parent; // pointer on thread executing the pthread_create
|
|---|
| 50 | xptr_t parent_xp; // extended pointer on created thread
|
|---|
| 51 | thread_t * child_ptr; // pointer on created child thread
|
|---|
| 52 | xptr_t child_xp; // extended pointer on created thread
|
|---|
| 53 | trdid_t trdid; // created thread identifier
|
|---|
| 54 | process_t * process; // pointer on local process descriptor
|
|---|
| 55 | vseg_t * vseg; // required for user space checking
|
|---|
| 56 | cxy_t target_cxy; // target cluster identifier
|
|---|
| 57 | error_t error;
|
|---|
| 58 |
|
|---|
| 59 | // get parent thead pointer, extended pointer, and process
|
|---|
| 60 | parent = CURRENT_THREAD;
|
|---|
| 61 | parent_xp = XPTR( local_cxy , parent );
|
|---|
| 62 | process = parent->process;
|
|---|
| 63 |
|
|---|
| 64 | #if DEBUG_SYS_THREAD_CREATE
|
|---|
| 65 | uint64_t tm_start;
|
|---|
| 66 | uint64_t tm_end;
|
|---|
| 67 | tm_start = hal_get_cycles();
|
|---|
| 68 | if( DEBUG_SYS_THREAD_CREATE < tm_start )
|
|---|
| 69 | printk("\n[DBG] %s : thread %x (cxy %x) enter / process %x / cycle %d\n",
|
|---|
| 70 | __FUNCTION__, parent, local_cxy, process->pid, (uint32_t)tm_start );
|
|---|
| 71 | #endif
|
|---|
| 72 |
|
|---|
| 73 | // check trdid buffer in user space
|
|---|
| 74 | error = vmm_get_vseg( process , (intptr_t)trdid_ptr , &vseg );
|
|---|
| 75 |
|
|---|
| 76 | if ( error )
|
|---|
| 77 | {
|
|---|
| 78 |
|
|---|
| 79 | #if DEBUG_SYSCALLS_ERROR
|
|---|
| 80 | printk("\n[ERROR] in %s : trdid buffer unmapped %x / thread %x / process %x\n",
|
|---|
| 81 | __FUNCTION__ , (intptr_t)trdid_ptr, parent->trdid, process->pid );
|
|---|
| 82 | vmm_display( process , false );
|
|---|
| 83 | #endif
|
|---|
| 84 | parent->errno = EINVAL;
|
|---|
| 85 | return -1;
|
|---|
| 86 | }
|
|---|
| 87 |
|
|---|
| 88 | // check user_attr buffer in user space & copy to kernel space
|
|---|
| 89 | if( user_attr != NULL )
|
|---|
| 90 | {
|
|---|
| 91 | error = vmm_get_vseg( process , (intptr_t)user_attr , &vseg );
|
|---|
| 92 |
|
|---|
| 93 | if( error )
|
|---|
| 94 | {
|
|---|
| 95 |
|
|---|
| 96 | #if DEBUG_SYSCALLS_ERROR
|
|---|
| 97 | printk("\n[ERROR] in %s : user_attr buffer unmapped %x / thread %x / process %x\n",
|
|---|
| 98 | __FUNCTION__ , (intptr_t)user_attr , parent->trdid , process->pid );
|
|---|
| 99 | vmm_display( process , false );
|
|---|
| 100 | #endif
|
|---|
| 101 | parent->errno = EINVAL;
|
|---|
| 102 | return -1;
|
|---|
| 103 | }
|
|---|
| 104 |
|
|---|
| 105 | hal_copy_from_uspace( &kern_attr , user_attr , sizeof(pthread_attr_t) );
|
|---|
| 106 | }
|
|---|
| 107 |
|
|---|
| 108 | // check start_func in user space
|
|---|
| 109 | error = vmm_get_vseg( process , (intptr_t)start_func , &vseg );
|
|---|
| 110 |
|
|---|
| 111 | if( error )
|
|---|
| 112 | {
|
|---|
| 113 |
|
|---|
| 114 | #if DEBUG_SYSCALLS_ERROR
|
|---|
| 115 | printk("\n[ERROR] in %s : start_func unmapped %x / thread %x / process %x\n",
|
|---|
| 116 | __FUNCTION__ , (intptr_t)start_func , parent->trdid , process->pid );
|
|---|
| 117 | vmm_display( process , false );
|
|---|
| 118 | #endif
|
|---|
| 119 | parent->errno = EINVAL;
|
|---|
| 120 | return -1;
|
|---|
| 121 | }
|
|---|
| 122 |
|
|---|
| 123 | // check start_arg buffer in user space
|
|---|
| 124 | if( start_arg != NULL )
|
|---|
| 125 | {
|
|---|
| 126 | error = vmm_get_vseg( process , (intptr_t)start_arg , &vseg );
|
|---|
| 127 |
|
|---|
| 128 | if( error )
|
|---|
| 129 | {
|
|---|
| 130 |
|
|---|
| 131 | #if DEBUG_SYSCALLS_ERROR
|
|---|
| 132 | printk("\n[ERROR] in %s : start_arg buffer unmapped %x / thread %x / process %x\n",
|
|---|
| 133 | __FUNCTION__ , (intptr_t)start_arg , parent->trdid , process->pid );
|
|---|
| 134 | vmm_display( process , false );
|
|---|
| 135 | #endif
|
|---|
| 136 | parent->errno = EINVAL;
|
|---|
| 137 | return -1;
|
|---|
| 138 | }
|
|---|
| 139 | }
|
|---|
| 140 |
|
|---|
| 141 | // define attributes and target_cxy
|
|---|
| 142 | if( user_attr != NULL ) // user defined attributes
|
|---|
| 143 | {
|
|---|
| 144 | // check / get target_cxy
|
|---|
| 145 | if( kern_attr.attributes & PT_ATTR_CLUSTER_DEFINED )
|
|---|
| 146 | {
|
|---|
| 147 | if( cluster_is_undefined( kern_attr.cxy ) )
|
|---|
| 148 | {
|
|---|
| 149 |
|
|---|
| 150 | #if DEBUG_SYSCALLS_ERROR
|
|---|
| 151 | printk("\n[ERROR] in %s : illegal target cluster = %x / thread %x / process %x\n",
|
|---|
| 152 | __FUNCTION__ , kern_attr.cxy, parent->trdid, process->pid );
|
|---|
| 153 | #endif
|
|---|
| 154 | parent->errno = EINVAL;
|
|---|
| 155 | return -1;
|
|---|
| 156 | }
|
|---|
| 157 | target_cxy = kern_attr.cxy;
|
|---|
| 158 | }
|
|---|
| 159 | else
|
|---|
| 160 | {
|
|---|
| 161 | target_cxy = dqdt_get_cluster_for_process();
|
|---|
| 162 | }
|
|---|
| 163 | }
|
|---|
| 164 | else // set default attributes
|
|---|
| 165 | {
|
|---|
| 166 | kern_attr.attributes = PT_ATTR_DETACH | PT_ATTR_CLUSTER_DEFINED;
|
|---|
| 167 | target_cxy = dqdt_get_cluster_for_process();
|
|---|
| 168 | }
|
|---|
| 169 |
|
|---|
| 170 | // create the thread, using a RPC if required
|
|---|
| 171 | // this returns "error", "child_ptr", and "child_xp"
|
|---|
| 172 |
|
|---|
| 173 | if( target_cxy == local_cxy ) // target cluster is local
|
|---|
| 174 | {
|
|---|
| 175 | // create thread in local cluster
|
|---|
| 176 | error = thread_user_create( process->pid,
|
|---|
| 177 | start_func,
|
|---|
| 178 | start_arg,
|
|---|
| 179 | &kern_attr,
|
|---|
| 180 | &child_ptr );
|
|---|
| 181 |
|
|---|
| 182 | child_xp = XPTR( local_cxy , child_ptr );
|
|---|
| 183 | }
|
|---|
| 184 | else // target cluster is remote
|
|---|
| 185 | {
|
|---|
| 186 | rpc_thread_user_create_client( target_cxy,
|
|---|
| 187 | process->pid,
|
|---|
| 188 | start_func,
|
|---|
| 189 | start_arg,
|
|---|
| 190 | &kern_attr,
|
|---|
| 191 | &child_xp,
|
|---|
| 192 | &error );
|
|---|
| 193 |
|
|---|
| 194 | child_ptr = (thread_t *)GET_PTR( child_xp );
|
|---|
| 195 | }
|
|---|
| 196 |
|
|---|
| 197 | // check successful thread creation
|
|---|
| 198 | if( error )
|
|---|
| 199 | {
|
|---|
| 200 |
|
|---|
| 201 | #if DEBUG_SYSCALLS_ERROR
|
|---|
| 202 | printk("\n[ERROR] in %s : cannot create new thread / thread %x / process %x\n",
|
|---|
| 203 | __FUNCTION__ , parent->trdid, process->pid );
|
|---|
| 204 | #endif
|
|---|
| 205 | parent->errno = ENOMEM;
|
|---|
| 206 | return -1;
|
|---|
| 207 | }
|
|---|
| 208 |
|
|---|
| 209 | // returns trdid to user space
|
|---|
| 210 | trdid = hal_remote_lw( XPTR( target_cxy , &child_ptr->trdid ) );
|
|---|
| 211 | hal_copy_to_uspace( trdid_ptr , &trdid , sizeof(pthread_t) );
|
|---|
| 212 |
|
|---|
| 213 | // activate new thread
|
|---|
| 214 | thread_unblock( child_xp , THREAD_BLOCKED_GLOBAL );
|
|---|
| 215 |
|
|---|
| 216 | hal_fence();
|
|---|
| 217 |
|
|---|
| 218 | #if DEBUG_SYS_THREAD_CREATE
|
|---|
| 219 | tm_end = hal_get_cycles();
|
|---|
| 220 | if( DEBUG_SYS_THREAD_CREATE < tm_end )
|
|---|
| 221 | printk("\n[DBG] %s : thread %x (cxy %x) created thread %x (cxy %x) / process %x / cycle %d\n",
|
|---|
| 222 | __FUNCTION__, parent, local_cxy, child_ptr, target_cxy, process->pid, (uint32_t)tm_end );
|
|---|
| 223 | #endif
|
|---|
| 224 |
|
|---|
| 225 | return 0;
|
|---|
| 226 |
|
|---|
| 227 | } // end sys_thread_create()
|
|---|
| 228 |
|
|---|