aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/pfcp/pfcp_endpoint.h
blob: 7158582382b8d675b9a331c455bd8a2e3ec02e10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*
 * (C) 2021-2022 by sysmocom - s.f.m.c. GmbH <info@sysmocom.de>
 * All Rights Reserved.
 *
 * Author: Neels Janosch Hofmeyr <nhofmeyr@sysmocom.de>
 *
 * SPDX-License-Identifier: GPL-2.0+
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 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 <http://www.gnu.org/licenses/>.
 *
 */

#pragma once

#include <osmocom/core/socket.h>
#include <osmocom/core/select.h>
#include <osmocom/core/tdef.h>

#include <osmocom/pfcp/pfcp_msg.h>

struct osmo_pfcp_endpoint;
struct osmo_fsm_inst;

enum osmo_pfcp_timers {
	OSMO_PFCP_TIMER_HEARTBEAT_REQ = -19,
	OSMO_PFCP_TIMER_HEARTBEAT_RESP = -20,
	OSMO_PFCP_TIMER_GRACEFUL_REL = -21,
	OSMO_PFCP_TIMER_T1 = -22,
	OSMO_PFCP_TIMER_N1 = -23,
	OSMO_PFCP_TIMER_KEEP_RESP = -24,
	OSMO_PFCP_TIMER_ASSOC_RETRY = -26,
};

extern struct osmo_tdef osmo_pfcp_tdefs[];

/* Ownership of m remains with the caller / m will be deallocated by the caller.
 * \param ep  The PFCP endpoint that received and decoded the message.
 * \param m  The message that was received.
 * \param req  If m is a PFCP Response to an earlier Request, req is that request message. Otherwise req is NULL.
 */
typedef void (*osmo_pfcp_endpoint_cb)(struct osmo_pfcp_endpoint *ep, struct osmo_pfcp_msg *m,
				      struct osmo_pfcp_msg *req);

/* Send/receive PFCP messages to/from remote PFCP endpoints. */
struct osmo_pfcp_endpoint;

struct osmo_pfcp_endpoint_cfg {
	/* Local address */
	struct osmo_sockaddr local_addr;
	/* Local PFCP Node ID, as sent in outgoing messages' Node ID IE */
	struct osmo_pfcp_ie_node_id local_node_id;

	/* If non-NULL, this function is called just after decoding and before handling the osmo_pfcp_msg passed as
	 * argument m.
	 * The caller (you) usually implements this to set m->ctx.peer_fi and m->ctx.session_fi as appropriate,
	 * so that these are used for logging context during message handling. The caller may also use m->ctx.peer_fi
	 * and m->ctx.session_fi pointers to reduce lookup iterations in e.g. rx_msg(). */
	osmo_pfcp_endpoint_cb set_msg_ctx_cb;

	/* Callback to receive a single incoming PFCP message from a remote peer, already decoded. See also the doc for
	 * osmo_pfcp_endpoint_cb.
	 * All incoming messages are passed to this callback, including Heartbeat Request and Heartbeat Response
	 * messages. However, responding to heartbeat is already done in osmo_pfcp_endpoint_handle_rx() before
	 * rx_msg_cb() is invoked: a callback implementation can safely ignore Heartbeat Request messages. */
	osmo_pfcp_endpoint_cb rx_msg_cb;

	/* Custom timer definitions to use, if any. Relevant timers are: OSMO_PFCP_TIMER_N1, OSMO_PFCP_TIMER_T1,
	 * OSMO_PFCP_TIMER_KEEP_RESP. These are used for the PFCP message retransmission queue.
	 * If passed NULL, use the timer definitions from the global osmo_pfcp_tdefs.
	 * To expose retransmission timers on the VTY configuration, it is convenient to add osmo_pfcp_tdefs as one of
	 * your program's osmo_tdef_group entries and call osmo_tdef_vty_init(). */
	const struct osmo_tdef *tdefs;

	/* application-private data */
	void *priv;

	/* Always false in this API version. When adding new members to this struct in the future, they shall be added
	 * after this 'more_items' flag, and such members shall be accessed only when more_items == true. */
	bool more_items;
};

struct osmo_pfcp_endpoint *osmo_pfcp_endpoint_create(void *ctx, const struct osmo_pfcp_endpoint_cfg *cfg);
int osmo_pfcp_endpoint_bind(struct osmo_pfcp_endpoint *ep);
void osmo_pfcp_endpoint_close(struct osmo_pfcp_endpoint *ep);
void osmo_pfcp_endpoint_free(struct osmo_pfcp_endpoint **ep);

int osmo_pfcp_endpoint_tx(struct osmo_pfcp_endpoint *ep, struct osmo_pfcp_msg *m);
int osmo_pfcp_endpoint_tx_data(struct osmo_pfcp_endpoint *ep, struct osmo_pfcp_msg *m);
int osmo_pfcp_endpoint_tx_heartbeat_req(struct osmo_pfcp_endpoint *ep, const struct osmo_sockaddr *remote_addr);

void osmo_pfcp_endpoint_invalidate_ctx(struct osmo_pfcp_endpoint *ep, struct osmo_fsm_inst *deleted_fi);

const struct osmo_pfcp_endpoint_cfg *osmo_pfcp_endpoint_get_cfg(const struct osmo_pfcp_endpoint *ep);
void *osmo_pfcp_endpoint_get_priv(const struct osmo_pfcp_endpoint *ep);
uint32_t osmo_pfcp_endpoint_get_recovery_timestamp(const struct osmo_pfcp_endpoint *ep);
const struct osmo_sockaddr *osmo_pfcp_endpoint_get_local_addr(const struct osmo_pfcp_endpoint *ep);
void osmo_pfcp_endpoint_set_seq_nr_state(struct osmo_pfcp_endpoint *ep, uint32_t seq_nr_state);

bool osmo_pfcp_endpoint_retrans_queue_is_busy(const struct osmo_pfcp_endpoint *ep);