/* * Copyright (C) 2019-2022 by Sukchan Lee * * This file is part of Open5GS. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include "sbi-path.h" static int server_cb(ogs_sbi_request_t *request, void *data) { nssf_event_t *e = NULL; int rv; ogs_assert(request); ogs_assert(data); e = nssf_event_new(OGS_EVENT_SBI_SERVER); ogs_assert(e); e->h.sbi.request = request; e->h.sbi.data = data; rv = ogs_queue_push(ogs_app()->queue, e); if (rv != OGS_OK) { ogs_error("ogs_queue_push() failed:%d", (int)rv); ogs_sbi_request_free(request); ogs_event_free(e); return OGS_ERROR; } return OGS_OK; } static int client_cb(int status, ogs_sbi_response_t *response, void *data) { nssf_event_t *e = NULL; int rv; if (status != OGS_OK) { ogs_log_message( status == OGS_DONE ? OGS_LOG_DEBUG : OGS_LOG_WARN, 0, "client_cb() failed [%d]", status); return OGS_ERROR; } ogs_assert(response); e = nssf_event_new(OGS_EVENT_SBI_CLIENT); ogs_assert(e); e->h.sbi.response = response; e->h.sbi.data = data; rv = ogs_queue_push(ogs_app()->queue, e); if (rv != OGS_OK) { ogs_error("ogs_queue_push() failed:%d", (int)rv); ogs_sbi_response_free(response); ogs_event_free(e); return OGS_ERROR; } return OGS_OK; } int nssf_sbi_open(void) { ogs_sbi_nf_instance_t *nf_instance = NULL; ogs_sbi_nf_service_t *service = NULL; /* Add SELF NF instance */ nf_instance = ogs_sbi_self()->nf_instance; ogs_assert(nf_instance); ogs_sbi_nf_fsm_init(nf_instance); /* Build NF instance information. It will be transmitted to NRF. */ ogs_sbi_nf_instance_build_default(nf_instance, OpenAPI_nf_type_NSSF); ogs_sbi_nf_instance_add_allowed_nf_type(nf_instance, OpenAPI_nf_type_AMF); /* Build NF service information. It will be transmitted to NRF. */ if (ogs_sbi_nf_service_is_available( OGS_SBI_SERVICE_NAME_NNSSF_NSSELECTION)) { service = ogs_sbi_nf_service_build_default( nf_instance, OGS_SBI_SERVICE_NAME_NNSSF_NSSELECTION); ogs_assert(service); ogs_sbi_nf_service_add_version( service, OGS_SBI_API_V2, OGS_SBI_API_V2_0_0, NULL); ogs_sbi_nf_service_add_allowed_nf_type(service, OpenAPI_nf_type_AMF); } /* Initialize NRF NF Instance */ nf_instance = ogs_sbi_self()->nrf_instance; if (nf_instance) { ogs_sbi_client_t *client = NULL; /* Client callback is only used when NF sends to NRF */ client = nf_instance->client; ogs_assert(client); client->cb = client_cb; /* NFRegister is sent and the response is received * by the above client callback. */ ogs_sbi_nf_fsm_init(nf_instance); } if (ogs_sbi_server_start_all(server_cb) != OGS_OK) return OGS_ERROR; return OGS_OK; } void nssf_sbi_close(void) { ogs_sbi_client_stop_all(); ogs_sbi_server_stop_all(); }