
UPDATING INFO: 20100317: /usr/src/etc/system.conf updated to ignore default kernel calls: copy it (or merge it) to /etc/system.conf. The hello driver (/dev/hello) added to the distribution: # cd /usr/src/commands/scripts && make clean install # cd /dev && MAKEDEV hello KERNEL CHANGES: - Generic signal handling support. The kernel no longer assumes PM as a signal manager for every process. The signal manager of a given process can now be specified in its privilege slot. When a signal has to be delivered, the kernel performs the lookup and forwards the signal to the appropriate signal manager. PM is the default signal manager for user processes, RS is the default signal manager for system processes. To enable ptrace()ing for system processes, it is sufficient to change the default signal manager to PM. This will temporarily disable crash recovery, though. - sys_exit() is now split into sys_exit() (i.e. exit() for system processes, which generates a self-termination signal), and sys_clear() (i.e. used by PM to ask the kernel to clear a process slot when a process exits). - Added a new kernel call (i.e. sys_update()) to swap two process slots and implement live update. PM CHANGES: - Posix signal handling is no longer allowed for system processes. System signals are split into two fixed categories: termination and non-termination signals. When a non-termination signaled is processed, PM transforms the signal into an IPC message and delivers the message to the system process. When a termination signal is processed, PM terminates the process. - PM no longer assumes itself as the signal manager for system processes. It now makes sure that every system signal goes through the kernel before being actually processes. The kernel will then dispatch the signal to the appropriate signal manager which may or may not be PM. SYSLIB CHANGES: - Simplified SEF init and LU callbacks. - Added additional predefined SEF callbacks to debug crash recovery and live update. - Fixed a temporary ack in the SEF init protocol. SEF init reply is now completely synchronous. - Added SEF signal event type to provide a uniform interface for system processes to deal with signals. A sef_cb_signal_handler() callback is available for system processes to handle every received signal. A sef_cb_signal_manager() callback is used by signal managers to process system signals on behalf of the kernel. - Fixed a few bugs with memory mapping and DS. VM CHANGES: - Page faults and memory requests coming from the kernel are now implemented using signals. - Added a new VM call to swap two process slots and implement live update. - The call is used by RS at update time and in turn invokes the kernel call sys_update(). RS CHANGES: - RS has been reworked with a better functional decomposition. - Better kernel call masks. com.h now defines the set of very basic kernel calls every system service is allowed to use. This makes system.conf simpler and easier to maintain. In addition, this guarantees a higher level of isolation for system libraries that use one or more kernel calls internally (e.g. printf). - RS is the default signal manager for system processes. By default, RS intercepts every signal delivered to every system process. This makes crash recovery possible before bringing PM and friends in the loop. - RS now supports fast rollback when something goes wrong while initializing the new version during a live update. - Live update is now implemented by keeping the two versions side-by-side and swapping the process slots when the old version is ready to update. - Crash recovery is now implemented by keeping the two versions side-by-side and cleaning up the old version only when the recovery process is complete. DS CHANGES: - Fixed a bug when the process doing ds_publish() or ds_delete() is not known by DS. - Fixed the completely broken support for strings. String publishing is now implemented in the system library and simply wraps publishing of memory ranges. Ideally, we should adopt a similar approach for other data types as well. - Test suite fixed. DRIVER CHANGES: - The hello driver has been added to the Minix distribution to demonstrate basic live update and crash recovery functionalities. - Other drivers have been adapted to conform the new SEF interface.
118 lines
3.1 KiB
C
118 lines
3.1 KiB
C
#define NCALLS 112 /* number of system calls allowed */
|
|
|
|
#define EXIT 1
|
|
#define FORK 2
|
|
#define READ 3
|
|
#define WRITE 4
|
|
#define OPEN 5
|
|
#define CLOSE 6
|
|
#define WAIT 7
|
|
#define CREAT 8
|
|
#define LINK 9
|
|
#define UNLINK 10
|
|
#define WAITPID 11
|
|
#define CHDIR 12
|
|
#define TIME 13
|
|
#define MKNOD 14
|
|
#define CHMOD 15
|
|
#define CHOWN 16
|
|
#define BRK 17
|
|
#define STAT 18
|
|
#define LSEEK 19
|
|
#define MINIX_GETPID 20
|
|
#define MOUNT 21
|
|
#define UMOUNT 22
|
|
#define SETUID 23
|
|
#define GETUID 24
|
|
#define STIME 25
|
|
#define PTRACE 26
|
|
#define ALARM 27
|
|
#define FSTAT 28
|
|
#define PAUSE 29
|
|
#define UTIME 30
|
|
#define ACCESS 33
|
|
#define SYNC 36
|
|
#define KILL 37
|
|
#define RENAME 38
|
|
#define MKDIR 39
|
|
#define RMDIR 40
|
|
#define DUP 41
|
|
#define PIPE 42
|
|
#define TIMES 43
|
|
#define SYMLINK 45
|
|
#define SETGID 46
|
|
#define GETGID 47
|
|
#define SIGNAL 48
|
|
#define RDLNK 49
|
|
#define LSTAT 50
|
|
#define IOCTL 54
|
|
#define FCNTL 55
|
|
#define FS_READY 57
|
|
#define EXEC 59
|
|
#define UMASK 60
|
|
#define CHROOT 61
|
|
#define SETSID 62
|
|
#define GETPGRP 63
|
|
#define ITIMER 64
|
|
#define GETGROUPS 65
|
|
#define SETGROUPS 66
|
|
#define GETMCONTEXT 67
|
|
#define SETMCONTEXT 68
|
|
|
|
/* Posix signal handling. */
|
|
#define SIGACTION 71
|
|
#define SIGSUSPEND 72
|
|
#define SIGPENDING 73
|
|
#define SIGPROCMASK 74
|
|
#define SIGRETURN 75
|
|
|
|
#define REBOOT 76
|
|
#define SVRCTL 77
|
|
#define SYSUNAME 78
|
|
#define GETSYSINFO 79 /* to PM or FS */
|
|
#define GETDENTS 80 /* to FS */
|
|
#define LLSEEK 81 /* to FS */
|
|
#define FSTATFS 82 /* to FS */
|
|
#define SELECT 85 /* to FS */
|
|
#define FCHDIR 86 /* to FS */
|
|
#define FSYNC 87 /* to FS */
|
|
#define GETPRIORITY 88 /* to PM */
|
|
#define SETPRIORITY 89 /* to PM */
|
|
#define GETTIMEOFDAY 90 /* to PM */
|
|
#define SETEUID 91 /* to PM */
|
|
#define SETEGID 92 /* to PM */
|
|
#define TRUNCATE 93 /* to FS */
|
|
#define FTRUNCATE 94 /* to FS */
|
|
#define FCHMOD 95 /* to FS */
|
|
#define FCHOWN 96 /* to FS */
|
|
#define GETSYSINFO_UP 97 /* to PM or FS */
|
|
#define SPROF 98 /* to PM */
|
|
#define CPROF 99 /* to PM */
|
|
|
|
/* Calls provided by PM and FS that are not part of the API */
|
|
#define EXEC_NEWMEM 100 /* from FS or RS to PM: new memory map for
|
|
* exec
|
|
*/
|
|
#define SRV_FORK 101 /* to PM: special fork call for RS */
|
|
#define EXEC_RESTART 102 /* to PM: final part of exec for RS */
|
|
#define PROCSTAT 103 /* to PM */
|
|
#define GETPROCNR 104 /* to PM */
|
|
|
|
#define GETEPINFO 107 /* to PM: get pid/uid/gid of an endpoint */
|
|
#define ADDDMA 108 /* to PM: inform PM about a region of memory
|
|
* that is used for bus-master DMA
|
|
*/
|
|
#define DELDMA 109 /* to PM: inform PM that a region of memory
|
|
* that is no longer used for bus-master DMA
|
|
*/
|
|
#define GETDMA 110 /* to PM: ask PM for a region of memory
|
|
* that should not be used for bus-master DMA
|
|
* any longer
|
|
*/
|
|
#define SRV_KILL 111 /* to PM: special kill call for RS */
|
|
|
|
#define TASK_REPLY 121 /* to FS: reply code from drivers, not
|
|
* really a standalone call.
|
|
*/
|
|
#define MAPDRIVER 122 /* to FS, map a device */
|