source: trunk/kernel/kern/process.h @ 425

Last change on this file since 425 was 416, checked in by alain, 6 years ago

Improve sys_exec.

File size: 31.1 KB
Line 
1/*
2 * process.h - process related management functions
3 *
4 * Authors  Ghassan Almaless (2008,2009,2010,2011,2012)
5 *          Mohamed Lamine Karaoui (2015)
6 *          Alain Greiner (2016,2017)
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
29#include <kernel_config.h>
30#include <errno.h>
31#include <hal_types.h>
32#include <list.h>
33#include <xlist.h>
34#include <bits.h>
35#include <spinlock.h>
36#include <hal_atomic.h>
37#include <vmm.h>
38#include <signal.h>
39#include <cluster.h>
40#include <vfs.h>
41
42/****  Forward declarations  ****/
43
44struct thread_s;
45
46/*********************************************************************************************
47 * These macros are used to compose or decompose global process identifier (PID)
48 * to or from cluster identifier / local process index (CXY , LPID)
49 ********************************************************************************************/
50
51#define LPID_FROM_PID( pid )       (lpid_t)(pid & 0x0000FFFF)
52#define CXY_FROM_PID( pid )        (cxy_t)(pid >> 16)
53#define PID( cxy , lpid )          (pid_t)((cxy << 16) | lpid )
54
55/*********************************************************************************************
56 * This enum defines the actions that can be executed by the process_signal() function.
57 ********************************************************************************************/
58
59enum process_sigactions
60{
61    BLOCK_ALL_THREADS    = 11,
62    UNBLOCK_ALL_THREADS  = 22,
63    DELETE_ALL_THREADS   = 33, 
64};
65
66/*********************************************************************************************
67 * This structure defines an array of extended pointers on the open file descriptors
68 * for a given process. We use an extended pointer because the open file descriptor
69 * is always stored in the same cluster as the inode associated to the file.
70 * A free entry in this array contains the XPTR_NULL value.
71 * The array size is defined by a the CONFIG_PROCESS_FILE_MAX_NR parameter.
72 * All modifications (open/close) in this structure must be done by the reference cluster,
73 * and reported in process copies.
74 ********************************************************************************************/
75
76typedef struct fd_array_s
77{
78        remote_spinlock_t lock;                               /*! lock protecting fd_array      */
79    uint32_t          current;                            /*! current number of open files  */
80        xptr_t            array[CONFIG_PROCESS_FILE_MAX_NR];  /*! xptr on open file descriptors */
81}
82fd_array_t;
83
84/*********************************************************************************************
85 * This structure defines a process descriptor.
86 * A process is identified by a unique PID (process identifier):
87 * - The PID 16 LSB bits contain the LPID (Local Process Index)
88 * - The PID 16 MSB bits contain the owner cluster CXY.
89 * In each cluster, the process manager allocates  the LPID values for the process that
90 * are owned by this cluster.
91 * The process descriptor is replicated in all clusters containing at least one thread
92 * of the PID process, with the following rules :
93 * 1) The <pid>, <ppid>, <ref_xp>, <vfs_root_xp>, <vfs_bin_xp>  fields are defined
94 *    in all process descriptor copies.
95 * 2) The <vfs_cwd_xp> and associated <cwd_lock>, that can be dynamically modified,
96 *    are only defined in the reference process descriptor.
97 * 2) The <vmm>, containing the VSL (list of registered vsegs), and the GPT (generic
98 *    page table), are only complete in the reference process cluster, other copies
99 *    are actually use as read-only caches.
100 * 3) the <fd_array>, containing extended pointers on the open file descriptors, is only
101 *    complete in the reference process cluster, other copies are read-only caches.
102 * 4) The <sem_root>, <mutex_root>, <barrier_root>, <condvar_root>, and the associated
103 *    <sync_lock>, that are dynamically allocated, are only defined in the reference cluster.
104 * 5) The <children_root>, and <children_nr> fields are only defined in the reference
105 *    cluster, and are undefined in other clusters.
106 * 6) The <brothers_list>, <local_list>, <copies_list>, <th_tbl>, <th_nr>, <th_lock> fields
107 *    are defined in all process descriptors copies.
108 ********************************************************************************************/
109
110typedef struct process_s
111{
112        vmm_t             vmm;              /*! embedded virtual memory manager                 */
113
114        fd_array_t        fd_array;         /*! embedded open file descriptors array            */
115
116        xptr_t            vfs_root_xp;      /*! extended pointer on current VFS root inode      */
117        xptr_t            vfs_bin_xp;       /*! extended pointer on .elf file inode             */
118        pid_t             pid;              /*! process identifier                              */
119        pid_t             ppid;             /*! parent process identifier                       */
120    xptr_t            ref_xp;           /*! extended pointer on reference process           */
121
122        xptr_t            vfs_cwd_xp;       /*! extended pointer on current working dir inode   */
123        remote_rwlock_t   cwd_lock;         /*! lock protecting working directory changes       */
124
125        xlist_entry_t     children_root;    /*! root of the children process xlist              */
126    uint32_t          children_nr;      /*! number of children processes                    */
127
128        xlist_entry_t     brothers_list;    /*! member of list of children of same parent       */
129    xlist_entry_t     local_list;       /*! member of list of process in same cluster       */
130    xlist_entry_t     copies_list;      /*! member of list of copies of same process        */
131
132        spinlock_t        th_lock;          /*! lock protecting th_tbl[] concurrent access      */
133        uint32_t          th_nr;            /*! number of threads in this cluster               */
134        struct thread_s * th_tbl[CONFIG_THREAD_MAX_PER_CLUSTER]; /*! pointers on local threads  */
135
136    xlist_entry_t     sem_root;         /*! root of the process semaphore list              */
137    xlist_entry_t     mutex_root;       /*! root of the process mutex list                  */
138    xlist_entry_t     barrier_root;     /*! root of the process barrier list                */
139    xlist_entry_t     condvar_root;     /*! root of the process condvar list                */
140
141    remote_spinlock_t sync_lock;        /*! lock protecting sem,mutex,barrier,condvar lists */
142}
143process_t;
144
145/*********************************************************************************************
146 * This structure defines the information required by the process_make_exec() function
147 * to create a new reference process descriptor, and the associated main thread.
148 ********************************************************************************************/
149
150typedef struct exec_info_s
151{
152    pid_t              pid;            /*! process identifier (both parent and child)       */
153
154    char               path[CONFIG_VFS_MAX_PATH_LENGTH];   /*!  .elf file path              */
155
156    char            ** args_pointers;  /*! physical base address of array of pointers       */
157    char             * args_buf_base;  /*! physical base address of kernel args buffer      */
158    uint32_t           args_nr;        /*! actual number of arguments                       */
159
160    char            ** envs_pointers;  /*! physical base address of array of pointers       */
161    char             * envs_buf_base;  /*! physical base address of kernel args buffer      */
162    char             * envs_buf_free;  /*! physical address of first free slot in envs_buf  */
163    uint32_t           envs_nr;        /*! actual number of environment variables           */
164}
165exec_info_t;
166
167/***************   Process Descriptor Operations    *****************************************/
168
169/*********************************************************************************************
170 * This function allocates memory in local cluster for a process descriptor.
171 *********************************************************************************************
172 * @ returns pointer on process descriptor if success / return NULL if failure
173 ********************************************************************************************/
174process_t * process_alloc();
175
176/*********************************************************************************************
177 * This function releases memory in local cluster for a process descriptor.
178 *********************************************************************************************
179 * @ process      : pointer on process descriptor to release.
180 ********************************************************************************************/
181void process_free( process_t * process );
182
183/*********************************************************************************************
184 * This function allocates memory and initializes the "process_init" descriptor and the
185 * associated "thread_init" descriptor. It is called once at the end of the kernel
186 * initialisation procedure, by the kernel process in cluster_IO.
187 * The "process_init" is the first user process, and all other user processes will be forked
188 * from this process. The code executed by "process_init" is stored in a .elf file, whose
189 * pathname is defined by the CONFIG_PROCESS_INIT_PATH configuration variable.
190 * The process_init streams are defined  by the CONFIG_INIT_[STDIN/STDOUT/STDERR] variables.
191 * Its local process identifier is 1, and parent process is the local kernel process_zero.
192 ********************************************************************************************/
193void process_init_create();
194
195/*********************************************************************************************
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 * Both the PID and PPID fields are set to zero, and the ref_xp is the local process_zero.
199 * The th_tbl[] is initialized as empty.
200 *********************************************************************************************
201 * @ process      : [in] pointer on local process descriptor to initialize.
202 ********************************************************************************************/
203void process_zero_init( process_t * process );
204
205/*********************************************************************************************
206 * This function initializes a local, reference user process descriptor from another process
207 * descriptor, defined by the <model_xp> argument. The <process> descriptor, the <pid>, and
208 * the <ppid> arguments must be previously defined by the caller.
209 * It can be called by two functions, depending on the process type:
210 * 1) if "process" is the "process_init", the parent is the kernel process. It is
211 *    called once, by the process_init_create() function in cluster[xmax-1][ymax-1].
212 * 2) if the caller is the process_make_fork() function, the model is generally a remote
213 *    process, that is also the parent process.
214
215 * 3) if the caller is the process_make_exec() function, the model is always a local process,
216 *    and the parent is the parent of the model process. DEPRECATED [AG]
217
218 * The following fields are initialised (for all process but process_zero).
219 * - It set the pid / ppid / ref_xp fields.
220 * - It initializes the VMM (register the kentry, args, envs vsegs in VSL)
221 * - It initializes the FDT, defining the three pseudo files STDIN / STDOUT / STDERR.
222 * - It set the root_xp, bin_xp, cwd_xp fields.
223 * - It reset the children list as empty, but does NOT register it in parent children list.
224 * - It reset the TH_TBL list of threads as empty.
225 * - It reset the semaphore / mutex / barrier / condvar lists as empty.
226 * - It registers the process in the local_list, rooted in the local cluster manager.
227 * - It registers the process in the copies_list, rooted in the owner cluster manager.
228 * - It registers the process extended pointer in the local pref_tbl[] array.
229 *********************************************************************************************
230 * @ process      : [in] pointer on local process descriptor to initialize.
231 * @ pid          : [in] process identifier.
232 * @ ppid         : [in] parent process identifier.
233 * @ model_xp     : [in] extended pointer on model process descriptor (local or remote).
234 ********************************************************************************************/
235void process_reference_init( process_t * process,
236                             pid_t       pid,
237                             pid_t       ppid,
238                             xptr_t      model_xp );
239
240/*********************************************************************************************
241 * This function initializes a copy process descriptor, in the local cluster,
242 * from information defined in the reference remote process descriptor.
243 *********************************************************************************************
244 * @ process              : [in] local pointer on process descriptor to initialize.
245 * @ reference_process_xp : [in] extended pointer on reference process descriptor.
246 * @ return 0 if success / return ENOMEM if failure
247 ********************************************************************************************/
248error_t process_copy_init( process_t * local_process,
249                           xptr_t      reference_process_xp );
250
251/*********************************************************************************************
252 * This function releases all memory allocated for a process descriptor in the local cluster,
253 * including memory allocated for embedded substructures (fd_array, vmm, etc).
254 * The local th_tbl[] array must be empty.
255 *********************************************************************************************
256 * @ process     : pointer on the process descriptor.
257 ********************************************************************************************/
258void process_destroy( process_t * process );
259
260/*********************************************************************************************
261 * This function returns a printable string defining the action for process_signa().
262 *********************************************************************************************
263 * @ action_type   : BLOCK_ALL_THREADS / UNBLOCK_ALL_THREADS / DELETE_ALL_THREADS
264 * @ return a string pointer.
265 ********************************************************************************************/
266char * process_action_str( uint32_t action_type );
267
268/*********************************************************************************************
269 * This function allows a client thread running in the owner cluster of a process identified
270 * by the <process> argument to block, unblock or delete all threads of the target process,
271 * depending on the <action_type> argument.  The scenario is the following:
272 * - It uses the multicast, non blocking rpc_process_sigaction_client() function to send
273 *   parallel requests to all remote clusters containing a process copy. Then it blocks
274 $   and deschedule to wait completion of these parrallel requests.
275 * - In each remote cluster, the rpc_process_sigaction_server() function, calls directly
276 *   the relevant process_block(), process_unblock(), or process_delete() function, and
277 *   decrement the responses counter to signal completion. The last server unblock
278 *   the client thread.
279 * - Finally, the client thread calls directly the process_block(), process_unblock(), or
280 *   process_delete() function in the owner cluster.
281 * It is used by the sys_kill() & sys_exit() functions to handle the "kill" & "exit" syscalls.
282 * It is also used by the process_make_exec() function to handle the "exec" syscall.
283 * WARNING : the DELETE and the BLOCK actions are NOT executed on the client thread.
284 *********************************************************************************************
285 * @ process     : pointer on the process descriptor in owner cluster.
286 * @ action_type : BLOCK_ALL_THREADS / UNBLOCK_ALL_THREADS / DELETE_ALL_THREADS
287 ********************************************************************************************/
288void process_sigaction( process_t * process,
289                        uint32_t    action_type );
290
291/*********************************************************************************************
292 * This function blocks all threads of a given user process in a given cluster.
293 * It loops on all local threads of the process, set the THREAD_BLOCKED_GLOBAL bit,
294 * and request the relevant schedulers to acknowledge the blocking, using IPI if required.
295 * The threads are not detached from the scheduler, and not detached from the local process.
296 * This function returns only when all blockable threads in cluster are actually blocked.
297 * WARNING : the client thread defined by the <client_xp> argument is NOT blocked.
298 *********************************************************************************************
299 * @ process     : pointer on the target process descriptor.
300 * @ client_xp   : extended pointer on the client thread, that should not be blocked.
301 ********************************************************************************************/
302void process_block( process_t * process,
303                    xptr_t      client_xp );
304
305/*********************************************************************************************
306 * This function unblocks all threads of a given user process in a given cluster.
307 *********************************************************************************************
308 * @ process     : pointer on the process descriptor.
309 ********************************************************************************************/
310void process_unblock( process_t * process );
311
312/*********************************************************************************************
313 * This function delete all threads, of a given user process in a given cluster.
314 * It loops on all local threads of the process, and set the THREAD_FLAG_REQ_DELETE bit.
315 * For each marked thread, the following actions will be done by the scheduler at the next
316 * scheduling point:
317 * - the thread will be detached from the scheduler.
318 * - the thread will be detached from the local process descriptor.
319 * - the thread will be detached from parent if required.
320 * - the memory allocated to the thread descriptor is released.
321 * - the memory allocated to the process descriptor is released, if it is the last thread.
322 * WARNING : the client thread defined by the <client_xp> argument is NOT deleted.
323 *********************************************************************************************
324 * @ process     : pointer on the process descriptor.
325 * @ client_xp   : extended pointer on the client thread, that should not be deleted.
326 ********************************************************************************************/
327void process_delete( process_t * process,
328                     xptr_t      client_xp );
329
330/*********************************************************************************************
331 * This function returns a pointer on the local copy of a process identified by its PID.
332 * If this local copy does not exist yet, it is dynamically created, from the reference
333 * process descriptor, registered in the global copies_list, and registered in the local_list.
334 * This function is used by the thread_user_create() function.
335 *********************************************************************************************
336 * @ pid     : searched process identifier.
337 * @ returns pointer on the local process descriptor if success / returns NULL if failure.
338 ********************************************************************************************/
339process_t * process_get_local_copy( pid_t pid );
340
341/*********************************************************************************************
342 * This function implements the "exec" system call, and is called by the sys_exec() function.
343 * The "new" process keep the "old" process PID and PPID, all open files, and env variables,
344 * the vfs_root and vfs_cwd, but build a brand new memory image (new VMM from the new .elf).
345 * It actually creates a "new" reference process descriptor, and copies all relevant
346 * information from the "old" process descriptor to the "new" process descriptor.
347 * It completes the "new" process descriptor, from information found in the <exec_info>
348 * structure (defined in the process.h file), that must be built by the caller.
349 * It creates and initializes the associated main thread. It finally destroys all copies
350 * of the "old" process in all clusters, and destroys all old associated threads.
351 * It is executed in the local cluster, that becomes both the "owner" and the "reference"
352 * cluster for the "new" process.
353 *********************************************************************************************
354 * @ exec_info   : [in]  pointer on the exec_info structure.
355 * @ return 0 if success / return non-zero if error.
356 ********************************************************************************************/
357error_t process_make_exec( exec_info_t * exec_info );
358
359/*********************************************************************************************
360 * This function implements the "fork" system call, and is called by the sys_fork() function.
361 * It allocates memory and initializes a new "child" process descriptor, and the
362 * associated "child" thread descriptor in the local cluster. This function can involve
363 * up to three different clusters :
364 * - the local (child) cluster can be any cluster defined by the sys_fork function.
365 * - the parent cluster must be the reference cluster for the parent process.
366 * - the client cluster containing the thread requesting the fork can be any cluster.
367 * The new "child" process descriptor is initialised from informations found in the "parent"
368 * reference process descriptor, containing the complete process description.
369 * The new "child" thread descriptor is initialised from informations found in the "parent"
370 * thread descriptor.
371 *********************************************************************************************
372 * @ parent_process_xp  : extended pointer on the reference parent process.
373 * @ parent_thread_xp   : extended pointer on the parent thread requesting the fork.
374 * @ child_pid          : [out] child process identifier.
375 * @ child_thread_ptr   : [out] local pointer on child thread in target cluster.
376 * @ return 0 if success / return non-zero if error.
377 ********************************************************************************************/
378error_t process_make_fork(  xptr_t             parent_process_xp,
379                            xptr_t             parent_thread_xp,
380                            pid_t            * child_pid, 
381                            struct thread_s ** child_thread_ptr );
382
383/*********************************************************************************************
384 * This function implement the "exit" system call, and is called by the sys_exit() function.
385 * It must be executed by a thread running in the calling process owner cluster.
386 * It uses twice the multicast RPC_PROCESS_SIGNAL to first block all process threads
387 * in all clusters, and then delete all threads and process descriptors.
388 *********************************************************************************************
389 * @ pid      : process identifier.
390 * @ status   : exit return value.
391 ********************************************************************************************/
392void process_make_exit( pid_t       pid,
393                        uint32_t    status );
394
395/*********************************************************************************************
396 * This function implement the "kill" system call, and is called by the sys_kill() function.
397 * It must be executed by a thread running in the target process owner cluster.
398 * Only the SIGKILL, SIGSTOP, and SIGCONT signals are supported.
399 * User defined handlers are not supported.
400 * It uses once or twice the multicast RPC_PROCESS_SIGNAL to block, unblock or delete
401 * all process threads in all clusters, and then delete process descriptors.
402 *********************************************************************************************
403 * @ pid     : process identifier.
404 * @ sig_id  : signal type.
405 ********************************************************************************************/
406void process_make_kill( pid_t     pid,
407                        uint32_t  sig_id );
408
409
410/********************   File Management Operations   ****************************************/
411
412/*********************************************************************************************
413 * This function initializes all entries of the local fd_array as empty.
414 *********************************************************************************************
415 * @ process  : pointer on the local process descriptor.
416 ********************************************************************************************/
417void process_fd_init( process_t * process );
418
419/*********************************************************************************************
420 * This function uses as many remote accesses as required, to reset an entry in fd_array[],
421 * in all clusters containing a copy. The entry is identified by the <fdid> argument.
422 * This function must be executed by a thread running reference cluster, that contains
423 * the complete list of process descriptors copies.
424 *********************************************************************************************
425 * @ process  : pointer on the local process descriptor.
426 * @ fdid     : file descriptor index in the fd_array.
427 ********************************************************************************************/
428void process_fd_remove( process_t * process,
429                        uint32_t    fdid );
430
431/*********************************************************************************************
432 * This function returns an extended pointer on a file descriptor identified by its index
433 * in fd_array. It can be called by any thread running in any cluster.
434 * It accesses first the local process descriptor. In case of local miss, it uses remote
435 * access to access the reference process descriptor.
436 * It updates the local fd_array when the file descriptor exists in reference cluster.
437 * The file descriptor refcount is not incremented.
438 *********************************************************************************************
439 * @ process  : pointer on the local process descriptor.
440 * @ fdid     : file descriptor index in the fd_array.
441 * @ return extended pointer on file descriptor if success / return XPTR_NULL if not found.
442 ********************************************************************************************/
443xptr_t process_fd_get_xptr( process_t * process,
444                            uint32_t    fdid );
445
446/*********************************************************************************************
447 * This function checks the number of open files for a given process.
448 * It can be called by any thread in any cluster, because it uses portable remote access
449 * primitives to access the reference process descriptor.
450 *********************************************************************************************
451 * @ returns true if file descriptor array full.
452 ********************************************************************************************/
453bool_t process_fd_array_full();
454
455/*********************************************************************************************
456 * This function allocates a free slot in the fd_array of the reference process,
457 * register the <file_xp> argument in the allocated slot, and return the slot index.
458 * It can be called by any thread in any cluster, because it uses portable remote access
459 * primitives to access the reference process descriptor.
460 *********************************************************************************************
461 * @ file_xp  : extended pointer on the file descriptor to be registered.
462 * @ fdid     : [out] buffer for fd_array slot index.
463 * @ return 0 if success / return EMFILE if array full.
464 ********************************************************************************************/
465error_t process_fd_register( process_t * process,
466                             xptr_t      file_xp,
467                             uint32_t  * fdid );
468
469/*********************************************************************************************
470 * This function copies all non-zero entries (other than the three first stdin/stdout/stderr)
471 * from a remote <src_xp> fd_array, embedded in a process descriptor, to another remote
472 * <dst_xp> fd_array, embedded in another process descriptor.
473 * The calling thread can be running in any cluster.
474 * It takes the remote lock protecting the <src_xp> fd_array during the copy.
475 * For each involved file descriptor, the refcount is incremented.
476 *********************************************************************************************
477 * @ dst_xp   : extended pointer on the destination fd_array_t.
478 * @ src_xp   : extended pointer on the source fd_array_t.
479 ********************************************************************************************/
480void process_fd_remote_copy( xptr_t dst_xp,
481                             xptr_t src_xp );
482
483
484
485/********************   Thread Related Operations   *****************************************/
486
487/*********************************************************************************************
488 * This function registers a new thread in the local process descriptor.
489 * It checks that there is an available slot in the local th_tbl[] array,
490 * allocates a new LTID, and registers the new thread in the th_tbl[].
491 * WARNING : the lock protecting the th_tbl[] must be taken by the caller.
492 *********************************************************************************************
493 * @ process  : pointer on the local process descriptor.
494 * @ thread   : pointer on new thread to be registered.
495 * @ trdid    : [out] address of buffer for allocated trdid.
496 * @ returns 0 if success / returns non zero if no slot available.
497 ********************************************************************************************/
498error_t process_register_thread( process_t       * process,
499                                 struct thread_s * thread,
500                                 trdid_t         * trdid );
501
502/*********************************************************************************************
503 * This function removes a thread registration from the local process descriptor.
504 * WARNING : the lock protecting the th_tbl[] must be taken by the caller.
505 *********************************************************************************************
506 * @ thread   : local pointer on thread to be removed.
507 ********************************************************************************************/
508void process_remove_thread( struct thread_s * thread );
509
510
511
512#endif  /* _PROCESS_H_ */
Note: See TracBrowser for help on using the repository browser.