Main index | Section 3 | Options |
#include <sys/nv.h>
#include <libcasper.h>
The application capability (represented by the cap_channel_t type) is a communication channel between the caller and the casper process daemon or an instance of one of its services. A capability to the casper process obtained with the cap_init() function allows to create capabilities to casper's services via the cap_service_open() function.
The cap_init() function opens capability to the casper process.
The cap_wrap() function creates cap_channel_t based on the given socket. The function is used when capability is inherited through execve(2) or send over unix(4) domain socket as a regular file descriptor and has to be represented as cap_channel_t again. The flags argument defines the channel behavior. The supported flags are:
CASPER_NO_UNIQ | The communication between process and casper uses no unique version of nvlist. |
The cap_unwrap() function is the opposite of the cap_wrap() function. It frees the cap_channel_t structure and returns unix(4) domain socket associated with it.
The cap_clone() function clones the given capability.
The cap_close() function closes the given capability.
The cap_sock() function returns unix(4) domain socket descriptor associated with the given capability for use with system calls like kevent(2), poll(2) and select(2).
The cap_limit_get() function stores current limits of the given capability in the limitsp argument. If the function return 0 and NULL is stored in limitsp it means there are no limits set.
The cap_limit_set() function sets limits for the given capability. The limits are provided as a nvlist(9). The exact format depends on the service the capability represents. cap_limit_set() frees the limits regardless of whether the operation succeeds or fails.
The cap_send_nvlist() function sends the given nvlist(9) over the given capability. This is low level interface to communicate with casper services. Most services should provide higher level API.
The cap_recv_nvlist() function receives the given nvlist(9) over the given capability.
The cap_xfer_nvlist() function sends the given nvlist(9), destroys it and receives new nvlist(9) in response over the given capability. It does not matter if the function succeeds or fails, the nvlist(9) given for sending will always be destroyed once the function returns.
The cap_service_open() function opens casper service of the given name through casper capability obtained via the cap_init() function. The function returns capability that provides access to opened service. Casper supports the following services in the base system:
system.dns | provides DNS libc compatible API |
system.grp | provides getgrent(3) compatible API |
system.pwd | provides getpwent(3) compatible API |
system.random | |
allows to obtain entropy from /dev/random | |
system.sysctl | |
provides sysctlbyname(3) compatible API | |
system.syslog | |
provides syslog(3) compatible API | |
The cap_limit_get(), cap_limit_set() and cap_send_nvlist() functions return -1 and set the errno variable on failure.
The cap_close(), cap_sock() and cap_unwrap() functions always succeed.
LIBCASPER (3) | May 5, 2020 |
Main index | Section 3 | Options |
Please direct any comments about this manual page service to Ben Bullock. Privacy policy.