open5gs/lib/pfcp/path.h

97 lines
3.3 KiB
C
Raw Normal View History

2019-12-07 04:17:00 +00:00
/*
* Copyright (C) 2019-2024 by Sukchan Lee <acetcom@gmail.com>
2019-12-07 04:17:00 +00:00
*
* 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/>.
*/
#if !defined(OGS_PFCP_INSIDE) && !defined(OGS_PFCP_COMPILATION)
#error "This header cannot be included directly."
#endif
#ifndef OGS_PFCP_PATH_H
#define OGS_PFCP_PATH_H
#ifdef __cplusplus
extern "C" {
#endif
2021-03-15 01:01:55 +00:00
#define OGS_SETUP_PFCP_SERVER \
do { \
ogs_pfcp_node_t *pfcp_node = NULL; \
\
ogs_pfcp_self()->pfcp_sock = \
ogs_socknode_sock_first(&ogs_pfcp_self()->pfcp_list); \
ogs_pfcp_self()->pfcp_sock6 = \
ogs_socknode_sock_first(&ogs_pfcp_self()->pfcp_list6); \
\
ogs_assert(ogs_pfcp_self()->pfcp_sock || ogs_pfcp_self()->pfcp_sock6); \
\
if (ogs_pfcp_self()->pfcp_sock) \
ogs_pfcp_self()->pfcp_addr = \
&ogs_pfcp_self()->pfcp_sock->local_addr; \
if (ogs_pfcp_self()->pfcp_sock6) \
ogs_pfcp_self()->pfcp_addr6 = \
&ogs_pfcp_self()->pfcp_sock6->local_addr; \
\
ogs_assert(ogs_pfcp_self()->pfcp_addr || ogs_pfcp_self()->pfcp_addr6); \
\
ogs_list_for_each(&ogs_pfcp_self()->pfcp_peer_list, pfcp_node) \
pfcp_node_fsm_init(pfcp_node, true); \
\
} while(0)
2019-12-07 04:17:00 +00:00
typedef struct ogs_pfcp_xact_s ogs_pfcp_xact_t;
ogs_sock_t *ogs_pfcp_server(ogs_socknode_t *node);
int ogs_pfcp_connect(
2020-04-26 19:36:05 +00:00
ogs_sock_t *ipv4, ogs_sock_t *ipv6, ogs_pfcp_node_t *node);
2019-12-07 04:17:00 +00:00
2020-04-26 19:36:05 +00:00
int ogs_pfcp_send(ogs_pfcp_node_t *node, ogs_pkbuf_t *pkbuf);
int ogs_pfcp_sendto(ogs_pfcp_node_t *node, ogs_pkbuf_t *pkbuf);
2019-12-07 04:17:00 +00:00
ogs_pkbuf_t *ogs_pfcp_handle_echo_req(ogs_pkbuf_t *pkt);
2020-04-26 19:36:05 +00:00
2021-06-06 13:35:46 +00:00
int ogs_pfcp_send_heartbeat_request(ogs_pfcp_node_t *node,
2020-08-13 00:31:22 +00:00
void (*cb)(ogs_pfcp_xact_t *xact, void *data));
2021-06-06 13:35:46 +00:00
int ogs_pfcp_send_heartbeat_response(ogs_pfcp_xact_t *xact);
2020-04-26 19:36:05 +00:00
2021-06-06 13:35:46 +00:00
int ogs_pfcp_cp_send_association_setup_request(ogs_pfcp_node_t *node,
2020-08-13 00:31:22 +00:00
void (*cb)(ogs_pfcp_xact_t *xact, void *data));
2021-06-06 13:35:46 +00:00
int ogs_pfcp_cp_send_association_setup_response(ogs_pfcp_xact_t *xact,
2020-08-13 00:31:22 +00:00
uint8_t cause);
2021-06-06 13:35:46 +00:00
int ogs_pfcp_up_send_association_setup_request(ogs_pfcp_node_t *node,
2020-08-13 00:31:22 +00:00
void (*cb)(ogs_pfcp_xact_t *xact, void *data));
2021-06-06 13:35:46 +00:00
int ogs_pfcp_up_send_association_setup_response(ogs_pfcp_xact_t *xact,
2020-08-13 00:31:22 +00:00
uint8_t cause);
void ogs_pfcp_send_g_pdu(
ogs_pfcp_pdr_t *pdr,
ogs_gtp2_header_desc_t *sendhdr, ogs_pkbuf_t *sendbuf);
2021-06-06 13:35:46 +00:00
int ogs_pfcp_send_end_marker(ogs_pfcp_pdr_t *pdr);
2020-08-13 00:31:22 +00:00
void ogs_pfcp_send_buffered_packet(ogs_pfcp_pdr_t *pdr);
2019-12-07 04:17:00 +00:00
void ogs_pfcp_send_error_message(
ogs_pfcp_xact_t *xact, int seid_presence, uint64_t seid, uint8_t type,
2020-04-26 19:36:05 +00:00
uint8_t cause_value, uint16_t offending_ie_value);
2019-12-07 04:17:00 +00:00
#ifdef __cplusplus
}
#endif
#endif /* OGS_PFCP_PATH_H */