open5gs/src/epc.c

113 lines
2.9 KiB
C
Raw Normal View History

2019-09-13 12:07:47 +00:00
#include "ogs-sctp.h"
#include "ogs-app.h"
2017-07-11 09:44:59 +00:00
static ogs_thread_t *pcrf_thread = NULL;
static ogs_thread_t *pgw_thread = NULL;
static ogs_thread_t *sgw_thread = NULL;
static ogs_thread_t *hss_thread = NULL;
2017-08-17 05:15:08 +00:00
#define MAX_CHILD_PROCESS 8
static ogs_proc_t process[MAX_CHILD_PROCESS];
static int process_num = 0;
2017-07-11 09:44:59 +00:00
static void child_main(void *data)
{
char **commandLine = data;
ogs_proc_t *current = NULL;
FILE *out = NULL;
char buf[OGS_HUGE_LEN];
int ret = 0, out_return_code = 0;;
current = &process[process_num++];
ret = ogs_proc_create((const char *const*)commandLine,
ogs_proc_option_combined_stdout_stderr|
ogs_proc_option_inherit_environment,
current);
ogs_assert(ret == 0);
out = ogs_proc_stdout(current);
ogs_assert(out);
while(fgets(buf, OGS_HUGE_LEN, out)) {
printf("%s", buf);
}
2017-08-02 12:11:22 +00:00
ret = ogs_proc_join(current, &out_return_code);
ogs_assert(ret == 0);
ogs_assert(out_return_code == 0);
2017-07-11 09:44:59 +00:00
ret = ogs_proc_destroy(current);
ogs_assert(ret == 0);
2019-04-27 14:54:30 +00:00
}
2017-07-11 09:44:59 +00:00
ogs_thread_t *epc_child_create(char *name, char **argv)
2019-04-27 14:54:30 +00:00
{
ogs_thread_t *child = NULL;
2019-09-13 12:07:47 +00:00
#define OGS_ARG_MAX 256
char *commandLine[OGS_ARG_MAX];
int i = 0;
2019-09-13 12:07:47 +00:00
char directory[OGS_MAX_FILEPATH_LEN];
char command[OGS_MAX_FILEPATH_LEN];
while(argv[i] && i < 32) {
commandLine[i] = argv[i];
i++;
2017-08-17 05:15:08 +00:00
}
commandLine[i] = NULL;
2017-08-17 05:15:08 +00:00
ogs_path_remove_last_component(directory, argv[0]);
if (strstr(directory, ".libs"))
ogs_path_remove_last_component(directory, directory);
ogs_snprintf(command, sizeof command, "%s/%s", directory, name);
commandLine[0] = command;
2017-08-17 05:15:08 +00:00
child = ogs_thread_create(child_main, (void*)commandLine);
ogs_msleep(50);
return child;
}
void epc_child_terminate(void)
{
int i;
ogs_proc_t *current = NULL;
for (i = 0; i < process_num; i++) {
current = &process[i];
ogs_proc_terminate(current);
}
}
2017-07-11 09:44:59 +00:00
int app_initialize(char **argv)
{
int rv;
2019-09-13 12:07:47 +00:00
if (ogs_config()->parameter.no_pcrf == 0)
pcrf_thread = epc_child_create("nextepc-pcrfd", argv);
2019-09-13 12:07:47 +00:00
if (ogs_config()->parameter.no_pgw == 0)
pgw_thread = epc_child_create("nextepc-pgwd", argv);
2019-09-13 12:07:47 +00:00
if (ogs_config()->parameter.no_sgw == 0)
sgw_thread = epc_child_create("nextepc-sgwd", argv);
2019-09-13 12:07:47 +00:00
if (ogs_config()->parameter.no_hss == 0)
hss_thread = epc_child_create("nextepc-hssd", argv);
2017-08-02 12:11:22 +00:00
2019-09-13 12:07:47 +00:00
ogs_sctp_init(ogs_config()->usrsctp.udp_port);
rv = mme_initialize();
2019-04-27 14:54:30 +00:00
ogs_assert(rv == OGS_OK);
ogs_info("MME initialize...done");
2017-08-02 12:11:22 +00:00
2019-04-27 14:54:30 +00:00
return OGS_OK;;
2017-08-02 12:11:22 +00:00
}
void app_terminate(void)
2017-08-02 12:11:22 +00:00
{
mme_terminate();
2019-09-13 12:07:47 +00:00
ogs_sctp_final();
2019-04-27 14:54:30 +00:00
ogs_info("MME terminate...done");
2017-08-02 12:11:22 +00:00
if (hss_thread) ogs_thread_destroy(hss_thread);
if (sgw_thread) ogs_thread_destroy(sgw_thread);
if (pgw_thread) ogs_thread_destroy(pgw_thread);
if (pcrf_thread) ogs_thread_destroy(pcrf_thread);
2017-07-11 09:44:59 +00:00
}