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 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562
|
#include "auxlib.h"
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
#include <glib.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <inttypes.h>
#ifdef HAVE_LIBSYSTEMD
#include <systemd/sd-daemon.h>
#endif
#include <sys/socket.h>
#include <netinet/in.h>
#include <sys/resource.h>
#include <sys/epoll.h>
#ifdef HAVE_CODEC_CHAIN
#include <codec-chain/types.h>
#endif
#include "log.h"
#include "loglib.h"
struct thread_buf {
char buf[THREAD_BUF_SIZE];
};
struct rtpengine_common_config *rtpe_common_config_ptr;
__thread int64_t rtpe_now;
volatile bool rtpe_shutdown;
static __thread struct thread_buf t_bufs[NUM_THREAD_BUFS];
static __thread int t_buf_idx;
void daemonize(void) {
if (rtpe_common_config_ptr->foreground)
return;
if (fork())
_exit(0);
write_log = (write_log_t *) syslog;
#ifdef __GLIBC__
stdin = freopen("/dev/null", "r", stdin);
stdout = freopen("/dev/null", "w", stdout);
stderr = freopen("/dev/null", "w", stderr);
#else
freopen("/dev/null", "r", stdin);
freopen("/dev/null", "w", stdout);
freopen("/dev/null", "w", stderr);
#endif
setpgrp();
}
void wpidfile(void) {
FILE *fp;
if (!rtpe_common_config_ptr->pidfile)
return;
fp = fopen(rtpe_common_config_ptr->pidfile, "w");
if (!fp) {
ilog(LOG_CRIT, "Failed to create PID file (%s), aborting startup", strerror(errno));
exit(-1);
}
fprintf(fp, "%u\n", getpid());
fclose(fp);
}
void service_notify(const char *message) {
#ifdef HAVE_LIBSYSTEMD
sd_notify(0, message);
#endif
}
int thread_create(void *(*func)(void *), void *arg, bool joinable, pthread_t *handle, const char *name) {
pthread_attr_t att;
pthread_t thr;
int ret;
if (pthread_attr_init(&att))
abort();
if (pthread_attr_setdetachstate(&att, joinable ? PTHREAD_CREATE_JOINABLE : PTHREAD_CREATE_DETACHED))
abort();
if (rtpe_common_config_ptr->thread_stack > 0) {
if (pthread_attr_setstacksize(&att, rtpe_common_config_ptr->thread_stack * 1024)) {
ilog(LOG_ERR, "Failed to set thread stack size to %llu",
(unsigned long long) rtpe_common_config_ptr->thread_stack * 1024);
abort();
}
}
ret = pthread_create(&thr, &att, func, arg);
pthread_attr_destroy(&att);
if (ret)
return ret;
if (handle)
*handle = thr;
#ifdef __GLIBC__
if (name)
pthread_setname_np(thr, name);
#endif
return 0;
}
void resources(void) {
struct rlimit rl;
int tryv;
rlim(RLIMIT_CORE, RLIM_INFINITY);
if (getrlimit(RLIMIT_NOFILE, &rl))
rl.rlim_cur = 0;
for (tryv = ((1<<20) - 1); tryv && tryv > rl.rlim_cur && rlim(RLIMIT_NOFILE, tryv) == -1; tryv >>= 1)
;
rlim(RLIMIT_DATA, RLIM_INFINITY);
rlim(RLIMIT_RSS, RLIM_INFINITY);
rlim(RLIMIT_AS, RLIM_INFINITY);
}
static unsigned int options_length(const GOptionEntry *arr) {
unsigned int len = 0;
for (const GOptionEntry *p = arr; p->long_name; p++)
len++;
return len;
}
#define CONF_OPTION_GLUE(get_func, data_type, ...) \
{ \
data_type *varptr = e->arg_data; \
data_type var = g_key_file_get_ ## get_func(kf, use_section, e->long_name, \
##__VA_ARGS__, &er); \
if (er && g_error_matches(er, G_KEY_FILE_ERROR, G_KEY_FILE_ERROR_KEY_NOT_FOUND)) { \
g_error_free(er); \
er = NULL; \
break; \
} \
if (er) \
goto err; \
*varptr = var; \
}
void config_load_free(struct rtpengine_common_config *cconfig) {
// free common config options
g_free(cconfig->config_file);
g_free(cconfig->config_section);
g_free(cconfig->log_facility);
g_free(cconfig->log_name);
g_free(cconfig->log_mark_prefix);
g_free(cconfig->log_mark_suffix);
g_free(cconfig->pidfile);
}
static void section_keys_callback(GKeyFile *kf,
const char *section_name,
void (*callback)(const char *key, char *value, union rtpenging_config_callback_arg),
union rtpenging_config_callback_arg arg)
{
if (!section_name)
return;
g_autoptr(GError) err = NULL;
g_autoptr(char_p) keys = g_key_file_get_keys(kf, section_name, NULL, &err);
if (err)
die("Failed to load keys from given config file section '%s': %s", section_name, err->message);
if (!keys)
return; // empty config section
for (char **key = keys; *key; key++) {
char *val = g_key_file_get_string(kf, section_name, *key, &err);
if (err)
die("Failed to read config value '%s' (section '%s') from config file: %s", *key, section_name, err->message);
callback(*key, val, arg);
}
}
static void file_groups_callback(GKeyFile *kf,
const char *group_prefix,
void (*callback)(const char *name, charp_ht, union rtpenging_config_callback_arg),
union rtpenging_config_callback_arg arg)
{
if (!group_prefix)
return;
size_t pref_len = strlen(group_prefix);
g_autoptr(char_p) groups = g_key_file_get_groups(kf, NULL);
for (char **group = groups; *group; group++) {
// check for groups starting with "PREFIX-.."
if (memcmp(*group, group_prefix, pref_len))
continue;
char *ident = *group + pref_len;
if (*ident != '-')
continue;
ident++;
if (*ident == '\0')
continue;
// read all keys and put them in a hash table
g_auto(charp_ht) ht = charp_ht_new();
section_keys_callback(kf, *group, add_c_str_to_ht, ht);
callback(ident, ht, arg);
}
}
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GOptionEntry, free)
typedef char *char_p_shallow;
G_DEFINE_AUTOPTR_CLEANUP_FUNC(char_p_shallow, g_free)
void config_load_ext(int *argc, char ***argv, GOptionEntry *app_entries, const char *description,
char *default_config, char *default_section,
struct rtpengine_common_config *cconfig,
const struct rtpenging_config_callback *callbacks)
{
g_autoptr(GOptionContext) c = NULL;
g_autoptr(GError) er = NULL;
g_autoptr(char) use_section = NULL;
const char *use_config;
int fatal = 0;
g_autoptr(char_p) saved_argv_arr = g_strdupv(*argv);
g_autoptr(char_p_shallow) saved_argv = __g_memdup(saved_argv_arr, sizeof(char *) * (*argc + 1));
int saved_argc = *argc;
gboolean version = false;
g_autoptr(char) opus_application = NULL;
rtpe_common_config_ptr = cconfig;
// defaults
#ifndef __DEBUG
rtpe_common_config_ptr->default_log_level = LOG_INFO;
#else
rtpe_common_config_ptr->default_log_level = LOG_DEBUG;
#endif
rtpe_common_config_ptr->codec_chain_opus_complexity = -1;
g_autoptr(GKeyFile) kf = g_key_file_new();
#define ll(system, descr) \
{ "log-level-" #system, 0, 0, G_OPTION_ARG_INT, &rtpe_common_config_ptr->log_levels[log_level_index_ ## system],"Log level for: " descr,"INT" },
GOptionEntry shared_options[] = {
{ "version", 'v', 0, G_OPTION_ARG_NONE, &version, "Print build time and exit", NULL },
{ "config-file", 0, 0, G_OPTION_ARG_FILENAME, &rtpe_common_config_ptr->config_file, "Load config from this file", "FILE" },
{ "config-section", 0, 0, G_OPTION_ARG_STRING, &rtpe_common_config_ptr->config_section,"Config file section to use", "STRING" },
{ "log-facility", 0, 0, G_OPTION_ARG_STRING, &rtpe_common_config_ptr->log_facility, "Syslog facility to use for logging", "daemon|local0|...|local7"},
{ "log-level", 'L', 0, G_OPTION_ARG_INT, &rtpe_common_config_ptr->default_log_level,"Default log level", "INT" },
#include "loglevels.h"
{ "log-stderr", 'E', 0, G_OPTION_ARG_NONE, &rtpe_common_config_ptr->log_stderr, "Log on stderr instead of syslog", NULL },
{ "split-logs", 0, 0, G_OPTION_ARG_NONE, &rtpe_common_config_ptr->split_logs, "Split multi-line log messages", NULL },
{ "max-log-line-length",0, 0, G_OPTION_ARG_INT, &rtpe_common_config_ptr->max_log_line_length, "Break log lines at this length","INT" },
{ "no-log-timestamps", 0, 0, G_OPTION_ARG_NONE, &rtpe_common_config_ptr->no_log_timestamps,"Drop timestamps from log lines to stderr",NULL },
{ "log-name", 0, 0, G_OPTION_ARG_STRING, &rtpe_common_config_ptr->log_name, "Set the id to be printed in syslog", NULL },
{ "log-mark-prefix", 0, 0, G_OPTION_ARG_STRING, &rtpe_common_config_ptr->log_mark_prefix,"Prefix for sensitive log info", NULL },
{ "log-mark-suffix", 0, 0, G_OPTION_ARG_STRING, &rtpe_common_config_ptr->log_mark_suffix,"Suffix for sensitive log info", NULL },
{ "pidfile", 'p', 0, G_OPTION_ARG_FILENAME, &rtpe_common_config_ptr->pidfile, "Write PID to file", "FILE" },
{ "foreground", 'f', 0, G_OPTION_ARG_NONE, &rtpe_common_config_ptr->foreground, "Don't fork to background", NULL },
{ "thread-stack", 0,0, G_OPTION_ARG_INT, &rtpe_common_config_ptr->thread_stack, "Thread stack size in kB", "INT" },
{ "poller-size", 0,0, G_OPTION_ARG_INT, &rtpe_common_config_ptr->poller_size, "Max poller items per iteration", "INT" },
#ifdef HAVE_LIBURING
{ "io-uring", 0,0, G_OPTION_ARG_NONE, &rtpe_common_config_ptr->io_uring, "Use io_uring", NULL },
{ "io-uring-buffers", 0,0, G_OPTION_ARG_INT, &rtpe_common_config_ptr->io_uring_buffers,"Number of io_uring entries per thread","INT" },
#endif
{ "evs-lib-path", 0,0, G_OPTION_ARG_FILENAME, &rtpe_common_config_ptr->evs_lib_path, "Location of .so for 3GPP EVS codec", "FILE" },
#ifdef HAVE_CODEC_CHAIN
{ "codec-chain-lib-path",0,0, G_OPTION_ARG_FILENAME, &rtpe_common_config_ptr->codec_chain_lib_path,"Location of libcodec-chain.so", "FILE" },
{ "codec-chain-runners",0,0, G_OPTION_ARG_INT, &rtpe_common_config_ptr->codec_chain_runners,"Number of chain runners per codec","INT" },
{ "codec-chain-concurrency",0,0,G_OPTION_ARG_INT, &rtpe_common_config_ptr->codec_chain_concurrency,"Max concurrent codec jobs per runner","INT" },
{ "codec-chain-async",0,0, G_OPTION_ARG_INT, &rtpe_common_config_ptr->codec_chain_async,"Number of background callback threads","INT" },
{ "codec-chain-opus-application",0,0,G_OPTION_ARG_STRING,&opus_application, "Opus application", "default|VoIP|audio|low-delay" },
{ "codec-chain-opus-complexity",0,0,G_OPTION_ARG_INT, &rtpe_common_config_ptr->codec_chain_opus_complexity,"Opus encoding complexity (0..10)","INT" },
#endif
{ NULL, }
};
#undef ll
// prepend shared CLI options
unsigned int shared_len = options_length(shared_options);
unsigned int app_len = options_length(app_entries);
size_t entries_size = sizeof(GOptionEntry) * (shared_len + app_len + 1);
g_autoptr(GOptionEntry) entries = malloc(entries_size);
memcpy(entries, shared_options, sizeof(*entries) * shared_len);
memcpy(&entries[shared_len], app_entries, sizeof(*entries) * (app_len + 1));
g_autoptr(GOptionEntry) entries_copy = malloc(entries_size);
memcpy(entries_copy, entries, entries_size);
c = g_option_context_new(description);
g_option_context_add_main_entries(c, entries, NULL);
if (!g_option_context_parse(c, argc, argv, &er))
goto err;
if (rtpe_common_config_ptr->config_section) {
use_section = g_strdup(rtpe_common_config_ptr->config_section);
} else {
use_section = g_strdup(default_section);
}
// is there a config file to load?
use_config = default_config;
if (rtpe_common_config_ptr->config_file) {
use_config = rtpe_common_config_ptr->config_file;
if (!strcmp(use_config, "none"))
goto out;
fatal = 1;
}
if (!g_key_file_load_from_file(kf, use_config, G_KEY_FILE_NONE, &er)) {
if (!fatal && (g_error_matches(er, G_KEY_FILE_ERROR, G_KEY_FILE_ERROR_NOT_FOUND)
|| g_error_matches(er, G_FILE_ERROR, G_FILE_ERROR_NOENT)))
goto out;
goto err;
}
// destroy the option context to reset - we'll do it again later
g_option_context_free(c);
c = NULL;
// iterate the options list and see if the config file defines any.
// free any strings we come across, as we'll load argv back in.
// also keep track of any returned strings so we can free them if
// they were overwritten. we abuse the description field for this.
for (GOptionEntry *e = entries_copy; e->long_name; e++) {
switch (e->arg) {
case G_OPTION_ARG_NONE:
CONF_OPTION_GLUE(boolean, int);
break;
case G_OPTION_ARG_INT:
CONF_OPTION_GLUE(integer, int);
break;
case G_OPTION_ARG_INT64:
CONF_OPTION_GLUE(uint64, uint64_t);
break;
case G_OPTION_ARG_DOUBLE:
CONF_OPTION_GLUE(double, double);
break;
case G_OPTION_ARG_STRING:
case G_OPTION_ARG_FILENAME: {
char **s = e->arg_data;
g_free(*s);
*s = NULL;
e->description = NULL;
CONF_OPTION_GLUE(string, char *);
e->description = (void *) *s;
*s = NULL;
break;
}
case G_OPTION_ARG_FILENAME_ARRAY:
case G_OPTION_ARG_STRING_ARRAY: {
char ***s = e->arg_data;
g_strfreev(*s);
*s = NULL;
e->description = NULL;
CONF_OPTION_GLUE(string_list, char **, NULL);
e->description = (void *) *s;
*s = NULL;
break;
}
default:
config_load_free(rtpe_common_config_ptr);
abort();
}
}
// process CLI arguments again so they override options from the config file
c = g_option_context_new(description);
g_option_context_add_main_entries(c, entries, NULL);
g_option_context_parse(c, &saved_argc, &saved_argv, &er);
// finally go through our list again to look for strings that were
// overwritten, and free the old values.
// this is also a good opportunity to trim off stray spaces.
for (GOptionEntry *e = entries_copy; e->long_name; e++) {
switch (e->arg) {
case G_OPTION_ARG_STRING:
case G_OPTION_ARG_FILENAME: {
char **s = e->arg_data;
if (!*s && e->description)
*s = (char *) e->description;
else if (*s != e->description)
g_free((void *) e->description);
if (*s) {
size_t len = strlen(*s);
while (len && (*s)[len-1] == ' ')
(*s)[--len] = '\0';
}
break;
}
case G_OPTION_ARG_FILENAME_ARRAY:
case G_OPTION_ARG_STRING_ARRAY: {
char ***s = e->arg_data;
if (!*s && e->description)
*s = (char **) e->description;
else if (*s != (void *) e->description)
g_strfreev((void *) e->description);
if (*s) {
for (int i = 0; (*s)[i]; i++) {
char *ss = (*s)[i];
size_t len = strlen(ss);
while (len && ss[len-1] == ' ')
ss[--len] = '\0';
}
}
break;
}
default:
break;
}
}
for (const struct rtpenging_config_callback *cb = callbacks; cb; cb++) {
switch (cb->type) {
case RCC_END:
break;
case RCC_SECTION_KEYS:
section_keys_callback(kf, *cb->section_keys.name, cb->section_keys.callback, cb->arg);
continue;
case RCC_FILE_GROUPS:
file_groups_callback(kf, *cb->file_groups.prefix, cb->file_groups.callback, cb->arg);
continue;
}
break;
}
out:
// default common values, if not configured
if (rtpe_common_config_ptr->log_name == NULL)
rtpe_common_config_ptr->log_name = g_strdup("rtpengine");
if (rtpe_common_config_ptr->log_mark_prefix == NULL)
rtpe_common_config_ptr->log_mark_prefix = g_strdup("");
if (rtpe_common_config_ptr->log_mark_suffix == NULL)
rtpe_common_config_ptr->log_mark_suffix = g_strdup("");
if (version) {
fprintf(stderr, "Version: %s\n", RTPENGINE_VERSION);
exit(0);
}
if (rtpe_common_config_ptr->log_facility) {
if (!parse_log_facility(rtpe_common_config_ptr->log_facility, &ilog_facility)) {
print_available_log_facilities();
die ("Invalid log facility '%s' (--log-facility)", rtpe_common_config_ptr->log_facility);
}
}
for (unsigned int i = 0; i < num_log_levels; i++) {
if (!rtpe_common_config_ptr->log_levels[i])
rtpe_common_config_ptr->log_levels[i] = rtpe_common_config_ptr->default_log_level;
}
if (rtpe_common_config_ptr->log_stderr)
write_log = log_to_stderr;
else if (rtpe_common_config_ptr->max_log_line_length == 0)
rtpe_common_config_ptr->max_log_line_length = 500;
if (rtpe_common_config_ptr->max_log_line_length < 0)
rtpe_common_config_ptr->max_log_line_length = 0;
if (rtpe_common_config_ptr->thread_stack == 0)
rtpe_common_config_ptr->thread_stack = 2048;
if (rtpe_common_config_ptr->poller_size <= 0)
rtpe_common_config_ptr->poller_size = 128;
#ifdef HAVE_CODEC_CHAIN
if (rtpe_common_config_ptr->codec_chain_runners <= 0)
rtpe_common_config_ptr->codec_chain_runners = 4;
if (rtpe_common_config_ptr->codec_chain_concurrency <= 0)
rtpe_common_config_ptr->codec_chain_concurrency = 256;
if (rtpe_common_config_ptr->codec_chain_async < 0)
rtpe_common_config_ptr->codec_chain_async = 0;
if (rtpe_common_config_ptr->codec_chain_opus_complexity == -1)
rtpe_common_config_ptr->codec_chain_opus_complexity = 10;
if (rtpe_common_config_ptr->codec_chain_opus_complexity < 0 || rtpe_common_config_ptr->codec_chain_opus_complexity > 10)
die("Invalid value for --codec-chain-opus-complexity");
if (opus_application) {
if (!strcmp(opus_application, "default") || !strcmp(opus_application, ""))
rtpe_common_config_ptr->codec_chain_opus_application = 0;
else if (!strcmp(opus_application, "voip") || !strcmp(opus_application, "speech"))
rtpe_common_config_ptr->codec_chain_opus_application = CC_OPUS_APP_VOIP;
else if (!strcmp(opus_application, "audio") || !strcmp(opus_application, "music"))
rtpe_common_config_ptr->codec_chain_opus_application = CC_OPUS_APP_AUDIO;
else if (!strcmp(opus_application, "low delay") || !strcmp(opus_application, "low-delay") || !strcmp(opus_application, "lowdelay"))
rtpe_common_config_ptr->codec_chain_opus_application = CC_OPUS_APP_LOWDELAY;
else
die("Invalid value for --codec-chain-opus-application");
}
#endif
#if HAVE_LIBURING
if (rtpe_common_config_ptr->io_uring_buffers == 0)
rtpe_common_config_ptr->io_uring_buffers = 16384;
else if (rtpe_common_config_ptr->io_uring_buffers < 0)
die("Invalid value for --io-uring-buffers");
#endif
return;
err:
config_load_free(rtpe_common_config_ptr);
die("Bad command line: %s", er->message);
}
char *get_thread_buf(void) {
char *ret;
ret = t_bufs[t_buf_idx].buf;
t_buf_idx++;
if (t_buf_idx >= G_N_ELEMENTS(t_bufs))
t_buf_idx = 0;
return ret;
}
unsigned int in6_addr_hash(const void *p) {
const struct in6_addr *a = p;
return a->s6_addr32[0] ^ a->s6_addr32[3];
}
int in6_addr_eq(const void *a, const void *b) {
const struct in6_addr *A = a, *B = b;
return !memcmp(A, B, sizeof(*A));
}
int rtpe_tree_find_first_cmp(void *k, void *v, void *d) {
struct rtpe_g_tree_find_helper *h = d;
if (!h->func || h->func(v, h->data)) {
h->out_p = v;
return TRUE;
}
return FALSE;
}
int rtpe_tree_find_all_cmp(void *k, void *v, void *d) {
struct rtpe_g_tree_find_helper *h = d;
if (!h->func || h->func(v, h->data))
g_queue_push_tail(h->out_q, v);
return FALSE;
}
int num_cpu_cores(int minval) {
#ifdef _SC_NPROCESSORS_ONLN
int ret = sysconf(_SC_NPROCESSORS_ONLN);
if (ret >= 1 && ret >= minval)
return ret;
#endif
return minval;
}
|