/* * Copyright (C) 2019 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 . */ #if !defined(OGS_GTP_INSIDE) && !defined(OGS_GTP_COMPILATION) #error "This header cannot be included directly." #endif #ifndef OGS_GTP_XACT_H #define OGS_GTP_XACT_H #ifdef __cplusplus extern "C" { #endif /** * Transaction context */ typedef struct ogs_gtp_xact_s { ogs_lnode_t node; /**< A node of list */ ogs_index_t index; #define OGS_GTP_LOCAL_ORIGINATOR 0 #define OGS_GTP_REMOTE_ORIGINATOR 1 uint8_t org; /**< Transaction' originator. local or remote */ uint32_t xid; /**< Transaction ID */ ogs_gtp_node_t *gnode; /**< Relevant GTP node context */ int step; /**< Current step in the sequence. 1 : Initial 2 : Triggered 3 : Triggered-Reply */ struct { uint8_t type; /**< Message type history */ ogs_pkbuf_t *pkbuf; /**< Packet history */ } seq[3]; /**< history for the each step */ ogs_timer_t *tm_response; /**< Timer waiting for next message */ uint8_t response_rcount; ogs_timer_t *tm_holding; /**< Timer waiting for holding message */ uint8_t holding_rcount; struct ogs_gtp_xact_s *assoc_xact; /**< Associated transaction */ #define OGS_GTP_XACT_STORE_SESSION(xact, session) \ do { \ ogs_assert((xact)); \ ogs_assert((session)); \ ((xact)->sess) = (session); \ } while(0) #define OGS_GTP_XACT_RETRIEVE_SESSION(xact) ((xact) ? ((xact)->sess) : NULL) void *sess; /**< Session Store */ } ogs_gtp_xact_t; int ogs_gtp_xact_init(ogs_timer_mgr_t *timer_mgr, int size); int ogs_gtp_xact_final(void); ogs_gtp_xact_t *ogs_gtp_xact_local_create( ogs_gtp_node_t *gnode, ogs_gtp_header_t *hdesc, ogs_pkbuf_t *pkbuf); ogs_gtp_xact_t *ogs_gtp_xact_remote_create( ogs_gtp_node_t *gnode, uint32_t sqn); void ogs_gtp_xact_delete_all(ogs_gtp_node_t *gnode); int ogs_gtp_xact_update_tx(ogs_gtp_xact_t *xact, ogs_gtp_header_t *hdesc, ogs_pkbuf_t *pkbuf); int ogs_gtp_xact_update_rx(ogs_gtp_xact_t *xact, uint8_t type); int ogs_gtp_xact_commit(ogs_gtp_xact_t *xact); int ogs_gtp_xact_receive(ogs_gtp_node_t *gnode, ogs_gtp_header_t *h, ogs_gtp_xact_t **xact); ogs_gtp_xact_t *ogs_gtp_xact_find(ogs_index_t index); ogs_gtp_xact_t *ogs_gtp_xact_find_by_xid( ogs_gtp_node_t *gnode, uint8_t type, uint32_t xid); void ogs_gtp_xact_associate(ogs_gtp_xact_t *xact1, ogs_gtp_xact_t *xact2); void ogs_gtp_xact_deassociate(ogs_gtp_xact_t *xact1, ogs_gtp_xact_t *xact2); #ifdef __cplusplus } #endif #endif /* OGS_GTP_XACT_H */