source: trunk/kernel/syscalls/syscalls.h @ 408

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

Fix several bugs in the fork() syscall.

File size: 32.4 KB
Line 
1/*
2 * syscalls.h - Kernel side services for syscall handling.
3 *
4 * Author     Alain Greiner (2016,2017)
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#ifndef _SYSCALLS_H_
25#define _SYSCALLS_H_
26
27#include <hal_types.h>
28#include <shared_syscalls.h>
29
30/**   Forward declarations  *****/
31
32struct thread_s;                  // defined in thread.h
33struct pthread_attr_s;            // defined in thread.h
34struct vfs_stat_s;                // defined in vfs.h
35struct vfs_dirent_s;              // defined in vfs.h
36struct mmap_attr_s;               // defined in vmm.h
37
38/******************************************************************************************
39 * [0] This function terminates the execution of the calling user thread,
40 * and makes the exit_value pointer available to any successful pthread_join() with the
41 * terminating thread.
42 ******************************************************************************************
43 * @ exit_vallue  : pointer to be returned to parent thread if thread is attached.
44 * @ return 0 if success / return -1 if failure.
45 *****************************************************************************************/
46int sys_thread_exit( void * exit_value );
47
48/******************************************************************************************
49 * [1] This function calls the scheduler for the core running the calling thread.
50 ******************************************************************************************
51 * @ x_size   : [out] number of clusters in a row.
52 * @ y_size   : [out] number of clusters in a column.
53 * @ ncores   : [out] number of cores per cluster.
54 * @ return always 0.
55 *****************************************************************************************/
56int sys_thread_yield();
57
58/******************************************************************************************
59 * [2] This function creates a new user thread. The <user_attr> argument is a pointer
60 * on astructure containing the thread attributes, defined in thread.h file.
61 ******************************************************************************************
62 * @ new_thread  : [out] local pointer on created thread descriptor.
63 * @ user_attr   : [in]  pointer on thread attributes structure.
64 * @ start_func  : [in]  pointer on start function.
65 * @ start_args  : [in]  pointer on start function arguments.
66 * @ return 0 if success / return -1 if failure.
67 *****************************************************************************************/
68int sys_thread_create( struct thread_s        * new_thread,
69                       struct pthread_attr_s  * user_attr,
70                       void                   * start_func,
71                       void                   * start_args );
72
73/******************************************************************************************
74 * [3] This blocking function suspend execution of the calling thread until completion
75 * of another target thread identified by the <trdid> argument.
76 * If the <exit_value> argument is not NULL, the value passed to pthread_exit() by the
77 * target thread is stored in the location referenced by exit_value.
78 ******************************************************************************************
79 * @ trdid     : [in]  target thread identifier.
80 * @ thread    : [out] buffer for exit_value returned by target thread.
81 * @ return 0 if success / return -1 if failure.
82 *****************************************************************************************/
83int sys_thread_join( trdid_t    trdid,
84                     void    ** exit_value );
85
86/******************************************************************************************
87 * [4] This function detach a joinable thread.
88 ******************************************************************************************
89 * @ trdid   : thread identifier.i
90 * @ return 0 if success / return -1 if failure.
91 *****************************************************************************************/
92int sys_thread_detach( trdid_t  trdid );
93
94/******************************************************************************************
95 * [5] This slot is not used.
96 *****************************************************************************************/
97
98/******************************************************************************************
99 * [6] This function implement all operations on a POSIX unnamed semaphore,
100 * that can be shared by threads running in different clusters.
101 * The kernel structure representing a remote semaphore is in the remote_sem.h file,
102 * and the code implementing the operations is in the remore_sem.c file.
103 ******************************************************************************************
104 * @ vaddr     : semaphore virtual address in user space == identifier.
105 * @ operation : SEM_INIT / SEM_DESTROY / SEM_GETVALUE / SEM_POST / SEM_WAIT.
106 * @ value     : pointer on in/out argument in user space.
107 * @ return 0 if success / return -1 if failure.
108 *****************************************************************************************/
109int sys_sem( void       * vaddr,
110             uint32_t     operation,
111             uint32_t   * value );
112
113/******************************************************************************************
114 * [7] This function implement all operations on a POSIX condition variable.
115 * The kernel structure representing a cond_var is defined in the remote_cv.h file,
116 * The code implementing the operations is defined in the remote_cv.c file.
117 ******************************************************************************************
118 * @ vaddr     : condvar virtual address in user space == identifier.
119 * @ operation : operation type (see below).
120 * @ attr      : mutex virtual address in user space == identifier.
121 * @ return 0 if success / return -1 if failure.
122 *****************************************************************************************/
123int sys_condvar( void     * condvar,
124                 uint32_t   operation,
125                 void     * mutex );
126
127/******************************************************************************************
128 * [8] This function implement all operations on a POSIX barrier.
129 * The kernel structure representing a barrier is defined in the remote_barrier.h file.
130 * The code implementting the operations is defined in the remote_barrier.c file.
131 ******************************************************************************************
132 * @ vaddr     : barrier virtual address in user space == identifier.
133 * @ operation : BARRIER_INIT / BARRIER_DESTROY / BARRIER_WAIT.
134 * @ count     : number of expected threads (only used by BARRIER_INIT operation).
135 * @ return 0 if success / return -1 if failure.
136 *****************************************************************************************/
137int sys_barrier( void     * vaddr,
138                 uint32_t   operation,
139                 uint32_t   count );
140
141/******************************************************************************************
142 * [9] This function implement all operations on a POSIX mutex.
143 * The kernel structure representing a barrier is defined in the remote_barrier.h file.
144 * The code implementting the operations is defined in the remote_barrier.c file.
145 ******************************************************************************************
146 * @ vaddr     : mutex virtual address in user space == identifier.
147 * @ operation : MUTEX_INIT / MUTEX_DESTROY / MUTEX_LOCK / MUTEX_UNLOCK
148 * @ attr      : mutex attributes (non supported yet => must be 0).
149 * @ return 0 if success / return -1 if failure.
150 *****************************************************************************************/
151int sys_mutex( void     * vaddr,
152               uint32_t   operation,
153               uint32_t   count );
154
155/******************************************************************************************
156 * [10] This function implement the exit system call terminating a POSIX process.
157 ******************************************************************************************
158 * @ status   : terminaison status (not used in present implementation).
159 *****************************************************************************************/
160void sys_exit( uint32_t status );
161
162/******************************************************************************************
163 * [11] This function remove an existing mapping defined by the <addr> and <size>
164 * arguments in user space.
165 ******************************************************************************************
166 * @ addr  : base address in user space.
167 * # size  : number of bytes.
168 * @ return 0 if success / return -1 if failure.
169 *****************************************************************************************/
170int sys_munmap( void     * addr,
171                uint32_t   size );
172
173/******************************************************************************************
174 * [12] This function open or create an open file descriptor.
175 ******************************************************************************************
176 * @ pathname   : pathname (can be relative or absolute).
177 * @ flags      : bit vector attributes (see below).
178 * @ mode       : access rights.
179 * @ return file descriptor index in fd_array if success / return -1 if failure.
180 *****************************************************************************************/
181int sys_open( char    * pathname,
182              uint32_t  flags,
183              uint32_t  mode );
184
185/******************************************************************************************
186 * [13] This function map physical memory (or a file) in the calling thread virtual space.
187 * The <attr> argument is a pointer on a structure for arguments (see shared_syscalls.h).
188 ******************************************************************************************
189 * @ attr       : pointer on attributes structure.
190 * @ return 0 if success / return -1 if failure.
191 *****************************************************************************************/
192int sys_mmap( mmap_attr_t * attr );
193
194/******************************************************************************************
195 * [14] This function read bytes from an open file identified by its file descriptor.
196 * The file can be a regular file or character oriented device.
197 * IRQs are enabled during this system call.
198 ******************************************************************************************
199 * @ file_id  : open file index in fd_array.
200 * @ buf      : buffer virtual address in user space.
201 * @ count    : number of bytes.
202 * @ return number of bytes actually read if success / returns -1 if failure.
203 *****************************************************************************************/
204int sys_read( uint32_t   file_id,
205              void     * buf,
206              uint32_t   count );
207
208/******************************************************************************************
209 * [15] This function writes bytes to an open file identified by its file descriptor.
210 * The file can be a regular file or character oriented device.
211 * IRQs are enabled during this system call.
212 ******************************************************************************************
213 * @ file_id  : open file index in fd_array.
214 * @ buf      : buffer virtual address in user space.
215 * @ count    : number of bytes.
216 * @ return number of bytes actually written if success / returns -1 if failure.
217 *****************************************************************************************/
218int sys_write( uint32_t   file_id,
219               void     * buf,
220               uint32_t   count );
221
222/******************************************************************************************
223 * [16] This function repositions the offset of the file descriptor identified by <file_id>,
224 * according to the operation type defined by the <whence> argument.
225 ******************************************************************************************
226 * @ file_id  : open file index in fd_array.
227 * @ offset   : used to compute new offset value.
228 * @ whence   : operation type (see below).
229 * @ return 0 if success / returns -1 if failure.
230 *****************************************************************************************/
231int sys_lseek( xptr_t    file_id,
232               uint32_t  offset,
233               uint32_t  whence );
234
235/******************************************************************************************
236 * [17] This function release the memory allocated for the file descriptor identified by
237 * the <file_id> argument, and remove the fd array_entry in all copies of the process
238 * descriptor.
239 ******************************************************************************************
240  file_id   : file descriptor index in fd_array.
241 * @ return 0 if success / returns -1 if failure.
242 *****************************************************************************************/
243int sys_close( uint32_t file_id );
244
245/******************************************************************************************
246 * [18] This function removes a directory entry identified by the <pathname> from the
247 * directory, and decrement the link count of the file referenced by the link.
248 * If the link count reduces to zero, and no process has the file open, then all resources
249 * associated with the file are reclaimed.  If one or more process have the file open when
250 * the last link is removed, the link is removed, but the removal of the file is delayed
251 * until all references to it have been closed.
252 ******************************************************************************************
253 * @ pathname   : pathname (can be relative or absolute).
254 * @ return 0 if success / returns -1 if failure.
255 *****************************************************************************************/
256int sys_unlink( char * pathname );
257
258/******************************************************************************************
259 * [19] This function creates in the calling thread cluster an unnamed pipe, and two
260 * (read and write) file descriptors.
261 * TODO not implemented yet...
262 ******************************************************************************************
263 * @ file_id[0] : [out] read only file descriptor index.
264 * @ file_id[1] : [out] write only file descriptor index.
265 * @ return 0 if success / return -1 if failure.
266 *****************************************************************************************/
267int sys_pipe( uint32_t file_id[2] );
268
269/******************************************************************************************
270 * [20] This function change the current working directory in reference process descriptor.
271 ******************************************************************************************
272 * @ pathname   : pathname (can be relative or absolute).
273 * @ return 0 if success / returns -1 if failure.
274 *****************************************************************************************/
275int sys_chdir( char * pathname );
276
277/******************************************************************************************
278 * [21] This function creates a new directory in file system.
279 ******************************************************************************************
280 * @ pathname   : pathname (can be relative or absolute).
281 * @ mode       : access rights (as defined in chmod).
282 * @ return 0 if success / returns -1 if failure.
283 *****************************************************************************************/
284int sys_mkdir( char    * pathname,
285               uint32_t  mode );
286
287/******************************************************************************************
288 * [22] This function creates a named FIFO file in the calling thread cluster.
289 * The associated read and write file descriptors mut be be  explicitely created
290 * using the sys_open() function.
291 ******************************************************************************************
292 * @ pathname   : pathname (can be relative or absolute).
293 * @ mode       : access rights (as defined in chmod).
294 * @ return 0 if success / returns -1 if failure.
295 *****************************************************************************************/
296int sys_mkfifo( char     * pathname,
297                uint32_t   mode );
298
299/******************************************************************************************
300 * [23] This function open a directory, that must exist in the file system, returning
301 * a DIR pointer on the directory in user space.
302 ******************************************************************************************
303 * @ pathname   : pathname (can be relative or absolute).
304 * @ dirp       : [out] buffer for pointer on user directory (DIR).
305 * @ return 0 if success / returns -1 if failure.
306 *****************************************************************************************/
307int sys_opendir( char * pathname,
308                 DIR ** dirp );
309
310/******************************************************************************************
311 * [24] This function returns an user pointer on the dirent structure describing the
312 * next directory entry in the directory identified by the <dirp> argument.
313 ******************************************************************************************
314 * @ dirp     : user pointer identifying the searched directory.
315 * @ dentp    : [out] buffer for pointer on user direntory entry (dirent).
316 * @ return O if success / returns -1 if failure.
317 *****************************************************************************************/
318int sys_readdir( DIR            * dirp,
319                 struct dirent ** dentp );
320
321/******************************************************************************************
322 * [25] This function closes the directory identified by the <dirp> argument, and releases
323 * all structures associated with the <dirp> pointer.
324 ******************************************************************************************
325 * @ dirp     : user pointer identifying the directory.
326 * @ return 0 if success / returns -1 if failure.
327 *****************************************************************************************/
328int sys_closedir( DIR * dirp );
329
330/******************************************************************************************
331 * [26] This function returns the pathname of the current working directory.
332 ******************************************************************************************
333 * buf     : buffer addres in user space.
334 * nbytes  : user buffer size in bytes.
335 * @ return 0 if success / returns -1 if failure.
336 *****************************************************************************************/
337int sys_getcwd( char     * buf,
338                uint32_t   nbytes );
339
340/******************************************************************************************
341 * [27] This slot is not used.
342 *****************************************************************************************/
343
344/******************************************************************************************
345 * [28] This function forces the calling thread to sleep, for a fixed number of cycles.
346 ******************************************************************************************
347 * cycles   : number of cycles.
348 *****************************************************************************************/
349int sys_alarm( uint32_t cycles );
350
351/******************************************************************************************
352 * [29] This function removes a directory file whose name is given by <pathname>.
353 * The directory must not have any entries other than `.' and `..'.
354 ******************************************************************************************
355 * @ pathname   : pathname (can be relative or absolute).
356 * @ return 0 if success / returns -1 if failure.
357 *****************************************************************************************/
358int sys_rmdir( char * pathname ); 
359
360/******************************************************************************************
361 * [30] This function implement the operations related to User Thread Local Storage.
362 * It is actually implemented as an uint32_t variable in the thread descriptor.
363 ******************************************************************************************
364 * @ operation  : UTLS operation type as defined below.
365 * @ value      : argument value for the UTLS_SET operation.
366 * @ return value for the UTLS_GET and UTLS_GET_ERRNO / return -1 if failure.
367 *****************************************************************************************/
368int sys_utls( uint32_t operation,
369              uint32_t value );
370
371/******************************************************************************************
372 * [31] This function change the acces rights for the file/dir identified by the
373 * pathname argument.
374 ******************************************************************************************
375 * @ pathname   : pathname (can be relative or absolute).
376 * @ rights     : acces rights.
377 * @ return 0 if success / returns -1 if failure.
378 *****************************************************************************************/
379int sys_chmod( char     * pathname,
380               uint32_t   rights );
381
382/******************************************************************************************
383 * [32] This function associate a specific signal handler to a given signal type.
384 * Tee handlers for the SIGKILL and SIGSTOP signals cannot be redefined.
385 ******************************************************************************************
386 * @ sig_id    : index defining signal type (from 1 to 31).
387 * @ handler   : pointer on fonction implementing the specific handler.
388 * @ return 0 if success / returns -1 if failure.
389 *****************************************************************************************/
390int sys_signal( uint32_t   sig_id,
391                void     * handler );
392
393/******************************************************************************************
394 * [33] This function returns in the structure <tv>, defined in the time.h file,
395 * the current time (in seconds & micro-seconds).
396 * It is computed from the calling core descriptor.
397 * The timezone is not supported.
398 ******************************************************************************************
399 * @ tv      : pointer on the timeval structure.
400 * @ tz      : pointer on the timezone structure : must be NULL.       
401 * @ return 0 if success / returns -1 if failure.
402 *****************************************************************************************/
403int sys_timeofday( struct timeval  * tv,
404                   struct timezone * tz );
405
406/******************************************************************************************
407 * [34] This function implements the "kill" system call.
408 * It register the signal defined by the <sig_id> argument in all thread descriptors
409 * of a target process identified by the <pid> argument. This is done in all clusters
410 * containing threads for the target process.
411 * It can be executed by any thread running in any cluster, as this function uses
412 * remote access to traverse the list of process copies stored in the owner cluster,
413 * and the RPC_SIGNAL_RISE to signal the remote threads.
414 ******************************************************************************************
415 * @ pid      : target process identifier.
416 * @ sig_id   : index defining the signal type (from 1 to 31).
417 * @ return 0 if success / returns -1 if failure.
418 *****************************************************************************************/
419int sys_kill( pid_t    pid,
420              uint32_t sig_id );
421
422/******************************************************************************************
423 * [35] This function implements the "getpid" system call.
424 ******************************************************************************************
425 * @ returns the process PID for the calling thread.
426 *****************************************************************************************/
427int sys_getpid();
428
429/******************************************************************************************
430 * [36] This function implement the "fork" system call.
431 * The calling process descriptor (parent process), and the associated thread descriptor are
432 * replicated in the same cluster as the calling thread, but the new process (child process)
433 * is registered in another target cluster, that is the new process owner.
434 * The child process and the associated main thread will be migrated to the target cluster
435 * later, when the child process makes an "exec" or any other system call... TODO [AG]
436 * The target cluster depends on the "fork_user" flag and "fork_cxy" variable that can be
437 * stored in the calling thread descriptor by the specific fork_place() system call.
438 * If not, the sys_fork() function makes a query to the DQDT to select the target cluster.
439 ******************************************************************************************
440 * @ if success, returns child process PID to parent, and return O to child.
441 * @ if failure, returns -1 to parent / no child process is created.
442 *****************************************************************************************/
443int sys_fork();
444
445/******************************************************************************************
446 * [37] This function implement the "exec" system call, that creates a new process
447 * descriptor.
448 * It is executed in the client cluster, but the new process descriptor and the main
449 * thread are created in a server cluster, that is generally another cluster.
450 * - if the server_cluster is the client cluster, it calls directly the process_make_exec()
451 *   function to create a new process, and launch a new thread in local cluster.
452 * - if the target_cluster is remote, it calls the rpc_process_exec_client() to execute
453 *   process_signedmake_exec() on the remote cluster.
454 * In both case this function build an exec_info_t structure containing all informations
455 * required to build the new process descriptor and the associated thread.
456 * Finally, the calling process and thread are deleted.
457 ******************************************************************************************
458 * @ filename : string pointer on .elf filename (pointer in user space)
459 * @ argv     : array of strings on process arguments (pointers in user space)
460 * @ envp     : array of strings on environment variables (pointers in user space)
461 * @ returns O if success / returns -1 if failure.
462 *****************************************************************************************/
463int sys_exec( char  * filename,
464              char ** argv,
465              char ** envp );
466
467/******************************************************************************************
468 * [38] This function  returns in the <stat> structure, defined in the "shared_syscalls.h"
469 * file, various informations on the file/directory identified by the <pathname> argument.
470 ******************************************************************************************
471 * @ pathname  : user pointer on file pathname.
472 * @ stat      : user pointer on the stat structure.
473 * @ returns O if success / returns -1 if failure.
474 *****************************************************************************************/
475int sys_stat( const char  * pathname,
476              struct stat * stat );
477
478/******************************************************************************************
479 * [39] This non-standard function is used to activate / desactivate the trace for a thread
480 * identified by the <trdid> and <pid> arguments.
481 * It can be called by any other thread in the same process.
482 ******************************************************************************************
483 * @ operation  : operation type as defined below.
484 * @ pid        : process identifier.
485 * @ trdid      : thread identifier.
486 * @ returns O if success / returns -1 if failure.
487 *****************************************************************************************/
488int sys_trace( uint32_t operation,
489               pid_t    pid, 
490               uint32_t trdid );
491
492/******************************************************************************************
493 * [40] This function returns the hardware platform parameters.
494 ******************************************************************************************
495 * @ x_size   : [out] number of clusters in a row.
496 * @ y_size   : [out] number of clusters in a column.
497 * @ ncores   : [out] number of cores per cluster.
498 * @ return 0 if success / return -1 if illegal arguments
499 *****************************************************************************************/
500int sys_get_config( uint32_t * x_size,
501                    uint32_t * y_size,
502                    uint32_t * ncores );
503
504/******************************************************************************************
505 * [41] This function returns the calling core cluster and local index.
506 ******************************************************************************************
507 * @ cxy      : [out] cluster identifier (fixed format)
508 * @ lid      : [out] core local index in cluster.
509 * @ return 0 if success / return -1 if illegal arguments
510 *****************************************************************************************/
511int sys_get_core( uint32_t * cxy,
512                  uint32_t * lid );
513
514/******************************************************************************************
515 * [42] This function returns in a 64 bits user buffer the calling core cycles count.
516 * It uses both the hardware register and the core descriptor cycles count to take
517 * into account a possible harware register overflow  in 32 bits architectures.
518 ******************************************************************************************
519 * cycle    : [out] address of buffer in user space.
520 * @ return 0 if success / return -1 if illegal arguments
521 *****************************************************************************************/
522int sys_get_cycle( uint64_t * cycle );
523
524/******************************************************************************************
525 * [43] This debug function displays on the kernel terminal the current state of a
526 * scheduler identified by the <cxy> and <lid> arguments.
527 ******************************************************************************************
528 * cxy      : [in] target cluster identifier.
529 * lid      : [in] target core local index.
530 * @ return 0 if success / return -1 if illegal arguments
531 *****************************************************************************************/
532int sys_get_sched( uint32_t  cxy,
533                   uint32_t  lid );
534
535/******************************************************************************************
536 * [44] This debug function requires the kernel to display on the kernel terminal a message
537 * containing the thread / process / core identifiers, and the cause of panic,
538 * as defined by the <string> argument.
539 ******************************************************************************************
540 * string   : [in] message to be displayed.
541 * @ return always 0.
542 *****************************************************************************************/
543int sys_panic( char * string );
544
545/******************************************************************************************
546 * [45] This function block the calling thread on the THREAD_BLOCKED_GLOBAL condition,
547 * and deschedule.
548 ******************************************************************************************
549 * @ return 0 if success / returns -1 if failure.
550 *****************************************************************************************/
551int sys_thread_sleep();
552
553/******************************************************************************************
554 * [46] This function unblock the thread identified by its <trdid> from the
555 * THREAD_BLOCKED_GLOBAL condition.
556 ******************************************************************************************
557 * @ trdid  : target thread identifier.
558 * @ return 0 if success / return -1 if failure.
559 *****************************************************************************************/
560int sys_thread_wakeup();
561
562
563#endif  // _SYSCALLS_H_
Note: See TracBrowser for help on using the repository browser.