Crinit -- Configurable Rootfs Init
Loading...
Searching...
No Matches
task.h
Go to the documentation of this file.
1// SPDX-License-Identifier: MIT
6#ifndef __TASK_H__
7#define __TASK_H__
8
9#include <sys/types.h>
10#include <time.h>
11
12#include "confparse.h"
13#include "crinit-sdefs.h"
14#include "envset.h"
15#include "ioredir.h"
16
18typedef unsigned long crinitTaskOpts_t;
20#define CRINIT_TASK_OPT_RESPAWN (1 << 0)
22#define CRINIT_TASK_OPT_RESPAWN_DEFAULT false
23
25#define CRINIT_TASK_EVENT_RUNNING "spawn"
27#define CRINIT_TASK_EVENT_DONE "wait"
29#define CRINIT_TASK_EVENT_FAILED "fail"
31#define CRINIT_TASK_EVENT_NOTIFY_SUFFIX "-notified"
32
40
49
53typedef struct crinitTaskCmd_t {
54 int argc;
55 char **argv;
57
61typedef struct crinitTaskDep_t {
62 char *name;
63 char *event;
65
73
108
115#define crinitTaskForEachDep(task, dep) for ((dep) = (task)->deps; (dep) != (task)->deps + (task)->depsSize; (dep)++)
116
129
138
145
157int crinitTaskDup(crinitTask_t **out, const crinitTask_t *orig);
158
167int crinitTaskCopy(crinitTask_t *out, const crinitTask_t *orig);
168
183int crinitTaskMergeInclude(crinitTask_t *tgt, const char *src, char *importList);
184
185#endif /* __TASK_H__ */
Header related to the Config Parser.
Definitions shared between crinit's public and internal APIs.
unsigned long crinitTaskState_t
Type to store Task state bitmask.
Definition crinit-sdefs.h:14
Header defining data types and functions to work with sets of environment variables.
Header related to IO redirection types and functions.
Definition confparse.h:160
Definition envset.h:25
Definition ioredir.h:14
Definition task.h:53
int argc
Number of arguments within argv.
Definition task.h:54
char ** argv
String array containing the program arguments, argv[0] contains absolute path to executable.
Definition task.h:55
Definition task.h:61
char * event
Dependency event.
Definition task.h:63
char * name
Dependency name.
Definition task.h:62
Definition task.h:69
char * name
Name of the provided feature.
Definition task.h:70
crinitTaskState_t stateReq
The task state required to be reached to provide the feature.
Definition task.h:71
Definition task.h:77
size_t stopCmdsSize
Number of commands in stopCmds array.
Definition task.h:82
crinitTaskPrv_t * prv
Dynamic array of provided features, corresponds to PROVIDES in the config file.
Definition task.h:87
gid_t * supGroups
Dynamic array of supplementary group IDs.
Definition task.h:103
crinitEnvSet_t elosFilters
Elos filter definitions valid for use in dependencies of this task.
Definition task.h:84
gid_t group
The group id to run the task's commands with.
Definition task.h:102
int failCount
Definition task.h:96
uid_t user
The user id to run the task's commands with.
Definition task.h:101
int maxRetries
Definition task.h:94
char * name
Name of the task, corresponds to NAME in the config file.
Definition task.h:78
crinitTaskCmd_t * cmds
Dynamic array of commands, corresponds to COMMAND[N] in the config file.
Definition task.h:79
size_t redirsSize
Number of IO redirections.
Definition task.h:93
char * username
The username to run the task's commands with.
Definition task.h:105
size_t depsSize
Number of dependencies in deps array.
Definition task.h:86
char * groupname
The groupname to run the task's commands with.
Definition task.h:106
struct timespec startTime
The time the task last became 'running'.
Definition task.h:99
size_t supGroupsSize
Number of supplementary group IDs in supGroups.
Definition task.h:104
size_t prvSize
Number of provided features in prv array.
Definition task.h:88
size_t cmdsSize
Number of commands in cmds array.
Definition task.h:80
crinitIoRedir_t * redirs
IO redirection descriptions.
Definition task.h:92
crinitEnvSet_t taskEnv
Environment variables valid for each COMMAND in this task.
Definition task.h:83
crinitTaskOpts_t opts
Task options.
Definition task.h:89
struct timespec createTime
The time the task was created (i.e. has been loaded and parsed).
Definition task.h:98
pid_t pid
PID of currently running process subordinate to the task, if any.
Definition task.h:91
crinitTaskState_t state
Task state.
Definition task.h:90
crinitTaskCmd_t * stopCmds
Dynamic array of commands, corresponds to STOP_COMMAND[N] in the config file.
Definition task.h:81
crinitTaskDep_t * deps
Dynamic array of dependencies, corresponds to DEPENDS in the config file.
Definition task.h:85
struct timespec endTime
The time the task last became 'done' or 'failed.
Definition task.h:100
int crinitTaskCopy(crinitTask_t *out, const crinitTask_t *orig)
Definition task.c:98
void crinitDestroyTask(crinitTask_t *t)
Definition task.c:263
crinitTaskTimestampType_t
Definition task.h:44
@ CRINIT_TASK_TS_END
End timestamp, i.e. the last time the task either failed or was completed.
Definition task.h:47
@ CRINIT_TASK_TS_CREATION
Creation timestamp, i.e. when the task was done loading/parsing.
Definition task.h:45
@ CRINIT_TASK_TS_START
Start timestamp, i.e. when the first command of the task was last started.
Definition task.h:46
unsigned long crinitTaskOpts_t
Definition task.h:18
crinitTaskType_t
Definition task.h:36
@ CRINIT_TASK_TYPE_INCLUDE
An in-memory representation of an include file after parsing.
Definition task.h:38
@ CRINIT_TASK_TYPE_STANDARD
A standard in-memory representation of a task.
Definition task.h:37
void crinitFreeTask(crinitTask_t *t)
Definition task.c:255
int crinitTaskCreateFromConfKvList(crinitTask_t **out, const crinitConfKvList_t *in)
Definition task.c:43
int crinitTaskMergeInclude(crinitTask_t *tgt, const char *src, char *importList)
Definition task.c:303
int crinitTaskDup(crinitTask_t **out, const crinitTask_t *orig)
Definition task.c:238