[1] | 1 | /* |
---|
[564] | 2 | * process.h - process related functions definition. |
---|
[173] | 3 | * |
---|
[1] | 4 | * Authors Ghassan Almaless (2008,2009,2010,2011,2012) |
---|
| 5 | * Mohamed Lamine Karaoui (2015) |
---|
[433] | 6 | * Alain Greiner (2016,2017,2018) |
---|
[1] | 7 | * |
---|
| 8 | * Copyright (c) UPMC Sorbonne Universites |
---|
| 9 | * |
---|
| 10 | * This file is part of ALMOS-MKH. |
---|
| 11 | * |
---|
| 12 | * ALMOS-MKH is free software; you can redistribute it and/or modify it |
---|
| 13 | * under the terms of the GNU General Public License as published by |
---|
| 14 | * the Free Software Foundation; version 2.0 of the License. |
---|
| 15 | * |
---|
| 16 | * ALMOS-MKH is distributed in the hope that it will be useful, but |
---|
| 17 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
| 19 | * General Public License for more details. |
---|
| 20 | * |
---|
| 21 | * You should have received a copy of the GNU General Public License |
---|
| 22 | * along with ALMOS-MKH; if not, write to the Free Software Foundation, |
---|
| 23 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
---|
| 24 | */ |
---|
| 25 | |
---|
| 26 | #ifndef _PROCESS_H_ |
---|
| 27 | #define _PROCESS_H_ |
---|
| 28 | |
---|
[14] | 29 | #include <kernel_config.h> |
---|
[1] | 30 | #include <errno.h> |
---|
[457] | 31 | #include <hal_kernel_types.h> |
---|
[1] | 32 | #include <list.h> |
---|
| 33 | #include <xlist.h> |
---|
| 34 | #include <bits.h> |
---|
[564] | 35 | #include <busylock.h> |
---|
| 36 | #include <queuelock.h> |
---|
| 37 | #include <remote_queuelock.h> |
---|
| 38 | #include <remote_rwlock.h> |
---|
[1] | 39 | #include <hal_atomic.h> |
---|
| 40 | #include <vmm.h> |
---|
| 41 | #include <cluster.h> |
---|
| 42 | #include <vfs.h> |
---|
| 43 | |
---|
| 44 | /**** Forward declarations ****/ |
---|
| 45 | |
---|
| 46 | struct thread_s; |
---|
| 47 | |
---|
| 48 | /********************************************************************************************* |
---|
| 49 | * These macros are used to compose or decompose global process identifier (PID) |
---|
| 50 | * to or from cluster identifier / local process index (CXY , LPID) |
---|
| 51 | ********************************************************************************************/ |
---|
| 52 | |
---|
| 53 | #define LPID_FROM_PID( pid ) (lpid_t)(pid & 0x0000FFFF) |
---|
| 54 | #define CXY_FROM_PID( pid ) (cxy_t)(pid >> 16) |
---|
| 55 | #define PID( cxy , lpid ) (pid_t)((cxy << 16) | lpid ) |
---|
| 56 | |
---|
| 57 | /********************************************************************************************* |
---|
[428] | 58 | * This enum defines the actions that can be executed by the process_sigaction() function. |
---|
[409] | 59 | ********************************************************************************************/ |
---|
| 60 | |
---|
[527] | 61 | typedef enum process_sigactions |
---|
[409] | 62 | { |
---|
[436] | 63 | BLOCK_ALL_THREADS = 0x11, |
---|
| 64 | UNBLOCK_ALL_THREADS = 0x22, |
---|
| 65 | DELETE_ALL_THREADS = 0x33, |
---|
[527] | 66 | } process_sigactions_t; |
---|
[409] | 67 | |
---|
| 68 | /********************************************************************************************* |
---|
[1] | 69 | * This structure defines an array of extended pointers on the open file descriptors |
---|
| 70 | * for a given process. We use an extended pointer because the open file descriptor |
---|
| 71 | * is always stored in the same cluster as the inode associated to the file. |
---|
| 72 | * A free entry in this array contains the XPTR_NULL value. |
---|
| 73 | * The array size is defined by a the CONFIG_PROCESS_FILE_MAX_NR parameter. |
---|
[564] | 74 | * |
---|
| 75 | * NOTE: - Only the fd_array[] in the reference process contains a complete list of open |
---|
| 76 | * files, and is protected by the lock against concurrent access. |
---|
| 77 | * - the fd_array[] in a process copy is simply a cache containing a subset of the |
---|
| 78 | * open files to speed the fdid to xptr translation, but the "lock" and "current |
---|
| 79 | * fields should not be used. |
---|
| 80 | * - all modifications made by the process_fd_remove() are done in reference cluster |
---|
| 81 | * and reported in all process_copies. |
---|
[1] | 82 | ********************************************************************************************/ |
---|
| 83 | |
---|
| 84 | typedef struct fd_array_s |
---|
| 85 | { |
---|
[564] | 86 | remote_queuelock_t lock; /*! lock protecting fd_array */ |
---|
| 87 | uint32_t current; /*! current number of open files */ |
---|
| 88 | xptr_t array[CONFIG_PROCESS_FILE_MAX_NR]; /*! open file descriptors */ |
---|
[1] | 89 | } |
---|
| 90 | fd_array_t; |
---|
| 91 | |
---|
| 92 | /********************************************************************************************* |
---|
| 93 | * This structure defines a process descriptor. |
---|
| 94 | * A process is identified by a unique PID (process identifier): |
---|
| 95 | * - The PID 16 LSB bits contain the LPID (Local Process Index) |
---|
| 96 | * - The PID 16 MSB bits contain the owner cluster CXY. |
---|
[409] | 97 | * In each cluster, the process manager allocates the LPID values for the process that |
---|
| 98 | * are owned by this cluster. |
---|
| 99 | * The process descriptor is replicated in all clusters containing at least one thread |
---|
| 100 | * of the PID process, with the following rules : |
---|
[443] | 101 | * 1) The <pid>, <ppid>, <ref_xp>, <owner_xp>, <vfs_root_xp>, <vfs_bin_xp> fields are |
---|
| 102 | * defined in all process descriptor copies. |
---|
[23] | 103 | * 2) The <vfs_cwd_xp> and associated <cwd_lock>, that can be dynamically modified, |
---|
| 104 | * are only defined in the reference process descriptor. |
---|
[409] | 105 | * 2) The <vmm>, containing the VSL (list of registered vsegs), and the GPT (generic |
---|
| 106 | * page table), are only complete in the reference process cluster, other copies |
---|
| 107 | * are actually use as read-only caches. |
---|
[23] | 108 | * 3) the <fd_array>, containing extended pointers on the open file descriptors, is only |
---|
| 109 | * complete in the reference process cluster, other copies are read-only caches. |
---|
[173] | 110 | * 4) The <sem_root>, <mutex_root>, <barrier_root>, <condvar_root>, and the associated |
---|
[564] | 111 | * <sync_lock>, dynamically allocated, are only defined in the reference cluster. |
---|
[440] | 112 | * 5) The <children_root>, <children_nr>, <children_list>, and <txt_list> fields are only |
---|
[428] | 113 | * defined in the reference cluster, and are undefined in other clusters. |
---|
[564] | 114 | * 6) The <local_list>, <copies_list>, <th_tbl>, <th_nr>, <u_th_lock> or <k_th_lock> fields |
---|
| 115 | * are specific n each cluster, and are defined in all process descriptors copies. |
---|
[433] | 116 | * 7) The termination <flags> and <exit_status> are only defined in the reference cluster. |
---|
[564] | 117 | * (The term_state format is defined in the shared_syscalls.h file ). |
---|
[1] | 118 | ********************************************************************************************/ |
---|
| 119 | |
---|
| 120 | typedef struct process_s |
---|
| 121 | { |
---|
[564] | 122 | vmm_t vmm; /*! embedded virtual memory manager */ |
---|
[1] | 123 | |
---|
[564] | 124 | fd_array_t fd_array; /*! embedded open file descriptors array */ |
---|
[1] | 125 | |
---|
[564] | 126 | xptr_t vfs_root_xp; /*! extended pointer on current VFS root inode */ |
---|
| 127 | xptr_t vfs_bin_xp; /*! extended pointer on .elf file descriptor */ |
---|
| 128 | pid_t pid; /*! process identifier */ |
---|
| 129 | xptr_t ref_xp; /*! extended pointer on reference process */ |
---|
| 130 | xptr_t owner_xp; /*! extended pointer on owner process */ |
---|
| 131 | xptr_t parent_xp; /*! extended pointer on parent process */ |
---|
[1] | 132 | |
---|
[564] | 133 | xptr_t vfs_cwd_xp; /*! extended pointer on current working dir inode */ |
---|
| 134 | remote_rwlock_t cwd_lock; /*! lock protecting working directory changes */ |
---|
[173] | 135 | |
---|
[564] | 136 | xlist_entry_t children_root; /*! root of the children process xlist */ |
---|
| 137 | remote_queuelock_t children_lock; /*! lock protecting children process xlist */ |
---|
| 138 | uint32_t children_nr; /*! number of children processes */ |
---|
[1] | 139 | |
---|
[564] | 140 | xlist_entry_t children_list; /*! member of list of children of same parent */ |
---|
| 141 | xlist_entry_t local_list; /*! member of list of process in same cluster */ |
---|
| 142 | xlist_entry_t copies_list; /*! member of list of copies of same process */ |
---|
| 143 | xlist_entry_t txt_list; /*! member of list of processes sharing same TXT */ |
---|
[1] | 144 | |
---|
[564] | 145 | struct thread_s * th_tbl[CONFIG_THREADS_MAX_PER_CLUSTER]; /*! local threads */ |
---|
| 146 | uint32_t th_nr; /*! number of threads in this cluster */ |
---|
| 147 | rwlock_t th_lock; /*! lock protecting th_tbl[] i */ |
---|
[428] | 148 | |
---|
[564] | 149 | xlist_entry_t sem_root; /*! root of the user definedsemaphore list */ |
---|
| 150 | xlist_entry_t mutex_root; /*! root of the user defined mutex list */ |
---|
| 151 | xlist_entry_t barrier_root; /*! root of the user defined barrier list */ |
---|
| 152 | xlist_entry_t condvar_root; /*! root of the user defined condvar list */ |
---|
| 153 | remote_queuelock_t sync_lock; /*! lock protecting user defined synchro lists */ |
---|
[1] | 154 | |
---|
[564] | 155 | uint32_t term_state; /*! termination status (flags & exit status) */ |
---|
[1] | 156 | } |
---|
| 157 | process_t; |
---|
| 158 | |
---|
| 159 | /********************************************************************************************* |
---|
[101] | 160 | * This structure defines the information required by the process_make_exec() function |
---|
[409] | 161 | * to create a new reference process descriptor, and the associated main thread. |
---|
[1] | 162 | ********************************************************************************************/ |
---|
| 163 | |
---|
| 164 | typedef struct exec_info_s |
---|
| 165 | { |
---|
[23] | 166 | char path[CONFIG_VFS_MAX_PATH_LENGTH]; /*! .elf file path */ |
---|
[1] | 167 | |
---|
| 168 | char ** args_pointers; /*! physical base address of array of pointers */ |
---|
| 169 | char * args_buf_base; /*! physical base address of kernel args buffer */ |
---|
| 170 | uint32_t args_nr; /*! actual number of arguments */ |
---|
| 171 | |
---|
| 172 | char ** envs_pointers; /*! physical base address of array of pointers */ |
---|
| 173 | char * envs_buf_base; /*! physical base address of kernel args buffer */ |
---|
| 174 | char * envs_buf_free; /*! physical address of first free slot in envs_buf */ |
---|
| 175 | uint32_t envs_nr; /*! actual number of environment variables */ |
---|
| 176 | } |
---|
| 177 | exec_info_t; |
---|
| 178 | |
---|
| 179 | /*************** Process Descriptor Operations *****************************************/ |
---|
| 180 | |
---|
[173] | 181 | /********************************************************************************************* |
---|
| 182 | * This function allocates memory in local cluster for a process descriptor. |
---|
| 183 | ********************************************************************************************* |
---|
[1] | 184 | * @ returns pointer on process descriptor if success / return NULL if failure |
---|
| 185 | ********************************************************************************************/ |
---|
[503] | 186 | process_t * process_alloc( void ); |
---|
[1] | 187 | |
---|
[173] | 188 | /********************************************************************************************* |
---|
| 189 | * This function releases memory in local cluster for a process descriptor. |
---|
| 190 | ********************************************************************************************* |
---|
[1] | 191 | * @ process : pointer on process descriptor to release. |
---|
| 192 | ********************************************************************************************/ |
---|
| 193 | void process_free( process_t * process ); |
---|
| 194 | |
---|
[173] | 195 | /********************************************************************************************* |
---|
[428] | 196 | * This function initialize, in each cluster, the kernel "process_zero", that is the owner |
---|
| 197 | * of all kernel threads in a given cluster. It is called by the kernel_init() function. |
---|
| 198 | * The process_zero descriptor is allocated as a global variable in file kernel_init.c |
---|
| 199 | * Both the PID and PPID fields are set to zero, the ref_xp is the local process_zero, |
---|
| 200 | * and the parent process is set to XPTR_NULL. The th_tbl[] is initialized as empty. |
---|
| 201 | ********************************************************************************************* |
---|
| 202 | * @ process : [in] pointer on local process descriptor to initialize. |
---|
| 203 | ********************************************************************************************/ |
---|
| 204 | void process_zero_create( process_t * process ); |
---|
| 205 | |
---|
| 206 | /********************************************************************************************* |
---|
[173] | 207 | * This function allocates memory and initializes the "process_init" descriptor and the |
---|
[409] | 208 | * associated "thread_init" descriptor. It is called once at the end of the kernel |
---|
[428] | 209 | * initialisation procedure. Its local process identifier is 1, and parent process |
---|
| 210 | * is the kernel process in cluster 0. |
---|
[173] | 211 | * The "process_init" is the first user process, and all other user processes will be forked |
---|
[101] | 212 | * from this process. The code executed by "process_init" is stored in a .elf file, whose |
---|
[409] | 213 | * pathname is defined by the CONFIG_PROCESS_INIT_PATH configuration variable. |
---|
[428] | 214 | * The process_init does not use the [STDIN/STDOUT/STDERR] streams, but it is linked |
---|
| 215 | * to kernel TXT0, because these streams must be defined for all user processes. |
---|
[173] | 216 | ********************************************************************************************/ |
---|
[485] | 217 | void process_init_create( void ); |
---|
[1] | 218 | |
---|
[173] | 219 | /********************************************************************************************* |
---|
[564] | 220 | * This function initializes a reference, user process descriptor from another process |
---|
| 221 | * descriptor, defined by the <parent_xp> argument. The <process> and <pid> arguments |
---|
| 222 | * are previously allocated by the caller. This function can be called by two functions: |
---|
[457] | 223 | * 1) process_init_create() : process is the INIT process; parent is process-zero. |
---|
| 224 | * 2) process_make_fork() : the parent process descriptor is generally remote. |
---|
[428] | 225 | * The following fields are initialised : |
---|
| 226 | * - It set the pid / ppid / ref_xp / parent_xp / state fields. |
---|
[409] | 227 | * - It initializes the VMM (register the kentry, args, envs vsegs in VSL) |
---|
[408] | 228 | * - It initializes the FDT, defining the three pseudo files STDIN / STDOUT / STDERR. |
---|
[457] | 229 | * . if INIT process => link to kernel TXT[0]. |
---|
| 230 | * . if KSH[i] process => allocate a free TXT[i] and give TXT ownership. |
---|
| 231 | * . if USER process => same TXT[i] as parent process and give TXT ownership. |
---|
[408] | 232 | * - It set the root_xp, bin_xp, cwd_xp fields. |
---|
| 233 | * - It reset the children list as empty, but does NOT register it in parent children list. |
---|
| 234 | * - It reset the TH_TBL list of threads as empty. |
---|
| 235 | * - It reset the semaphore / mutex / barrier / condvar lists as empty. |
---|
| 236 | * - It registers the process in the local_list, rooted in the local cluster manager. |
---|
| 237 | * - It registers the process in the copies_list, rooted in the owner cluster manager. |
---|
| 238 | * - It registers the process extended pointer in the local pref_tbl[] array. |
---|
| 239 | ********************************************************************************************* |
---|
| 240 | * @ process : [in] pointer on local process descriptor to initialize. |
---|
| 241 | * @ pid : [in] process identifier. |
---|
[428] | 242 | * @ parent_xp : [in] extended pointer on parent process descriptor. |
---|
[408] | 243 | ********************************************************************************************/ |
---|
[1] | 244 | void process_reference_init( process_t * process, |
---|
| 245 | pid_t pid, |
---|
[457] | 246 | xptr_t parent_xp ); |
---|
[1] | 247 | |
---|
[173] | 248 | /********************************************************************************************* |
---|
| 249 | * This function initializes a copy process descriptor, in the local cluster, |
---|
| 250 | * from information defined in the reference remote process descriptor. |
---|
| 251 | ********************************************************************************************* |
---|
[1] | 252 | * @ process : [in] local pointer on process descriptor to initialize. |
---|
| 253 | * @ reference_process_xp : [in] extended pointer on reference process descriptor. |
---|
| 254 | * @ return 0 if success / return ENOMEM if failure |
---|
| 255 | ********************************************************************************************/ |
---|
| 256 | error_t process_copy_init( process_t * local_process, |
---|
| 257 | xptr_t reference_process_xp ); |
---|
| 258 | |
---|
[173] | 259 | /********************************************************************************************* |
---|
[1] | 260 | * This function releases all memory allocated for a process descriptor in the local cluster, |
---|
[23] | 261 | * including memory allocated for embedded substructures (fd_array, vmm, etc). |
---|
[1] | 262 | * The local th_tbl[] array must be empty. |
---|
[173] | 263 | ********************************************************************************************* |
---|
[1] | 264 | * @ process : pointer on the process descriptor. |
---|
| 265 | ********************************************************************************************/ |
---|
| 266 | void process_destroy( process_t * process ); |
---|
| 267 | |
---|
[173] | 268 | /********************************************************************************************* |
---|
[428] | 269 | * This debug function diplays on the kernel terminal TXT0 detailed informations on a |
---|
[443] | 270 | * process descriptor identified by the <process_xp> argument. |
---|
[428] | 271 | * It can be called by a thread running in any cluster. |
---|
[443] | 272 | * WARNING: this function uses the nolock_printk() function, and the TXT0 lock MUST be |
---|
| 273 | * taken by the caller function. |
---|
[428] | 274 | ********************************************************************************************* |
---|
[443] | 275 | * @ process_xp : extended pointer on process descriptor. |
---|
[428] | 276 | ********************************************************************************************/ |
---|
| 277 | void process_display( xptr_t process_xp ); |
---|
| 278 | |
---|
| 279 | /********************************************************************************************* |
---|
| 280 | * This function returns a printable string defining the sigaction type. |
---|
| 281 | ********************************************************************************************* |
---|
| 282 | * @ sigaction_type : BLOCK_ALL_THREADS / UNBLOCK_ALL_THREADS / DELETE_ALL_THREADS |
---|
| 283 | * @ return a string pointer. |
---|
| 284 | ********************************************************************************************/ |
---|
[527] | 285 | const char * process_action_str( process_sigactions_t sigaction_type ); |
---|
[428] | 286 | |
---|
| 287 | /********************************************************************************************* |
---|
[435] | 288 | * This function allows a client thread running in any cluster to block, unblock or delete |
---|
| 289 | * all threads of a process identified by the <pid> argument, depending on the |
---|
[436] | 290 | * <action_type> argument. |
---|
[593] | 291 | * |
---|
[436] | 292 | * It uses the multicast, non blocking rpc_process_sigaction_client() function to send |
---|
[440] | 293 | * parallel requests to all remote clusters containing process copies. |
---|
[436] | 294 | * Then it blocks and deschedule to wait completion of these parallel requests. |
---|
| 295 | * |
---|
[416] | 296 | * It is used by the sys_kill() & sys_exit() functions to handle the "kill" & "exit" syscalls. |
---|
| 297 | * It is also used by the process_make_exec() function to handle the "exec" syscall. |
---|
[436] | 298 | * It is also called by the TXT device ISR to execute the ctrl C & ctrl Z commands. |
---|
| 299 | * |
---|
[593] | 300 | * WARNING (1) the DELETE action is NOT executed on the target process main thread |
---|
| 301 | * (thread 0 in process owner cluster), and not executed on the client thread itself. |
---|
| 302 | * |
---|
| 303 | * WARNING (2) the BLOCK action is executed on all target process threads, and this function |
---|
| 304 | * returns only when all threads BUT the client thread are actually blocked and not running. |
---|
| 305 | * When the client thread is also a target thread, it is blocked but not descheduled. |
---|
| 306 | * |
---|
| 307 | * WARNING (3) the UNBLOCK action is executed on all target process threads, as the |
---|
| 308 | * client thread cannot be a target thread. |
---|
| 309 | * |
---|
[436] | 310 | * Implementation note: |
---|
| 311 | * This function allocates a - shared - RPC descriptor in client thread stack, |
---|
| 312 | * and initializes it. This RPC descriptor can be shared because all parallel, |
---|
| 313 | * non-blocking, RPC server threads use the same input arguments, including the |
---|
| 314 | * RPC responses counter field. |
---|
[409] | 315 | ********************************************************************************************* |
---|
[435] | 316 | * @ pid : target process identifier. |
---|
[416] | 317 | * @ action_type : BLOCK_ALL_THREADS / UNBLOCK_ALL_THREADS / DELETE_ALL_THREADS |
---|
[1] | 318 | ********************************************************************************************/ |
---|
[435] | 319 | void process_sigaction( pid_t pid, |
---|
[409] | 320 | uint32_t action_type ); |
---|
[1] | 321 | |
---|
[173] | 322 | /********************************************************************************************* |
---|
[583] | 323 | * This function marks for delete all threads for a given <process> in the local cluster. |
---|
[440] | 324 | * It scan the list of local thread, and sets the THREAD_FLAG_REQ_DELETE bit for all |
---|
| 325 | * threads, BUT the main thread (thread 0 in owner cluster), and the client thread |
---|
| 326 | * identified by the <client_xp> argument. |
---|
[583] | 327 | * The actual delete will be done by the scheduler at the next scheduling point. |
---|
[409] | 328 | ********************************************************************************************* |
---|
| 329 | * @ process : pointer on the process descriptor. |
---|
[440] | 330 | * @ client_xp : extended pointer on the client thread that should not be marked. |
---|
[409] | 331 | ********************************************************************************************/ |
---|
[440] | 332 | void process_delete_threads( process_t * process, |
---|
[583] | 333 | xptr_t client_xp ); |
---|
[409] | 334 | |
---|
| 335 | /********************************************************************************************* |
---|
[583] | 336 | * This function blocks all threads for a given <process> in the local cluster. |
---|
| 337 | * It scan the list of local thread, and sets the THREAD_BLOCKED_GLOBAL bit for all threads. |
---|
| 338 | * It request the relevant schedulers to acknowledge the blocking, using IPI if required, |
---|
[593] | 339 | * and returns only when all threads in cluster, but the calling thread, are actually blocked. |
---|
[583] | 340 | * The threads are not detached from the scheduler, and not detached from the local process. |
---|
| 341 | ********************************************************************************************* |
---|
| 342 | * @ process : pointer on the target process descriptor. |
---|
| 343 | ********************************************************************************************/ |
---|
| 344 | void process_block_threads( process_t * process ); |
---|
| 345 | |
---|
| 346 | /********************************************************************************************* |
---|
[440] | 347 | * This function unblocks all threads of a given user process in a given cluster. |
---|
[409] | 348 | ********************************************************************************************* |
---|
| 349 | * @ process : pointer on the process descriptor. |
---|
| 350 | ********************************************************************************************/ |
---|
[440] | 351 | void process_unblock_threads( process_t * process ); |
---|
[409] | 352 | |
---|
| 353 | /********************************************************************************************* |
---|
[1] | 354 | * This function returns a pointer on the local copy of a process identified by its PID. |
---|
[173] | 355 | * If this local copy does not exist yet, it is dynamically created, from the reference |
---|
[1] | 356 | * process descriptor, registered in the global copies_list, and registered in the local_list. |
---|
[23] | 357 | * This function is used by the thread_user_create() function. |
---|
[173] | 358 | ********************************************************************************************* |
---|
[1] | 359 | * @ pid : searched process identifier. |
---|
| 360 | * @ returns pointer on the local process descriptor if success / returns NULL if failure. |
---|
| 361 | ********************************************************************************************/ |
---|
| 362 | process_t * process_get_local_copy( pid_t pid ); |
---|
| 363 | |
---|
[173] | 364 | /********************************************************************************************* |
---|
[436] | 365 | * This function returns the parent process identifier for a remote process descriptor |
---|
| 366 | * identified by an extended pointer. |
---|
| 367 | ********************************************************************************************* |
---|
| 368 | * @ process_xp : extended pointer on remote process descriptor. |
---|
| 369 | * @ returns parent process dentifier. |
---|
| 370 | ********************************************************************************************/ |
---|
| 371 | pid_t process_get_ppid( xptr_t process_xp ); |
---|
| 372 | |
---|
| 373 | /********************************************************************************************* |
---|
[409] | 374 | * This function implements the "exec" system call, and is called by the sys_exec() function. |
---|
[408] | 375 | * The "new" process keep the "old" process PID and PPID, all open files, and env variables, |
---|
| 376 | * the vfs_root and vfs_cwd, but build a brand new memory image (new VMM from the new .elf). |
---|
[409] | 377 | * It actually creates a "new" reference process descriptor, and copies all relevant |
---|
| 378 | * information from the "old" process descriptor to the "new" process descriptor. |
---|
[408] | 379 | * It completes the "new" process descriptor, from information found in the <exec_info> |
---|
| 380 | * structure (defined in the process.h file), that must be built by the caller. |
---|
| 381 | * It creates and initializes the associated main thread. It finally destroys all copies |
---|
[409] | 382 | * of the "old" process in all clusters, and destroys all old associated threads. |
---|
[408] | 383 | * It is executed in the local cluster, that becomes both the "owner" and the "reference" |
---|
| 384 | * cluster for the "new" process. |
---|
[173] | 385 | ********************************************************************************************* |
---|
[1] | 386 | * @ exec_info : [in] pointer on the exec_info structure. |
---|
| 387 | * @ return 0 if success / return non-zero if error. |
---|
| 388 | ********************************************************************************************/ |
---|
| 389 | error_t process_make_exec( exec_info_t * exec_info ); |
---|
| 390 | |
---|
[408] | 391 | /********************************************************************************************* |
---|
[443] | 392 | * This function implements the "fork" system call, and is called by the sys_fork() function, |
---|
| 393 | * likely throuch the RPC_PROCESS_MAKE_FORK. |
---|
| 394 | * It allocates memory and initializes a new "child" process descriptor, and the associated |
---|
| 395 | * "child" thread descriptor in local cluster. It involves up to three different clusters : |
---|
| 396 | * - the child (local) cluster can be any cluster selected by the sys_fork function. |
---|
[409] | 397 | * - the parent cluster must be the reference cluster for the parent process. |
---|
| 398 | * - the client cluster containing the thread requesting the fork can be any cluster. |
---|
[408] | 399 | * The new "child" process descriptor is initialised from informations found in the "parent" |
---|
| 400 | * reference process descriptor, containing the complete process description. |
---|
| 401 | * The new "child" thread descriptor is initialised from informations found in the "parent" |
---|
| 402 | * thread descriptor. |
---|
| 403 | ********************************************************************************************* |
---|
| 404 | * @ parent_process_xp : extended pointer on the reference parent process. |
---|
| 405 | * @ parent_thread_xp : extended pointer on the parent thread requesting the fork. |
---|
| 406 | * @ child_pid : [out] child process identifier. |
---|
| 407 | * @ child_thread_ptr : [out] local pointer on child thread in target cluster. |
---|
| 408 | * @ return 0 if success / return non-zero if error. |
---|
| 409 | ********************************************************************************************/ |
---|
| 410 | error_t process_make_fork( xptr_t parent_process_xp, |
---|
| 411 | xptr_t parent_thread_xp, |
---|
| 412 | pid_t * child_pid, |
---|
| 413 | struct thread_s ** child_thread_ptr ); |
---|
[1] | 414 | |
---|
[446] | 415 | |
---|
[173] | 416 | /******************** File Management Operations ****************************************/ |
---|
[1] | 417 | |
---|
| 418 | /********************************************************************************************* |
---|
[173] | 419 | * This function initializes all entries of the local fd_array as empty. |
---|
| 420 | ********************************************************************************************* |
---|
[1] | 421 | * @ process : pointer on the local process descriptor. |
---|
| 422 | ********************************************************************************************/ |
---|
| 423 | void process_fd_init( process_t * process ); |
---|
| 424 | |
---|
| 425 | /********************************************************************************************* |
---|
[564] | 426 | * This function allocates a free slot in the fd_array of the reference process, |
---|
| 427 | * register the <file_xp> argument in the allocated slot, and return the slot index. |
---|
| 428 | * It can be called by any thread in any cluster, because it uses portable remote access |
---|
| 429 | * primitives to access the reference process descriptor. |
---|
| 430 | * It takes the lock protecting the reference fd_array against concurrent accesses. |
---|
| 431 | ********************************************************************************************* |
---|
| 432 | * @ file_xp : extended pointer on the file descriptor to be registered. |
---|
| 433 | * @ fdid : [out] buffer for fd_array slot index. |
---|
| 434 | * @ return 0 if success / return EMFILE if array full. |
---|
| 435 | ********************************************************************************************/ |
---|
| 436 | error_t process_fd_register( process_t * process, |
---|
| 437 | xptr_t file_xp, |
---|
| 438 | uint32_t * fdid ); |
---|
| 439 | |
---|
| 440 | /********************************************************************************************* |
---|
[23] | 441 | * This function uses as many remote accesses as required, to reset an entry in fd_array[], |
---|
[407] | 442 | * in all clusters containing a copy. The entry is identified by the <fdid> argument. |
---|
[564] | 443 | * This function must be executed by a thread running in reference cluster, that contains |
---|
[23] | 444 | * the complete list of process descriptors copies. |
---|
[564] | 445 | * It takes the lock protecting the reference fd_array against concurrent accesses. |
---|
| 446 | * TODO this function is not implemented yet. |
---|
[173] | 447 | ********************************************************************************************* |
---|
[1] | 448 | * @ process : pointer on the local process descriptor. |
---|
[407] | 449 | * @ fdid : file descriptor index in the fd_array. |
---|
[1] | 450 | ********************************************************************************************/ |
---|
[23] | 451 | void process_fd_remove( process_t * process, |
---|
[407] | 452 | uint32_t fdid ); |
---|
[1] | 453 | |
---|
| 454 | /********************************************************************************************* |
---|
[173] | 455 | * This function returns an extended pointer on a file descriptor identified by its index |
---|
[23] | 456 | * in fd_array. It can be called by any thread running in any cluster. |
---|
[564] | 457 | * It accesses first the local process descriptor. In case of local miss, it takes |
---|
| 458 | * the lock protecting the reference fd_array, and access the reference process descriptor. |
---|
[173] | 459 | * It updates the local fd_array when the file descriptor exists in reference cluster. |
---|
[564] | 460 | * It takes the lock protecting the reference fd_array against concurrent accesses. |
---|
[23] | 461 | * The file descriptor refcount is not incremented. |
---|
[173] | 462 | ********************************************************************************************* |
---|
[1] | 463 | * @ process : pointer on the local process descriptor. |
---|
[407] | 464 | * @ fdid : file descriptor index in the fd_array. |
---|
[23] | 465 | * @ return extended pointer on file descriptor if success / return XPTR_NULL if not found. |
---|
[1] | 466 | ********************************************************************************************/ |
---|
[23] | 467 | xptr_t process_fd_get_xptr( process_t * process, |
---|
[407] | 468 | uint32_t fdid ); |
---|
[1] | 469 | |
---|
| 470 | /********************************************************************************************* |
---|
[409] | 471 | * This function copies all non-zero entries (other than the three first stdin/stdout/stderr) |
---|
| 472 | * from a remote <src_xp> fd_array, embedded in a process descriptor, to another remote |
---|
| 473 | * <dst_xp> fd_array, embedded in another process descriptor. |
---|
| 474 | * The calling thread can be running in any cluster. |
---|
[564] | 475 | * It takes the lock protecting the reference fd_array against concurrent accesses. |
---|
[173] | 476 | * For each involved file descriptor, the refcount is incremented. |
---|
| 477 | ********************************************************************************************* |
---|
[1] | 478 | * @ dst_xp : extended pointer on the destination fd_array_t. |
---|
| 479 | * @ src_xp : extended pointer on the source fd_array_t. |
---|
| 480 | ********************************************************************************************/ |
---|
| 481 | void process_fd_remote_copy( xptr_t dst_xp, |
---|
| 482 | xptr_t src_xp ); |
---|
| 483 | |
---|
[564] | 484 | /********************************************************************************************* |
---|
| 485 | * This function checks the current number of open files for a given process. |
---|
| 486 | * It can be called by any thread in any cluster, because it uses portable remote access |
---|
| 487 | * primitives to access the reference process descriptor. |
---|
| 488 | * It does not take the lock protecting the reference fd_array. |
---|
| 489 | ********************************************************************************************* |
---|
| 490 | * @ returns true if file descriptor array full. |
---|
| 491 | ********************************************************************************************/ |
---|
| 492 | bool_t process_fd_array_full( void ); |
---|
[1] | 493 | |
---|
[23] | 494 | |
---|
[564] | 495 | |
---|
[173] | 496 | /******************** Thread Related Operations *****************************************/ |
---|
[1] | 497 | |
---|
| 498 | /********************************************************************************************* |
---|
[564] | 499 | * This function atomically registers a new thread in the local process descriptor. |
---|
| 500 | * It checks that there is an available slot in the local th_tbl[] array, and allocates |
---|
| 501 | * a new LTID using the relevant lock depending on the kernel/user type. |
---|
[173] | 502 | ********************************************************************************************* |
---|
[1] | 503 | * @ process : pointer on the local process descriptor. |
---|
| 504 | * @ thread : pointer on new thread to be registered. |
---|
[583] | 505 | * @ trdid : [out] buffer for allocated trdid. |
---|
[1] | 506 | * @ returns 0 if success / returns non zero if no slot available. |
---|
| 507 | ********************************************************************************************/ |
---|
| 508 | error_t process_register_thread( process_t * process, |
---|
| 509 | struct thread_s * thread, |
---|
| 510 | trdid_t * trdid ); |
---|
| 511 | |
---|
| 512 | |
---|
[428] | 513 | /*************** Terminals related operations ********************************************/ |
---|
[1] | 514 | |
---|
[428] | 515 | /********************************************************************************************* |
---|
| 516 | * This function scan the set of user TXT terminals to find a free terminal |
---|
| 517 | * (the list of attached processes is empty for a free TXT terminal). |
---|
| 518 | * It is called only by the process_reference_init() function when creating a KSH process. |
---|
| 519 | * It makes a kernel panic if no free TXT terminal is found. |
---|
[457] | 520 | * The allocated TXT terminal is only released when the KSH process is deleted. |
---|
[428] | 521 | ********************************************************************************************* |
---|
| 522 | * @ return TXT terminal index if succes / kernel panic if no terminal found. |
---|
| 523 | ********************************************************************************************/ |
---|
[485] | 524 | uint32_t process_txt_alloc( void ); |
---|
[428] | 525 | |
---|
| 526 | /********************************************************************************************* |
---|
[450] | 527 | * This function attach a process, identified by the <process> argument to a TXT terminal, |
---|
| 528 | * identified by the <txt_id> channel index argument. |
---|
| 529 | * The process descriptor identified by the <process> argument must be in the owner cluster. |
---|
[428] | 530 | * It insert the process descriptor in the xlist rooted in the TXT_RX device. |
---|
| 531 | * It is called by the process_reference_init() function. |
---|
| 532 | ********************************************************************************************* |
---|
| 533 | * @ process : local pointer on process descriptor. |
---|
| 534 | * @ txt_id : TXT channel index. |
---|
| 535 | ********************************************************************************************/ |
---|
| 536 | void process_txt_attach( process_t * process, |
---|
| 537 | uint32_t txt_id ); |
---|
| 538 | |
---|
| 539 | /********************************************************************************************* |
---|
[436] | 540 | * This function detach a process, identified by the <process_xp> argument, |
---|
[446] | 541 | * from the list of process attached to a given TXT terminal. It transfer the TXT ownership |
---|
| 542 | * to another process, if the detached process is the TXT owner. |
---|
| 543 | * The process descriptor identified by the <process_xp> argument must be in the owner |
---|
| 544 | * cluster, but the calling thread can be running in any cluster. |
---|
[428] | 545 | ********************************************************************************************* |
---|
[436] | 546 | * @ process_xp : extended pointer on process descriptor. |
---|
[428] | 547 | ********************************************************************************************/ |
---|
[436] | 548 | void process_txt_detach( xptr_t process_xp ); |
---|
[428] | 549 | |
---|
| 550 | /********************************************************************************************* |
---|
[564] | 551 | * This function gives a process identified by the <process_xp> argument the exclusive |
---|
| 552 | * ownership of its attached TXT_RX terminal (i.e. put the process in foreground). |
---|
[457] | 553 | * It can be called by a thread running in any cluster, but the <process_xp> must be the |
---|
| 554 | * owner cluster process descriptor. |
---|
[428] | 555 | ********************************************************************************************* |
---|
[436] | 556 | * @ owner_xp : extended pointer on process descriptor in owner cluster. |
---|
[428] | 557 | ********************************************************************************************/ |
---|
[457] | 558 | void process_txt_set_ownership( xptr_t process_xp ); |
---|
[428] | 559 | |
---|
| 560 | /********************************************************************************************* |
---|
[457] | 561 | * When the process identified by the <owner_xp> argument has the exclusive ownership of |
---|
[436] | 562 | * the TXT_RX terminal, this function transfer this ownership to another attached process. |
---|
[443] | 563 | * The process descriptor must be the process owner. |
---|
| 564 | * This function does nothing if the process identified by the <process_xp> is not |
---|
| 565 | * the TXT owner. |
---|
[436] | 566 | * - If the current owner is not the KSH process, the new owner is the KSH process. |
---|
[443] | 567 | * - If the current owner is the KSH process, the new owner is another attached process. |
---|
[436] | 568 | * - If there is no other attached process, the TXT has no more defined owner. |
---|
[428] | 569 | ********************************************************************************************* |
---|
[457] | 570 | * @ process_xp : extended pointer on process descriptor in owner cluster. |
---|
[428] | 571 | ********************************************************************************************/ |
---|
[457] | 572 | void process_txt_transfer_ownership( xptr_t process_xp ); |
---|
[428] | 573 | |
---|
[435] | 574 | /********************************************************************************************* |
---|
[457] | 575 | * This function returns true if the process identified by the <process_xp> argument |
---|
| 576 | * is the TXT owner. It can be called by a thread running in any cluster, but the |
---|
| 577 | * process_xp must be the owner cluster process descriptor. |
---|
[435] | 578 | ********************************************************************************************* |
---|
[564] | 579 | * @ returns true if target process is TXT owner. |
---|
[435] | 580 | ********************************************************************************************/ |
---|
[564] | 581 | bool_t process_txt_is_owner( xptr_t process_xp ); |
---|
[457] | 582 | |
---|
| 583 | /********************************************************************************************* |
---|
| 584 | * This function returns an extended ponter on the current TXT owner process, |
---|
| 585 | * for the TXT terminal identified by the <channel> index. |
---|
| 586 | ********************************************************************************************* |
---|
| 587 | * @ channel : TXT channel. |
---|
| 588 | * @ return extended pointer on TXT owner process. |
---|
| 589 | ********************************************************************************************/ |
---|
[436] | 590 | xptr_t process_txt_get_owner( uint32_t channel ); |
---|
[435] | 591 | |
---|
| 592 | /********************************************************************************************* |
---|
| 593 | * This debug function diplays on the kernel terminal the list of processes attached |
---|
| 594 | * to a given terminal identified by the <txt_id> argument. |
---|
| 595 | ********************************************************************************************* |
---|
| 596 | * @ txt_id : TXT terminal channel. |
---|
| 597 | ********************************************************************************************/ |
---|
| 598 | void process_txt_display( uint32_t txt_id ); |
---|
| 599 | |
---|
| 600 | |
---|
[1] | 601 | #endif /* _PROCESS_H_ */ |
---|