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