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