
Most of the nodes in the general sysctl tree will be managed directly by the MIB service, which obtains the necessary information as needed. However, in certain cases, it makes more sense to let another service manage a part of the sysctl tree itself, in order to avoid replicating part of that other service in the MIB service. This patch adds the basic support for such delegation: remote services may now register their own subtrees within the full sysctl tree with the MIB service, which will then forward any sysctl(2) requests on such subtrees to the remote services. The system works much like mounting a file system, but in addition to support for shadowing an existing node, the MIB service also supports creating temporary mount point nodes. Each have their own use cases. A remote "kern.ipc" would use the former, because even when such a subtree were not mounted, userland would still expect some of its children to exist and return default values. A remote "net.inet" would use the latter, as there is no reason to precreate nodes for all possible supported networking protocols in the MIB "net" subtree. A standard remote MIB (RMIB) implementation is provided for services that wish to make use of this functionality. It is essentially a simplified and somewhat more lightweight version of the MIB service's internals, and works more or less the same from a programmer's point of view. The most important difference is the "rmib" prefix instead of the "mib" prefix. Documentation will hopefully follow later. Overall, the RMIB functionality should not be used lightly, for several reasons. First, despite being more lightweight than the MIB service, the RMIB module still adds substantially to the code footprint of the containing service. Second, the RMIB protocol not only adds extra IPC for sysctl(2), but has also not been optimized for performance in other ways. Third, and most importantly, the RMIB implementation also several limitations. The main limitation is that remote MIB subtrees must be fully static. Not only may the user not create or destroy nodes, the service itself may not either, as this would clash with the simplified remote node versioning system and the cached subtree root node child counts. Other limitations exist, such as the fact that the root of a remote subtree may only be a node-type node, and a stricter limit on the highest node identifier of any child in this subtree root (currently 4095). The current implementation was born out of necessity, and therefore it leaves several improvements to future work. Most importantly, support for exit and crash notification is missing, primarily in the MIB service. This means that remote subtrees may not be cleaned up immediately, but instead only when the MIB service attempts to talk to the dead remote service. In addition, if the MIB service itself crashes, re-registration of remote subtrees is currently left up to the individual RMIB users. Finally, the MIB service uses synchronous (sendrec-based) calls to the remote services, which while convenient may cause cascading service hangs. The underlying protocol is ready for conversion to an asynchronous implementation already, though. A new test set, testrmib.sh, tests the basic RMIB functionality. To this end it uses a test service, rmibtest, and also reuses part of the existing test87 MIB service test. Change-Id: I3378fe04f2e090ab231705bde7e13d6289a9183e
148 lines
2.2 KiB
Makefile
148 lines
2.2 KiB
Makefile
# Makefile for libsys
|
|
.include <bsd.own.mk>
|
|
|
|
CPPFLAGS+= -D_MINIX_SYSTEM -D_SYSTEM
|
|
|
|
LIB= sys
|
|
|
|
CFLAGS+= -fno-builtin
|
|
|
|
.include "arch/${MACHINE_ARCH}/Makefile.inc"
|
|
|
|
SRCS+= \
|
|
alloc_util.c \
|
|
assert.c \
|
|
asynsend.c \
|
|
checkperms.c \
|
|
clock_time.c \
|
|
copyfd.c \
|
|
cpuavg.c \
|
|
ds.c \
|
|
env_get_prm.c \
|
|
env_panic.c \
|
|
env_parse.c \
|
|
env_prefix.c \
|
|
fkey_ctl.c \
|
|
getepinfo.c \
|
|
getprocnr.c \
|
|
getticks.c \
|
|
getsysinfo.c \
|
|
getuptime.c \
|
|
kernel_call.c \
|
|
kprintf.c \
|
|
kputc.c \
|
|
kputs.c \
|
|
mapdriver.c \
|
|
optset.c \
|
|
panic.c \
|
|
proceventmask.c \
|
|
rmib.c \
|
|
safecopies.c \
|
|
sched_start.c \
|
|
sched_stop.c \
|
|
sef.c \
|
|
sef_fi.c \
|
|
sef_init.c \
|
|
sef_liveupdate.c \
|
|
sef_llvm.c \
|
|
sef_ping.c \
|
|
sef_signal.c \
|
|
sef_st.c \
|
|
sqrt_approx.c \
|
|
srv_fork.c \
|
|
srv_kill.c \
|
|
stacktrace.c \
|
|
sys_abort.c \
|
|
sys_clear.c \
|
|
sys_diagctl.c \
|
|
sys_endsig.c \
|
|
sys_exec.c \
|
|
sys_exit.c \
|
|
sys_fork.c \
|
|
sys_getinfo.c \
|
|
sys_getsig.c \
|
|
sys_hz.c \
|
|
sys_irqctl.c \
|
|
sys_kill.c \
|
|
sys_mcontext.c \
|
|
sys_memset.c \
|
|
sys_padconf.c \
|
|
sys_physcopy.c \
|
|
sys_privctl.c \
|
|
sys_runctl.c \
|
|
sys_safecopy.c \
|
|
sys_safememset.c \
|
|
sys_schedctl.c \
|
|
sys_schedule.c \
|
|
sys_setalarm.c \
|
|
sys_setgrant.c \
|
|
sys_settime.c \
|
|
sys_sigreturn.c \
|
|
sys_sigsend.c \
|
|
sys_sprof.c \
|
|
sys_statectl.c \
|
|
sys_stime.c \
|
|
sys_times.c \
|
|
sys_trace.c \
|
|
sys_umap.c \
|
|
sys_update.c \
|
|
sys_vircopy.c \
|
|
sys_vmctl.c \
|
|
sys_vsafecopy.c \
|
|
sys_vtimer.c \
|
|
sys_vumap.c \
|
|
taskcall.c \
|
|
tickdelay.c \
|
|
timers.c \
|
|
vm_cache.c \
|
|
vm_exit.c \
|
|
vm_fork.c \
|
|
vm_getrusage.c \
|
|
vm_info.c \
|
|
vm_map_phys.c \
|
|
vm_memctl.c \
|
|
vm_prepare.c \
|
|
vm_procctl.c \
|
|
vm_set_priv.c \
|
|
vm_update.c
|
|
|
|
.if ${MKPCI} != "no"
|
|
SRCS+= pci_attr_r16.c \
|
|
pci_attr_r32.c \
|
|
pci_attr_r8.c \
|
|
pci_attr_w16.c \
|
|
pci_attr_w32.c \
|
|
pci_attr_w8.c \
|
|
pci_del_acl.c \
|
|
pci_dev_name.c \
|
|
pci_find_dev.c \
|
|
pci_first_dev.c \
|
|
pci_get_bar.c \
|
|
pci_ids.c \
|
|
pci_init.c \
|
|
pci_next_dev.c \
|
|
pci_rescan_bus.c \
|
|
pci_reserve.c \
|
|
pci_set_acl.c \
|
|
pci_slot_name.c
|
|
.endif
|
|
|
|
.if ${MKCOVERAGE} != "no"
|
|
SRCS+= gcov.c \
|
|
sef_gcov.c
|
|
CPPFLAGS+= -DUSE_COVERAGE
|
|
.endif
|
|
|
|
.if ${USE_LIVEUPDATE} != "no"
|
|
CPPFLAGS+= -DUSE_LIVEUPDATE
|
|
.endif
|
|
|
|
.if ${USE_SYSDEBUG} != "no"
|
|
CPPFLAGS+= -DUSE_SYSDEBUG
|
|
.endif
|
|
|
|
CPPFLAGS.sched_start.c+= -I${NETBSDSRCDIR}/minix
|
|
CPPFLAGS.sef_st.c+= -I${NETBSDSRCDIR}/minix
|
|
|
|
.include <bsd.lib.mk>
|