diff options
| author | Laurent Bercot <ska-skaware@skarnet.org> | 2025-06-18 15:50:50 +0000 |
|---|---|---|
| committer | Laurent Bercot <ska@appnovation.com> | 2025-06-18 15:50:50 +0000 |
| commit | 4fca7a92b9eeaba9c327ca8b257b224c5c03e79b (patch) | |
| tree | ac1cfe138b00bcc9ad8e6c806ca37109a42f3f54 /src/libs6rc/s6rc_live_state_read.c | |
| parent | 04cf7b22ae8b071287f70579a712d4fa17c3dabb (diff) | |
| download | s6-rc-4fca7a92b9eeaba9c327ca8b257b224c5c03e79b.tar.gz | |
Add s6rc_live_state functions
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/libs6rc/s6rc_live_state_read.c')
| -rw-r--r-- | src/libs6rc/s6rc_live_state_read.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/libs6rc/s6rc_live_state_read.c b/src/libs6rc/s6rc_live_state_read.c new file mode 100644 index 0000000..592d08b --- /dev/null +++ b/src/libs6rc/s6rc_live_state_read.c @@ -0,0 +1,23 @@ +/* ISC license. */ + +#include <stdint.h> +#include <string.h> +#include <errno.h> + +#include <skalibs/djbunix.h> + +#include <s6-rc/s6rc-db.h> +#include <s6-rc/s6rc-utils.h> + +int s6rc_live_state_read (char const *live, unsigned char *state, uint32_t n) +{ + size_t livelen = strlen(live) ; + char fn[livelen + 7] ; + memcpy(fn, live, livelen) ; + memcpy(fn + livelen, "/state", n) ; + ssize_t r = openreadnclose(fn, (char *)state, n) ; + if (r == -1) return 0 ; + if (r < n) return (errno = EINVAL, 0) ; + for (uint32_t i = 0 ; i < n ; i++) state[i] &= 1 ; + return 1 ; +} |
