/* * sys_thread_create.c - creates a new user thread * * Author Alain Greiner (2016,2017) * * Copyright (c) UPMC Sorbonne Universites * * This file is part of ALMOS-MKH. * * ALMOS-MKH is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2.0 of the License. * * ALMOS-MKH is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with ALMOS-MKH; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include /////////////////////////////////////////////////// int sys_thread_create ( pthread_t * trdid_ptr, pthread_attr_t * user_attr, void * start_func, void * start_arg ) { pthread_attr_t kern_attr; // copy of pthread attributes in kernel space thread_t * parent; // pointer on thread executing the pthread_create xptr_t parent_xp; // extended pointer on created thread thread_t * child_ptr; // pointer on created child thread xptr_t child_xp; // extended pointer on created thread trdid_t trdid; // created thread identifier process_t * process; // pointer on local process descriptor paddr_t paddr; // unused, required by vmm_v2p_translate() cxy_t target_cxy; // target cluster identifier error_t error; uint32_t tm_start; uint32_t tm_end; tm_start = hal_get_cycles(); // get parent thead pointer, extended pointer, and process parent = CURRENT_THREAD; parent_xp = XPTR( local_cxy , parent ); process = parent->process; // check user_attr in user space & copy to kernel space if( user_attr != NULL ) { error = vmm_v2p_translate( false , user_attr , &paddr ); if( error ) { printk("\n[ERROR] in %s : user_attr unmapped\n", __FUNCTION__ ); parent->errno = EINVAL; return -1; } hal_copy_from_uspace( &kern_attr , user_attr , sizeof(pthread_attr_t) ); } // check start_func in user space error = vmm_v2p_translate( false , start_func , &paddr ); if( error ) { printk("\n[ERROR] in %s : start_func unmapped\n", __FUNCTION__ ); parent->errno = EINVAL; return -1; } // check start_arg in user space if( start_arg != NULL ) error = vmm_v2p_translate( false , start_arg , &paddr ); if( error ) { printk("\n[ERROR] in %s : start_arg unmapped\n", __FUNCTION__ ); parent->errno = EINVAL; return -1; } // check / define attributes an target_cxy if( user_attr != NULL ) // user defined attributes { // check / get target_cxy if( kern_attr.attributes & PT_ATTR_CLUSTER_DEFINED ) { if( cluster_is_undefined( kern_attr.cxy ) ) { printk("\n[ERROR] in %s : illegal target cluster = %x\n", __FUNCTION__ , kern_attr.cxy ); parent->errno = EINVAL; return -1; } target_cxy = kern_attr.cxy; } else { target_cxy = dqdt_get_cluster_for_process(); } } else // set default attributes { kern_attr.attributes = PT_ATTR_DETACH | PT_ATTR_CLUSTER_DEFINED; target_cxy = dqdt_get_cluster_for_process(); } // create the thread, using a RPC if required // this returns "error", "child_ptr", and "child_xp" if( target_cxy == local_cxy ) // target cluster is local { // create thread in local cluster error = thread_user_create( process->pid, start_func, start_arg, &kern_attr, &child_ptr ); child_xp = XPTR( local_cxy , child_ptr ); } else // target cluster is remote { rpc_thread_user_create_client( target_cxy, process->pid, start_func, start_arg, &kern_attr, &child_xp, &error ); child_ptr = (thread_t *)GET_PTR( child_xp ); } // check successful thread creation if( error ) { printk("\n[ERROR] in %s : cannot create thread\n", __FUNCTION__ ); return ENOMEM; } // returns trdid to user space trdid = hal_remote_lw( XPTR( target_cxy , &child_ptr->trdid ) ); hal_copy_to_uspace( trdid_ptr , &trdid , sizeof(pthread_t) ); // register child in parent if required if( user_attr != NULL ) { if( (kern_attr.attributes & PT_ATTR_DETACH) == 0 ) thread_child_parent_link( parent_xp , child_xp ); } // activate new thread thread_unblock( child_xp , THREAD_BLOCKED_GLOBAL ); hal_fence(); tm_end = hal_get_cycles(); syscall_dmsg("\n[DBG] %s : core[%x,%d] created thread %x for process %x / cycle %d\n" " cluster %x / cost = %d cycles\n", __FUNCTION__ , local_cxy , parent->core->lid , trdid , process->pid , tm_end , target_cxy , tm_end - tm_start ); return 0; } // end sys_thread_create()