open5gs/src/udm/sbi-path.c

150 lines
4.6 KiB
C
Raw Normal View History

2020-06-04 18:12:05 +00:00
/*
* Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
*
* 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 <https://www.gnu.org/licenses/>.
*/
#include "sbi-path.h"
static int server_cb(ogs_sbi_server_t *server,
ogs_sbi_session_t *session, ogs_sbi_request_t *request)
{
udm_event_t *e = NULL;
int rv;
ogs_assert(session);
ogs_assert(request);
e = udm_event_new(UDM_EVT_SBI_SERVER);
ogs_assert(e);
e->sbi.server = server;
e->sbi.session = session;
e->sbi.request = request;
rv = ogs_queue_push(udm_self()->queue, e);
if (rv != OGS_OK) {
ogs_warn("ogs_queue_push() failed:%d", (int)rv);
udm_event_free(e);
return OGS_ERROR;
}
return OGS_OK;
}
static int client_cb(ogs_sbi_response_t *response, void *data)
{
udm_event_t *e = NULL;
int rv;
ogs_assert(response);
e = udm_event_new(UDM_EVT_SBI_CLIENT);
ogs_assert(e);
e->sbi.response = response;
e->sbi.data = data;
rv = ogs_queue_push(udm_self()->queue, e);
if (rv != OGS_OK) {
ogs_warn("ogs_queue_push() failed:%d", (int)rv);
udm_event_free(e);
return OGS_ERROR;
}
return OGS_OK;
}
int udm_sbi_open(void)
{
ogs_sbi_nf_instance_t *nf_instance = NULL;
ogs_sbi_server_start_all(server_cb);
2020-07-09 05:38:09 +00:00
/*
* The connection between NF and NRF is a little special.
*
* NF and NRF share nf_instance. I get the NRF EndPoint(client) information
* the configuration file via lib/sbi/context.c.
* And, the NFService information will be transmitted to NRF.
*
* ogs_sbi_self()->nf_instance_id means NF's InstanceId.
*/
2020-06-04 18:12:05 +00:00
ogs_list_for_each(&ogs_sbi_self()->nf_instance_list, nf_instance) {
ogs_sbi_nf_service_t *service = NULL;
2020-07-09 05:38:09 +00:00
ogs_sbi_client_t *client = NULL;
2020-06-04 18:12:05 +00:00
2020-07-09 05:38:09 +00:00
/* Build NF instance information. It will be transmitted to NRF. */
2020-06-04 18:12:05 +00:00
ogs_sbi_nf_instance_build_default(nf_instance, udm_self()->nf_type);
2020-07-09 05:38:09 +00:00
/* Build NF service information. It will be transmitted to NRF. */
2020-06-04 18:12:05 +00:00
service = ogs_sbi_nf_service_build_default(nf_instance,
(char*)OGS_SBI_SERVICE_NAME_NUDM_UEAU);
ogs_assert(service);
2020-06-17 05:22:28 +00:00
ogs_sbi_nf_service_add_version(service, (char*)OGS_SBI_API_V1,
(char*)OGS_SBI_API_V1_0_0, NULL);
service = ogs_sbi_nf_service_build_default(nf_instance,
(char*)OGS_SBI_SERVICE_NAME_NUDM_UECM);
ogs_assert(service);
ogs_sbi_nf_service_add_version(service, (char*)OGS_SBI_API_V1,
(char*)OGS_SBI_API_V1_0_0, NULL);
service = ogs_sbi_nf_service_build_default(nf_instance,
(char*)OGS_SBI_SERVICE_NAME_NUDM_SDM);
ogs_assert(service);
ogs_sbi_nf_service_add_version(service, (char*)OGS_SBI_API_V2,
(char*)OGS_SBI_API_V2_0_0, NULL);
2020-06-04 18:12:05 +00:00
2020-07-09 05:38:09 +00:00
/* 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. */
2020-06-04 18:12:05 +00:00
udm_nf_fsm_init(nf_instance);
}
return OGS_OK;
}
void udm_sbi_close(void)
{
ogs_sbi_server_stop_all();
}
2020-06-17 05:22:28 +00:00
void udm_sbi_discover_and_send(
OpenAPI_nf_type_e nf_type, udm_ue_t *udm_ue, void *data,
ogs_sbi_request_t *(*build)(udm_ue_t *udm_ue, void *data))
2020-06-04 18:12:05 +00:00
{
ogs_sbi_session_t *session = NULL;
ogs_assert(udm_ue);
2020-06-17 05:22:28 +00:00
session = udm_ue->sbi.session;
2020-06-04 18:12:05 +00:00
ogs_assert(nf_type);
2020-06-17 05:22:28 +00:00
ogs_assert(build);
2020-06-04 18:12:05 +00:00
2020-06-17 05:22:28 +00:00
udm_ue->sbi.nf_state_registered = udm_nf_state_registered;
udm_ue->sbi.client_wait.duration =
2020-07-27 01:02:40 +00:00
ogs_config()->time.message.sbi.client_wait_duration;
2020-07-09 05:38:09 +00:00
udm_ue->sbi.client_cb = client_cb;
2020-06-04 18:12:05 +00:00
2020-06-17 05:22:28 +00:00
if (ogs_sbi_discover_and_send(
nf_type, &udm_ue->sbi, data, (ogs_sbi_build_f)build) != true) {
2020-06-04 18:12:05 +00:00
ogs_sbi_server_send_error(session,
2020-06-17 05:22:28 +00:00
OGS_SBI_HTTP_STATUS_GATEWAY_TIMEOUT, NULL,
"Cannot discover", udm_ue->suci);
2020-06-04 18:12:05 +00:00
}
}