forked from yandex/odyssey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
instance.c
313 lines (271 loc) · 7.89 KB
/
instance.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
/*
* Odyssey.
*
* Scalable PostgreSQL connection pooler.
*/
#include <machinarium.h>
#include <odyssey.h>
void od_instance_init(od_instance_t *instance)
{
od_pid_init(&instance->pid);
od_logger_init(&instance->logger, &instance->pid);
od_config_init(&instance->config);
instance->config_file = NULL;
instance->shutdown_worker_id = INVALID_COROUTINE_ID;
sigset_t mask;
sigemptyset(&mask);
sigaddset(&mask, SIGINT);
sigaddset(&mask, SIGTERM);
sigaddset(&mask, OD_SIG_LOG_ROTATE);
sigaddset(&mask, OD_SIG_GRACEFUL_SHUTDOWN);
sigaddset(&mask, SIGHUP);
sigaddset(&mask, SIGPIPE);
sigprocmask(SIG_BLOCK, &mask, NULL);
}
void od_instance_free(od_instance_t *instance)
{
if (instance->config.pid_file) {
od_pid_unlink(&instance->pid, instance->config.pid_file);
}
od_config_free(&instance->config);
// as mallocd on start
free(instance->config_file);
free(instance->exec_path);
od_logger_close(&instance->logger);
machinarium_free();
}
void od_usage(od_instance_t *instance, char *path)
{
od_log(&instance->logger, "init", NULL, NULL, "odyssey (git: %s %s)",
OD_VERSION_GIT, OD_VERSION_BUILD);
od_log(&instance->logger, "init", NULL, NULL, "usage: %s <config_file>",
path);
}
void od_config_testing(od_instance_t *instance)
{
od_error_t error;
od_router_t router;
od_hba_t hba;
od_global_t global;
od_extention_t extentions;
od_error_init(&error);
od_router_init(&router, &global);
od_hba_init(&hba);
od_extentions_init(&extentions);
int rc;
rc = od_config_reader_import(&instance->config, &router.rules, &error,
&extentions, &global, &hba.rules,
instance->config_file);
if (rc == -1) {
od_error(&instance->logger, "config", NULL, NULL, "%s",
error.error);
goto error;
}
/* validate configuration */
rc = od_config_validate(&instance->config, &instance->logger);
if (rc == -1) {
goto error;
}
/* validate rules */
rc = od_rules_validate(&router.rules, &instance->config,
&instance->logger);
if (rc == -1) {
goto error;
}
od_log(&instance->logger, "config", NULL, NULL, "config is valid");
error:
od_router_free(&router);
}
static inline void od_bind_version()
{
od_asprintf((char **__restrict) & argp_program_version,
"odyssey (git: %s %s %s)", OD_VERSION_NUMBER,
OD_VERSION_GIT, OD_VERSION_BUILD);
}
static inline od_retcode_t od_args_init(od_arguments_t *args,
od_instance_t *instance)
{
args->silent = 0;
args->verbose = 0;
args->console = 0;
args->test = 0;
args->instance = instance;
return OK_RESPONSE;
}
int od_instance_main(od_instance_t *instance, int argc, char **argv)
{
od_arguments_t args;
memset(&args, 0, sizeof(args));
struct argp argp;
od_bind_args(&argp);
od_bind_version();
// odyssey accept only ONE positional arg - to path config
if (od_args_init(&args, instance) != OK_RESPONSE) {
return NOT_OK_RESPONSE;
}
instance->exec_path = strdup(argv[0]);
/* validate command line options */
int argindx; // index of fisrt unparsed indx
if (argp_parse(&argp, argc, argv, 0, &argindx, &args) != OK_RESPONSE) {
return NOT_OK_RESPONSE;
}
od_log(&instance->logger, "startup", NULL, NULL, "Starting Odyssey");
/* prepare system services */
od_system_t system;
od_router_t router;
od_cron_t cron;
od_worker_pool_t worker_pool;
od_extention_t extentions;
od_global_t global;
od_hba_t hba;
od_system_init(&system);
od_router_init(&router, &global);
od_cron_init(&cron);
od_worker_pool_init(&worker_pool);
od_extentions_init(&extentions);
od_hba_init(&hba);
od_global_init(&global, instance, &system, &router, &cron, &worker_pool,
&extentions, &hba);
/* read config file */
od_error_t error;
od_error_init(&error);
int rc;
rc = od_config_reader_import(&instance->config, &router.rules, &error,
&extentions, &global, &hba.rules,
instance->config_file);
if (rc == -1) {
od_error(&instance->logger, "config", NULL, NULL, "%s",
error.error);
goto error;
}
#ifdef PROM_FOUND
rc = od_prom_metrics_init(cron.metrics);
if (rc != OK_RESPONSE) {
od_error(&instance->logger, "metrics", NULL, NULL,
"failed to initialize metrics");
goto error;
}
#ifdef PROMHTTP_FOUND
if (instance->config.log_route_stats_prom) {
rc = od_prom_activate_route_metrics(cron.metrics);
if (rc != OK_RESPONSE) {
od_error(&instance->logger, "promhttp", NULL, NULL,
"%s", "could not activate prom_http server");
goto error;
}
} else if (instance->config.log_general_stats_prom) {
rc = od_prom_activate_general_metrics(cron.metrics);
if (rc != OK_RESPONSE) {
od_error(&instance->logger, "promhttp", NULL, NULL,
"%s", "could not activate prom_http server");
goto error;
}
}
#endif
#endif
rc = od_apply_validate_cli_args(&instance->logger, &instance->config,
&args, &router.rules);
if (rc != OK_RESPONSE) {
goto error;
}
/* validate configuration */
rc = od_config_validate(&instance->config, &instance->logger);
if (rc == -1) {
goto error;
}
/* validate rules */
rc = od_rules_validate(&router.rules, &instance->config,
&instance->logger);
if (rc == -1) {
goto error;
}
/* auto-generate default rule for auth_query if none specified */
rc = od_rules_autogenerate_defaults(&router.rules, &instance->logger);
if (rc == -1) {
goto error;
}
/* configure logger */
od_logger_set_format(&instance->logger, instance->config.log_format);
od_logger_set_debug(&instance->logger, instance->config.log_debug);
od_logger_set_stdout(&instance->logger, instance->config.log_to_stdout);
/* run as daemon */
if (instance->config.daemonize) {
rc = od_daemonize();
if (rc == -1) {
goto error;
}
/* update pid */
od_pid_init(&instance->pid);
}
/* reopen log file after config parsing */
if (instance->config.log_file) {
rc = od_logger_open(&instance->logger,
instance->config.log_file);
if (rc == -1) {
od_error(&instance->logger, "init", NULL, NULL,
"failed to open log file '%s'",
instance->config.log_file);
goto error;
}
}
/* syslog */
if (instance->config.log_syslog) {
od_logger_open_syslog(&instance->logger,
instance->config.log_syslog_ident,
instance->config.log_syslog_facility);
}
od_log(&instance->logger, "init", NULL, NULL, "odyssey (git: %s %s)",
OD_VERSION_GIT, OD_VERSION_BUILD);
od_log(&instance->logger, "init", NULL, NULL, "");
/* print configuration */
od_log(&instance->logger, "init", NULL, NULL,
"using configuration file '%s'", instance->config_file);
od_log(&instance->logger, "init", NULL, NULL, "");
if (instance->config.log_config) {
od_config_print(&instance->config, &instance->logger);
od_rules_print(&router.rules, &instance->logger);
}
/* set process priority */
if (instance->config.priority != 0) {
int rc;
rc = setpriority(PRIO_PROCESS, 0, instance->config.priority);
if (rc == -1) {
od_error(&instance->logger, "init", NULL, NULL,
"failed to set process priority: %s",
strerror(errno));
goto error;
}
}
/* initialize machinarium */
machinarium_set_stack_size(instance->config.coroutine_stack_size);
machinarium_set_pool_size(instance->config.resolvers);
machinarium_set_coroutine_cache_size(instance->config.cache_coroutine);
machinarium_set_msg_cache_gc_size(instance->config.cache_msg_gc_size);
rc = machinarium_init();
if (rc == -1) {
od_error(&instance->logger, "init", NULL, NULL,
"failed to init machinarium");
goto error;
}
/* create pid file */
if (instance->config.pid_file) {
rc = od_pid_create(&instance->pid, instance->config.pid_file);
if (rc == -1) {
od_error(&instance->logger, "init", NULL, NULL,
"failed to create pid file %s: %s",
instance->config.pid_file, strerror(errno));
goto error;
}
}
// start aync logging thread if needed
od_logger_load(&instance->logger);
/* start system machine thread */
rc = od_system_start(&system, &global);
if (rc == -1) {
goto error;
}
return machine_wait(system.machine);
error:
od_router_free(&router);
return NOT_OK_RESPONSE;
}