minix/lib/syslib
Cristiano Giuffrida 1f5841c8ed Basic System Event Framework (SEF) with ping and live update.
SYSLIB CHANGES:
- SEF must be used by every system process and is thereby part of the system
library.
- The framework provides a receive() interface (sef_receive) for system
processes to automatically catch known system even messages and process them.
- SEF provides a default behavior for each type of system event, but allows
system processes to register callbacks to override the default behavior.
- Custom (local to the process) or predefined (provided by SEF) callback
implementations can be registered to SEF.
- SEF currently includes support for 2 types of system events:
  1. SEF Ping. The event occurs every time RS sends a ping to figure out
  whether a system process is still alive. The default callback implementation
  provided by SEF is to notify RS back to let it know the process is alive
  and kicking.
  2. SEF Live update. The event occurs every time RS sends a prepare to update
  message to let a system process know an update is available and to prepare
  for it. The live update support is very basic for now. SEF only deals with
  verifying if the prepare state can be supported by the process, dumping the
  state for debugging purposes, and providing an event-driven programming
  model to the process to react to state changes check-in when ready to update.
- SEF should be extended in the future to integrate support for more types of
system events. Ideally, all the cross-cutting concerns should be integrated into
SEF to avoid duplicating code and ease extensibility. Examples include:
  * PM notify messages primarily used at shutdown.
  * SYSTEM notify messages primarily used for signals.
  * CLOCK notify messages used for system alarms.
  * Debug messages. IS could still be in charge of fkey handling but would
  forward the debug message to the target process (e.g. PM, if the user
  requested debug information about PM). SEF would then catch the message and
  do nothing unless the process has registered an appropriate callback to
  deal with the event. This simplifies the programming model to print debug
  information, avoids duplicating code, and reduces the effort to print
  debug information.

SYSTEM PROCESSES CHANGES:
- Every system process registers SEF callbacks it needs to override the default
system behavior and calls sef_startup() right after being started.
- sef_startup() does almost nothing now, but will be extended in the future to
support callbacks of its own to let RS control and synchronize with every
system process at initialization time.
- Every system process calls sef_receive() now rather than receive() directly,
to let SEF handle predefined system events.

RS CHANGES:
- RS supports a basic single-component live update protocol now, as follows:
  * When an update command is issued (via "service update *"), RS notifies the
  target system process to prepare for a specific update state.
  * If the process doesn't respond back in time, the update is aborted.
  * When the process responds back, RS kills it and marks it for refreshing.
  * The process is then automatically restarted as for a buggy process and can
  start running again.
  * Live update is currently prototyped as a controlled failure.
2009-12-21 14:12:21 +00:00
..
alloc_util.c Allow servers to run with fewer privileges: 2009-12-02 10:06:58 +00:00
assert.c Added assert to syslib. Moved panic from sysutil to syslib for assert. 2006-03-15 12:06:18 +00:00
ds.c only assign value if request went ok. 2009-02-19 17:14:36 +00:00
Makefile.in Basic System Event Framework (SEF) with ping and live update. 2009-12-21 14:12:21 +00:00
panic.c Fix warning in panic 2009-08-17 17:56:34 +00:00
pci.h Moved PCI driver to the ramdisk. 2006-02-15 14:21:56 +00:00
pci_attr_r8.c . clarify panic messages in syslib about pci 2007-07-11 13:38:13 +00:00
pci_attr_r16.c . clarify panic messages in syslib about pci 2007-07-11 13:38:13 +00:00
pci_attr_r32.c . clarify panic messages in syslib about pci 2007-07-11 13:38:13 +00:00
pci_attr_w8.c . clarify panic messages in syslib about pci 2007-07-11 13:38:13 +00:00
pci_attr_w16.c . clarify panic messages in syslib about pci 2007-07-11 13:38:13 +00:00
pci_attr_w32.c . clarify panic messages in syslib about pci 2007-07-11 13:38:13 +00:00
pci_del_acl.c endpoint_t in syslib 2009-09-22 21:42:02 +00:00
pci_dev_name.c Add lspci command and SI_PCI_INFO getsysinfo call 2009-10-09 10:48:46 +00:00
pci_find_dev.c . clarify panic messages in syslib about pci 2007-07-11 13:38:13 +00:00
pci_first_dev.c . clarify panic messages in syslib about pci 2007-07-11 13:38:13 +00:00
pci_ids.c . clarify panic messages in syslib about pci 2007-07-11 13:38:13 +00:00
pci_init.c Added pci_init1.c, pci_attr_r16.c, pci_attr_w8.c, pci_attr_w16.c, 2006-01-12 14:37:37 +00:00
pci_init1.c Fixed some warnings 2009-08-17 18:48:27 +00:00
pci_next_dev.c . clarify panic messages in syslib about pci 2007-07-11 13:38:13 +00:00
pci_rescan_bus.c . clarify panic messages in syslib about pci 2007-07-11 13:38:13 +00:00
pci_reserve.c . clarify panic messages in syslib about pci 2007-07-11 13:38:13 +00:00
pci_set_acl.c . clarify panic messages in syslib about pci 2007-07-11 13:38:13 +00:00
pci_slot_name.c . clarify panic messages in syslib about pci 2007-07-11 13:38:13 +00:00
safecopies.c Basic VM and other minor improvements. 2008-11-19 12:26:10 +00:00
sef.c Basic System Event Framework (SEF) with ping and live update. 2009-12-21 14:12:21 +00:00
sef_liveupdate.c Basic System Event Framework (SEF) with ping and live update. 2009-12-21 14:12:21 +00:00
sef_ping.c Basic System Event Framework (SEF) with ping and live update. 2009-12-21 14:12:21 +00:00
sys_abort.c Removal of the executable flag from files that cannot be executed 2009-11-09 10:26:00 +00:00
sys_cprof.c endpoint_t in syslib 2009-09-22 21:42:02 +00:00
sys_endsig.c Removal of the executable flag from files that cannot be executed 2009-11-09 10:26:00 +00:00
sys_eniop.c endpoint_t in syslib 2009-09-22 21:42:02 +00:00
sys_exec.c Removal of the executable flag from files that cannot be executed 2009-11-09 10:26:00 +00:00
sys_exit.c endpoint_t in syslib 2009-09-22 21:42:02 +00:00
sys_fork.c Removal of the executable flag from files that cannot be executed 2009-11-09 10:26:00 +00:00
sys_getinfo.c Basic VM and other minor improvements. 2008-11-19 12:26:10 +00:00
sys_getsig.c endpoint_t in syslib 2009-09-22 21:42:02 +00:00
sys_in.c . removed const from putenv() for g++ 2006-06-20 08:45:04 +00:00
sys_int86.c bios_wini driver 2005-07-29 10:21:04 +00:00
sys_irqctl.c *** empty log message *** 2005-05-02 14:30:04 +00:00
sys_kill.c Removal of the executable flag from files that cannot be executed 2009-11-09 10:26:00 +00:00
sys_mapdma.c adddma/deldma/getdma/sys_mapdma 2008-02-21 16:02:22 +00:00
sys_memset.c Updates system library calls: interface changes (removed unused parameters). 2005-07-29 15:01:59 +00:00
sys_newmap.c Removal of the executable flag from files that cannot be executed 2009-11-09 10:26:00 +00:00
sys_nice.c Removal of the executable flag from files that cannot be executed 2009-11-09 10:26:00 +00:00
sys_out.c . removed const from putenv() for g++ 2006-06-20 08:45:04 +00:00
sys_physcopy.c endpoint_t in syslib 2009-09-22 21:42:02 +00:00
sys_privctl.c - enable remembering of device memory ranges set by PCI and 2009-11-03 11:12:23 +00:00
sys_profbuf.c cprofile always on 2009-01-09 21:42:36 +00:00
sys_readbios.c Added sys_readbios. 2006-07-10 12:17:16 +00:00
sys_runctl.c PM delay call infrastructure improvements 2009-10-01 10:36:09 +00:00
sys_safecopy.c . removed const from putenv() for g++ 2006-06-20 08:45:04 +00:00
sys_sdevio.c . removed const from putenv() for g++ 2006-06-20 08:45:04 +00:00
sys_segctl.c *** empty log message *** 2005-04-29 15:36:43 +00:00
sys_setalarm.c Updates system library calls: interface changes (removed unused parameters). 2005-07-29 15:01:59 +00:00
sys_setgrant.c Rename paramctl to setgrant. 2006-06-23 15:35:05 +00:00
sys_sigreturn.c Removal of the executable flag from files that cannot be executed 2009-11-09 10:26:00 +00:00
sys_sigsend.c endpoint_t in syslib 2009-09-22 21:42:02 +00:00
sys_sprof.c endpoint_t in syslib 2009-09-22 21:42:02 +00:00
sys_stime.c Removal of the executable flag from files that cannot be executed 2009-11-09 10:26:00 +00:00
sys_sysctl.c moved stacktrace to sysctl, as vmctl is very privileged so can't 2009-01-27 12:54:33 +00:00
sys_times.c Rewrite of boot process 2009-12-11 00:08:19 +00:00
sys_trace.c Removal of the executable flag from files that cannot be executed 2009-11-09 10:26:00 +00:00
sys_umap.c endpoint_t in syslib 2009-09-22 21:42:02 +00:00
sys_vinb.c . removed const from putenv() for g++ 2006-06-20 08:45:04 +00:00
sys_vinl.c . removed const from putenv() for g++ 2006-06-20 08:45:04 +00:00
sys_vinw.c . removed const from putenv() for g++ 2006-06-20 08:45:04 +00:00
sys_vircopy.c endpoint_t in syslib 2009-09-22 21:42:02 +00:00
sys_vmctl.c allow kernel to tell VM extra physical addresses it wants mapped in. 2009-11-11 12:07:06 +00:00
sys_voutb.c . removed const from putenv() for g++ 2006-06-20 08:45:04 +00:00
sys_voutl.c . removed const from putenv() for g++ 2006-06-20 08:45:04 +00:00
sys_voutw.c . removed const from putenv() for g++ 2006-06-20 08:45:04 +00:00
sys_vsafecopy.c fix some compiler warnings. 2007-04-02 15:10:07 +00:00
sys_vtimer.c Support for setitimer(ITIMER_VIRTUAL/ITIMER_PROF). New test (41) for setitimer. 2009-08-15 21:37:26 +00:00
syslib.h Removal of the executable flag from files that cannot be executed 2009-11-09 10:26:00 +00:00
taskcall.c Removal of the executable flag from files that cannot be executed 2009-11-09 10:26:00 +00:00
vm_allocmem.c fix compiler warning 2009-10-05 16:40:21 +00:00
vm_brk.c Basic VM and other minor improvements. 2008-11-19 12:26:10 +00:00
vm_ctl.c vm stubs; no more sys_vm_setbuf 2009-09-21 14:42:58 +00:00
vm_exec_newmem.c Basic VM and other minor improvements. 2008-11-19 12:26:10 +00:00
vm_exit.c Basic VM and other minor improvements. 2008-11-19 12:26:10 +00:00
vm_fork.c Merge of David's ptrace branch. Summary: 2009-09-30 09:57:22 +00:00
vm_map_phys.c Fixed some warnings 2009-08-17 18:48:27 +00:00
vm_notify_sig.c vm stubs; no more sys_vm_setbuf 2009-09-21 14:42:58 +00:00
vm_push_sig.c Basic VM and other minor improvements. 2008-11-19 12:26:10 +00:00
vm_umap.c fix compiler warnings using dubious casts. 2009-10-05 16:41:28 +00:00