1
0
Fork 0
mirror of https://github.com/pygos/init.git synced 2024-06-29 14:30:15 +02:00
init/lib/include/service.h
David Oberhollenzer 87a524d931 cleanup: delete remains of libutil
- exec_t belongs to service.h, the main place where it is used/needed
 - code for executing exec_t is moved to runsvc for the same reason
 - what is left are NORETURN and ARRAY_SIZE
   - the former can be replaced with direct attribute usage since
     the only relevant compilers all support the attribute.
   - the later is only used in 3 places and can be trivially replaced
     with direct usage of sizeof().

Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
2020-03-31 18:19:27 +02:00

119 lines
2.7 KiB
C

/* SPDX-License-Identifier: ISC */
#ifndef SERVICE_H
#define SERVICE_H
#include <sys/types.h>
typedef struct exec_t {
struct exec_t *next;
int argc; /* number of elements in argument vector */
char args[]; /* argument vectot string blob */
} exec_t;
enum {
/*
Start the service in the background and continue with
other services. The service will eventually terminate.
*/
SVC_ONCE = 0,
SVC_WAIT, /* run service and wait until it finishes */
/*
Similar to SVC_ONCE, but restart the service when
it terminates.
*/
SVC_RESPAWN,
SVC_MAX
};
enum {
TGT_BOOT = 0, /* run service when the system boots */
TGT_SHUTDOWN, /* run service when at system shut down */
TGT_REBOOT, /* run service when during system reboot */
TGT_MAX
};
enum {
RDSVC_NO_FNAME = 0x01, /* do not store a copy of the filename */
RDSVC_NO_EXEC = 0x02, /* do not store executable script */
RDSVC_NO_CTTY = 0x04, /* do not store the controlling tty */
RDSVC_NO_DEPS = 0x08, /* do not store dependencies */
RDSVC_NO_DESC = 0x10, /* do not store description */
};
enum {
/* truncate stdout */
SVC_FLAG_TRUNCATE_OUT = 0x01,
SVC_FLAG_HAS_EXEC = 0x10,
SVC_FLAG_ADMIN_STOPPED = 0x20,
};
typedef struct service_t {
struct service_t *next;
char *fname; /* source file name */
int type; /* SVC_* service type */
int target; /* TGT_* service target */
char *desc; /* description string */
char *ctty; /* controlling tty or log file */
int rspwn_limit; /* maximum respawn count */
int rspwn_count; /* services respawn counter */
unsigned int flags; /* SVC_FLAG_* bit field */
/* linked list of command lines to execute */
exec_t *exec;
char *before; /* services that must be executed later */
char *after; /* services that must be executed first */
int num_before;
int num_after;
pid_t pid;
int status; /* process exit status */
int id; /* service ID used by initd */
char name[]; /* canonical service name */
} service_t;
typedef struct {
service_t *targets[TGT_MAX];
} service_list_t;
/*
Read a service from a file.
*/
service_t *rdsvc(int dirfd, const char *filename, int flags);
void delsvc(service_t *svc);
/*
Rebuild a service list by scanning a directory and parsing all
service descriptions.
Returns 0 on success, -1 on failure. The function takes care of
printing error messages on failure.
*/
int svcscan(const char *directory, service_list_t *list, int flags);
void del_svc_list(service_list_t *list);
/*
Sort a list of services by dependencies.
*/
service_t *svc_tsort(service_t *list);
const char *svc_type_to_string(int type);
int svc_type_from_string(const char *type);
const char *svc_target_to_string(int target);
int svc_target_from_string(const char *target);
#endif /* SERVICE_H */