Crinit -- Configurable Rootfs Init
Loading...
Searching...
No Matches
confparse.h
Go to the documentation of this file.
1// SPDX-License-Identifier: MIT
6#ifndef __CONFPARSE_H__
7#define __CONFPARSE_H__
8
9#include <stdbool.h>
10#include <sys/types.h>
11
12#include "fseries.h"
13
15#define CRINIT_CONFIG_KEYSTR_TASKS "TASKS"
17#define CRINIT_CONFIG_KEYSTR_INCLUDES "INCLUDES"
19#define CRINIT_CONFIG_KEYSTR_TASKDIR_SYMLINKS "TASKDIR_FOLLOW_SYMLINKS"
21#define CRINIT_CONFIG_KEYSTR_DEBUG "DEBUG"
23#define CRINIT_CONFIG_KEYSTR_TASKDIR "TASKDIR"
25#define CRINIT_CONFIG_KEYSTR_INCLDIR "INCLUDEDIR"
27#define CRINIT_CONFIG_KEYSTR_SHDGRACEP "SHUTDOWN_GRACE_PERIOD_US"
29#define CRINIT_CONFIG_KEYSTR_USE_SYSLOG "USE_SYSLOG"
31#define CRINIT_CONFIG_KEYSTR_USE_ELOS "USE_ELOS"
33#define CRINIT_CONFIG_KEYSTR_ELOS_SERVER "ELOS_SERVER"
35#define CRINIT_CONFIG_KEYSTR_ELOS_PORT "ELOS_PORT"
37#define CRINIT_CONFIG_KEYSTR_ELOS_EVENT_POLL_INTERVAL "ELOS_EVENT_POLL_INTERVAL"
39#define CRINIT_CONFIG_KEYSTR_LAUNCHER_CMD "LAUNCHER_CMD"
41#define CRINIT_CONFIG_KEYSTR_INCL_SUFFIX "INCLUDE_SUFFIX"
43#define CRINIT_CONFIG_KEYSTR_TASK_FILE_SUFFIX "TASK_FILE_SUFFIX"
44
46#define CRINIT_CONFIG_KEYSTR_SIGKEYDIR "sigkeydir"
48#define CRINIT_CONFIG_KEYSTR_SIGNATURES "signatures"
49
51#define CRINIT_CONFIG_KEYSTR_COMMAND "COMMAND"
53#define CRINIT_CONFIG_KEYSTR_DEPENDS "DEPENDS"
55#define CRINIT_CONFIG_KEYSTR_ENV_SET "ENV_SET"
57#define CRINIT_CONFIG_KEYSTR_FILTER_DEFINE "FILTER_DEFINE"
59#define CRINIT_CONFIG_KEYSTR_INCLUDE "INCLUDE"
61#define CRINIT_CONFIG_KEYSTR_IOREDIR "IO_REDIRECT"
63#define CRINIT_CONFIG_KEYSTR_NAME "NAME"
65#define CRINIT_CONFIG_KEYSTR_PROVIDES "PROVIDES"
67#define CRINIT_CONFIG_KEYSTR_RESPAWN "RESPAWN"
69#define CRINIT_CONFIG_KEYSTR_RESPAWN_RETRIES "RESPAWN_RETRIES"
71#define CRINIT_CONFIG_KEYSTR_STOP_COMMAND "STOP_COMMAND"
73#define CRINIT_CONFIG_KEYSTR_USER "USER"
75#define CRINIT_CONFIG_KEYSTR_GROUP "GROUP"
76
78#define CRINIT_CONFIG_DEFAULT_TASK_FILE_SUFFIX ".crinit"
80#define CRINIT_CONFIG_KEYSTR_INCL_FILE_SUFFIX "INCL_FILE_SUFFIX"
82#define CRINIT_CONFIG_DEFAULT_INCL_FILE_SUFFIX ".crincl"
84#define CRINIT_CONFIG_DEFAULT_DEBUG false
86#define CRINIT_CONFIG_DEFAULT_TASKDIR_SYMLINKS true
87#ifndef CRINIT_LAUNCHER_COMMAND_DEFAULT
88#define CRINIT_CONFIG_DEFAULT_LAUNCHER_CMD "/usr/bin/crinit-launch"
89#else
91#define CRINIT_CONFIG_DEFAULT_LAUNCHER_CMD CRINIT_LAUNCHER_COMMAND_DEFAULT
92#endif
93
95#define CRINIT_CONFIG_DEFAULT_SHDGRACEP 100000uLL
97#define CRINIT_CONFIG_DEFAULT_USE_SYSLOG false
99#define CRINIT_CONFIG_DEFAULT_USE_ELOS false
101#define CRINIT_CONFIG_DEFAULT_ELOS_SERVER "127.0.0.1"
103#define CRINIT_CONFIG_DEFAULT_ELOS_PORT 54321
105#define CRINIT_CONFIG_DEFAULT_INCL_SUFFIX ".crincl"
106
107#define CRINIT_CONFIG_DEFAULT_SIGNATURES false
108
110#define CRINIT_CONFIG_STDOUT_NAME "STDOUT"
112#define CRINIT_CONFIG_STDERR_NAME "STDERR"
114#define CRINIT_CONFIG_STDIN_NAME "STDIN"
115
149
156
165
183int crinitParseConf(crinitConfKvList_t **confList, const char *filename);
184
192
199void crinitFreeArgvArray(char **inArgv);
200
211int crinitLoadSeriesConf(const char *filename);
212
222
223#endif /* __CONFPARSE_H__ */
int crinitLoadTasks(crinitFileSeries_t *series)
Definition confparse.c:287
int crinitParseConf(crinitConfKvList_t **confList, const char *filename)
Definition confparse.c:44
int crinitLoadSeriesConf(const char *filename)
Definition confparse.c:233
void crinitFreeConfList(crinitConfKvList_t *confList)
Definition confparse.c:210
void crinitFreeArgvArray(char **inArgv)
Definition confparse.c:224
crinitConfigType_t
Definition confparse.h:151
@ CRINIT_CONFIG_TYPE_SERIES
Configurations set from the series file.
Definition confparse.h:152
@ CRINIT_CONFIG_TYPE_KCMDLINE
Configurations set from the Kernel command line.
Definition confparse.h:154
@ CRINIT_CONFIG_TYPE_TASK
Configurations set from a task file.
Definition confparse.h:153
crinitConfigs_t
Definition confparse.h:117
@ CRINIT_CONFIG_SIGNATURES
Definition confparse.h:137
@ CRINIT_CONFIGS_SIZE
Definition confparse.h:147
@ CRINIT_CONFIG_DEBUG
Definition confparse.h:119
@ CRINIT_CONFIG_INCLUDE
Definition confparse.h:127
@ CRINIT_CONFIG_USER
Definition confparse.h:145
@ CRINIT_CONFIG_COMMAND
Definition confparse.h:118
@ CRINIT_CONFIG_ELOS_EVENT_POLL_INTERVAL
Definition confparse.h:121
@ CRINIT_CONFIG_TASKS
Definition confparse.h:142
@ CRINIT_CONFIG_USE_ELOS
Definition confparse.h:144
@ CRINIT_CONFIG_TASKDIR_FOLLOW_SYMLINKS
Definition confparse.h:141
@ CRINIT_CONFIG_NAME
Definition confparse.h:131
@ CRINIT_CONFIG_FILTER_DEFINE
Definition confparse.h:125
@ CRINIT_CONFIG_TASKDIR
Definition confparse.h:140
@ CRINIT_CONFIG_RESPAWN
Definition confparse.h:133
@ CRINIT_CONFIG_ELOS_SERVER
Definition confparse.h:123
@ CRINIT_CONFIG_USE_SYSLOG
Definition confparse.h:143
@ CRINIT_CONFIG_PROVIDES
Definition confparse.h:132
@ CRINIT_CONFIG_DEPENDS
Definition confparse.h:120
@ CRINIT_CONFIG_LAUNCHER_CMD
Definition confparse.h:146
@ CRINIT_CONFIG_RESPAWN_RETRIES
Definition confparse.h:134
@ CRINIT_CONFIG_GROUP
Definition confparse.h:126
@ CRINIT_CONFIG_ELOS_PORT
Definition confparse.h:122
@ CRINIT_CONFIG_INCLUDE_SUFFIX
Definition confparse.h:128
@ CRINIT_CONFIG_STOP_COMMAND
Definition confparse.h:138
@ CRINIT_CONFIG_SIGKEYDIR
Definition confparse.h:136
@ CRINIT_CONFIG_IOREDIR
Definition confparse.h:130
@ CRINIT_CONFIG_INCLUDEDIR
Definition confparse.h:129
@ CRINIT_CONFIG_TASK_FILE_SUFFIX
Definition confparse.h:139
@ CRINIT_CONFIG_SHDGRACEP
Definition confparse.h:135
@ CRINIT_CONFIG_ENV_SET
Definition confparse.h:124
Header defining functions related to the handling of a series of filenames within a directory.
Definition confparse.h:160
struct crinitConfKvList_t * next
Pointer to next element.
Definition confparse.h:161
char * key
string with "KEY"
Definition confparse.h:162
char * val
string with "VALUE"
Definition confparse.h:163
Definition fseries.h:21