| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #include "context.h" |
| #include "sbi-path.h" |
|
|
| static ogs_thread_t *thread; |
| static void sepp_main(void *data); |
|
|
| static int initialized = 0; |
|
|
| int sepp_initialize(void) |
| { |
| int rv; |
|
|
| #define APP_NAME "sepp" |
| rv = ogs_app_parse_local_conf(APP_NAME); |
| if (rv != OGS_OK) return rv; |
|
|
| ogs_sbi_context_init(OpenAPI_nf_type_SEPP); |
| sepp_context_init(); |
|
|
| rv = ogs_log_config_domain( |
| ogs_app()->logger.domain, ogs_app()->logger.level); |
| if (rv != OGS_OK) return rv; |
|
|
| rv = ogs_sbi_context_parse_config(APP_NAME, "nrf", "scp"); |
| if (rv != OGS_OK) return rv; |
|
|
| rv = sepp_context_parse_config(); |
| if (rv != OGS_OK) return rv; |
|
|
| rv = sepp_sbi_open(); |
| if (rv != 0) return OGS_ERROR; |
|
|
| thread = ogs_thread_create(sepp_main, NULL); |
| if (!thread) return OGS_ERROR; |
|
|
| initialized = 1; |
|
|
| return OGS_OK; |
| } |
|
|
| static ogs_timer_t *t_termination_holding = NULL; |
|
|
| static void event_termination(void) |
| { |
| ogs_sbi_nf_instance_t *nf_instance = NULL; |
| sepp_node_t *sepp_node = NULL; |
|
|
| |
| ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance) |
| ogs_sbi_nf_fsm_fini(nf_instance); |
|
|
| |
| ogs_list_for_each(&sepp_self()->peer_list, sepp_node) |
| sepp_handshake_fsm_fini(sepp_node); |
|
|
| |
| t_termination_holding = ogs_timer_add(ogs_app()->timer_mgr, NULL, NULL); |
| ogs_assert(t_termination_holding); |
| #define TERMINATION_HOLDING_TIME ogs_time_from_msec(300) |
| ogs_timer_start(t_termination_holding, TERMINATION_HOLDING_TIME); |
|
|
| |
| ogs_queue_term(ogs_app()->queue); |
| ogs_pollset_notify(ogs_app()->pollset); |
| } |
|
|
| void sepp_terminate(void) |
| { |
| if (!initialized) return; |
|
|
| |
| event_termination(); |
| ogs_thread_destroy(thread); |
| ogs_timer_delete(t_termination_holding); |
|
|
| sepp_sbi_close(); |
|
|
| sepp_context_final(); |
| ogs_sbi_context_final(); |
| } |
|
|
| static void sepp_main(void *data) |
| { |
| ogs_fsm_t sepp_sm; |
| int rv; |
|
|
| ogs_fsm_init(&sepp_sm, sepp_state_initial, sepp_state_final, 0); |
|
|
| for ( ;; ) { |
| ogs_pollset_poll(ogs_app()->pollset, |
| ogs_timer_mgr_next(ogs_app()->timer_mgr)); |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| ogs_timer_mgr_expire(ogs_app()->timer_mgr); |
|
|
| for ( ;; ) { |
| sepp_event_t *e = NULL; |
|
|
| rv = ogs_queue_trypop(ogs_app()->queue, (void**)&e); |
| ogs_assert(rv != OGS_ERROR); |
|
|
| if (rv == OGS_DONE) |
| goto done; |
|
|
| if (rv == OGS_RETRY) |
| break; |
|
|
| ogs_assert(e); |
| ogs_fsm_dispatch(&sepp_sm, e); |
| ogs_event_free(e); |
| } |
| } |
| done: |
|
|
| ogs_fsm_fini(&sepp_sm, 0); |
| } |
|
|