| 1 | /*
|
|---|
| 2 | * sys_exit.c - Kernel function implementing the "exit" system call.
|
|---|
| 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_irqmask.h>
|
|---|
| 27 | #include <errno.h>
|
|---|
| 28 | #include <thread.h>
|
|---|
| 29 | #include <printk.h>
|
|---|
| 30 | #include <process.h>
|
|---|
| 31 | #include <shared_syscalls.h>
|
|---|
| 32 | #include <cluster.h>
|
|---|
| 33 | #include <rpc.h>
|
|---|
| 34 |
|
|---|
| 35 | #include <syscalls.h>
|
|---|
| 36 |
|
|---|
| 37 | ///////////////////////////////
|
|---|
| 38 | int sys_exit( uint32_t status )
|
|---|
| 39 | {
|
|---|
| 40 | reg_t save_sr; // required to enable IRQs
|
|---|
| 41 |
|
|---|
| 42 | xptr_t owner_xp; // extended pointer on owner process
|
|---|
| 43 | cxy_t owner_cxy; // owner process cluster
|
|---|
| 44 | process_t * owner_ptr; // local pointer on owner process
|
|---|
| 45 | thread_t * main_ptr; // local pointer on process main thread
|
|---|
| 46 | xptr_t parent_xp; // extended pointer on parent process
|
|---|
| 47 | cxy_t parent_cxy; // parent process cluster
|
|---|
| 48 | process_t * parent_ptr; // local pointer on parent process
|
|---|
| 49 | xptr_t children_lock_xp; // extended pointer on children locki
|
|---|
| 50 | thread_t * parent_main_ptr; // local pointer on parent main thread
|
|---|
| 51 | xptr_t parent_main_xp; // extended pointer on parent main thread
|
|---|
| 52 | uint32_t term_state; // termination status for owner process
|
|---|
| 53 |
|
|---|
| 54 | thread_t * this = CURRENT_THREAD;
|
|---|
| 55 | process_t * process = this->process;
|
|---|
| 56 | pid_t pid = process->pid;
|
|---|
| 57 |
|
|---|
| 58 | #if DEBUG_SYS_EXIT
|
|---|
| 59 | uint64_t tm_start;
|
|---|
| 60 | uint64_t tm_end;
|
|---|
| 61 | tm_start = hal_get_cycles();
|
|---|
| 62 | if( DEBUG_SYS_EXIT < tm_start )
|
|---|
| 63 | printk("\n[DBG] %s : thread %x in process %x enter / status %x / cycle %d\n",
|
|---|
| 64 | __FUNCTION__, this->trdid, process->pid , status , (uint32_t)tm_start );
|
|---|
| 65 | #endif
|
|---|
| 66 |
|
|---|
| 67 | // get owner process descriptor pointers
|
|---|
| 68 | owner_xp = process->owner_xp;
|
|---|
| 69 | owner_cxy = GET_CXY( owner_xp );
|
|---|
| 70 | owner_ptr = GET_PTR( owner_xp );
|
|---|
| 71 |
|
|---|
| 72 | #if (DEBUG_SYS_EXIT & 1)
|
|---|
| 73 | if( DEBUG_SYS_EXIT < tm_start )
|
|---|
| 74 | printk("\n[DBG] %s : thread %x in process %x get owner process %x in cluster %x\n",
|
|---|
| 75 | __FUNCTION__, this->trdid, process->pid, owner_ptr, owner_cxy );
|
|---|
| 76 | #endif
|
|---|
| 77 |
|
|---|
| 78 | // get local pointer on the process main thread
|
|---|
| 79 | main_ptr = hal_remote_lpt( XPTR( owner_cxy , &owner_ptr->th_tbl[0] ) );
|
|---|
| 80 |
|
|---|
| 81 | // get parent process descriptor pointers
|
|---|
| 82 | parent_xp = process->parent_xp;
|
|---|
| 83 | parent_cxy = GET_CXY( parent_xp );
|
|---|
| 84 | parent_ptr = GET_PTR( parent_xp );
|
|---|
| 85 |
|
|---|
| 86 | #if (DEBUG_SYS_EXIT & 1)
|
|---|
| 87 | if( DEBUG_SYS_EXIT < tm_start )
|
|---|
| 88 | printk("\n[DBG] %s : thread %x in process %x get parent process %x in cluster %x\n",
|
|---|
| 89 | __FUNCTION__, this->trdid, process->pid, parent_ptr, parent_cxy );
|
|---|
| 90 | #endif
|
|---|
| 91 |
|
|---|
| 92 | // get extended pointer on lock protecting children list in parent process
|
|---|
| 93 | children_lock_xp = XPTR( parent_cxy , &parent_ptr->children_lock );
|
|---|
| 94 |
|
|---|
| 95 | // get pointers on the parent process main thread
|
|---|
| 96 | parent_main_ptr = hal_remote_lpt( XPTR( parent_cxy , &parent_ptr->th_tbl[0] ) );
|
|---|
| 97 | parent_main_xp = XPTR( parent_cxy , parent_main_ptr );
|
|---|
| 98 |
|
|---|
| 99 | // remove process from TXT list
|
|---|
| 100 | process_txt_detach( owner_xp );
|
|---|
| 101 |
|
|---|
| 102 | #if( DEBUG_SYS_EXIT & 1)
|
|---|
| 103 | if( DEBUG_SYS_EXIT < tm_start )
|
|---|
| 104 | printk("\n[DBG] %s : thread %x in process %x detached process from TXT\n",
|
|---|
| 105 | __FUNCTION__, this->trdid, process->pid );
|
|---|
| 106 | #endif
|
|---|
| 107 |
|
|---|
| 108 | // mark for delete all process threads in all clusters,
|
|---|
| 109 | // but the main thread and this calling thread
|
|---|
| 110 | hal_enable_irq( &save_sr );
|
|---|
| 111 | process_sigaction( process->pid , DELETE_ALL_THREADS );
|
|---|
| 112 | hal_restore_irq( save_sr );
|
|---|
| 113 |
|
|---|
| 114 | #if( DEBUG_SYS_EXIT & 1)
|
|---|
| 115 | if( DEBUG_SYS_EXIT < tm_start )
|
|---|
| 116 | printk("\n[DBG] %s : thread %x in process %x deleted all threads but itself\n",
|
|---|
| 117 | __FUNCTION__, this->trdid, process->pid );
|
|---|
| 118 | #endif
|
|---|
| 119 |
|
|---|
| 120 | // mark for delete this calling thread when it is not the main
|
|---|
| 121 | if( (owner_cxy != local_cxy) || (main_ptr != this) )
|
|---|
| 122 | {
|
|---|
| 123 |
|
|---|
| 124 | #if( DEBUG_SYS_EXIT & 1)
|
|---|
| 125 | if( tm_start > DEBUG_SYS_EXIT )
|
|---|
| 126 | printk("\n[DBG] %s : thread %x in process %x marked iself for delete\n",
|
|---|
| 127 | __FUNCTION__, this->trdid, process->pid );
|
|---|
| 128 | #endif
|
|---|
| 129 | thread_delete( XPTR( local_cxy , this ) , pid , true );
|
|---|
| 130 | }
|
|---|
| 131 |
|
|---|
| 132 | // block this main thread
|
|---|
| 133 | thread_block( XPTR( owner_cxy , main_ptr ) , THREAD_BLOCKED_GLOBAL );
|
|---|
| 134 |
|
|---|
| 135 | #if( DEBUG_SYS_EXIT & 1)
|
|---|
| 136 | if( tm_start > DEBUG_SYS_EXIT )
|
|---|
| 137 | printk("\n[DBG] %s : thread %x in process %x blocked main thread\n",
|
|---|
| 138 | __FUNCTION__, this->trdid, process->pid );
|
|---|
| 139 | #endif
|
|---|
| 140 |
|
|---|
| 141 | // atomically update owner process descriptor term_state to ask
|
|---|
| 142 | // the parent process sys_wait() function to delete the main thread
|
|---|
| 143 | term_state = (status & 0xFF) | PROCESS_TERM_EXIT;
|
|---|
| 144 | hal_remote_atomic_or( XPTR( owner_cxy , &owner_ptr->term_state ) , term_state );
|
|---|
| 145 |
|
|---|
| 146 | #if( DEBUG_SYS_EXIT & 1)
|
|---|
| 147 | if( tm_start > DEBUG_SYS_EXIT )
|
|---|
| 148 | printk("\n[DBG] %s : thread %x in process %x set exit status %x in owner process\n",
|
|---|
| 149 | __FUNCTION__, this->trdid, process->pid, term_state );
|
|---|
| 150 | #endif
|
|---|
| 151 |
|
|---|
| 152 | // unblock the parent process main thread
|
|---|
| 153 | remote_spinlock_lock( children_lock_xp );
|
|---|
| 154 | thread_unblock( parent_main_xp , THREAD_BLOCKED_WAIT );
|
|---|
| 155 | remote_spinlock_unlock( children_lock_xp );
|
|---|
| 156 |
|
|---|
| 157 | #if( DEBUG_SYS_EXIT & 1)
|
|---|
| 158 | if( tm_start > DEBUG_SYS_EXIT )
|
|---|
| 159 | printk("\n[DBG] %s : thread %x in process %x unblock parent main thread in process %x\n",
|
|---|
| 160 | __FUNCTION__ , this->trdid, process->pid,
|
|---|
| 161 | hal_remote_lw( XPTR( parent_cxy , &parent_ptr->pid) ) );
|
|---|
| 162 | #endif
|
|---|
| 163 |
|
|---|
| 164 | hal_fence();
|
|---|
| 165 |
|
|---|
| 166 | #if DEBUG_SYS_EXIT
|
|---|
| 167 | tm_end = hal_get_cycles();
|
|---|
| 168 | if( DEBUG_SYS_EXIT < tm_end )
|
|---|
| 169 | printk("\n[DBG] %s : thread %x in process %x exit / status %x / cost = %d / cycle %d\n",
|
|---|
| 170 | __FUNCTION__, this->trdid, process->pid, status,
|
|---|
| 171 | (uint32_t)(tm_end - tm_start), (uint32_t)tm_end );
|
|---|
| 172 | #endif
|
|---|
| 173 |
|
|---|
| 174 | // this thread deschedule
|
|---|
| 175 | sched_yield( "process exit" );
|
|---|
| 176 |
|
|---|
| 177 | return 0;
|
|---|
| 178 |
|
|---|
| 179 | } // end sys_exit()
|
|---|
| 180 |
|
|---|