blob: e415bbcadc00aba524d4f4dbc0d88bc916519e5d [file] [log] [blame]
Neels Hofmeyrf83ec562017-09-07 19:18:40 +02001/* MGCP Private Data */
2
3/*
4 * (C) 2009-2012 by Holger Hans Peter Freyther <zecke@selfish.org>
5 * (C) 2009-2012 by On-Waves
6 * All Rights Reserved
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU Affero General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Affero General Public License for more details.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 *
21 */
22
23#pragma once
24
25#include <string.h>
Philipp Maier87bd9be2017-08-22 16:35:41 +020026#include <inttypes.h>
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020027#include <osmocom/core/select.h>
Philipp Maier87bd9be2017-08-22 16:35:41 +020028#include <osmocom/mgcp/mgcp.h>
29#include <osmocom/core/linuxlist.h>
Philipp Maierc430d192018-03-16 12:11:18 +010030#include <osmocom/core/counter.h>
Philipp Maier9e1d1642018-05-09 16:26:34 +020031#include <osmocom/core/rate_ctr.h>
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020032
33#define CI_UNUSED 0
34
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020035struct mgcp_rtp_stream_state {
36 uint32_t ssrc;
37 uint16_t last_seq;
38 uint32_t last_timestamp;
Philipp Maier9e1d1642018-05-09 16:26:34 +020039 struct rate_ctr *err_ts_ctr;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020040 int32_t last_tsdelta;
41 uint32_t last_arrival_time;
42};
43
44struct mgcp_rtp_state {
Harald Welte33381352017-12-25 09:44:26 +010045 /* has this state structure been initialized? */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020046 int initialized;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020047
Harald Welte33381352017-12-25 09:44:26 +010048 struct {
49 /* are we patching the SSRC value? */
50 int patch_ssrc;
51 /* original SSRC (to which we shall patch any different SSRC) */
52 uint32_t orig_ssrc;
53 /* offset to apply on the sequence number */
54 int seq_offset;
55 /* offset to apply on the timestamp number */
56 int32_t timestamp_offset;
57 } patch;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020058
Harald Welte33381352017-12-25 09:44:26 +010059 /* duration of a packet (FIXME: in which unit?) */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020060 uint32_t packet_duration;
61
62 struct mgcp_rtp_stream_state in_stream;
63 struct mgcp_rtp_stream_state out_stream;
64
65 /* jitter and packet loss calculation */
Harald Welte49e3d5a2017-12-25 09:47:57 +010066 struct {
67 int initialized;
68 uint16_t base_seq;
69 uint16_t max_seq;
70 uint32_t ssrc;
71 uint32_t jitter;
72 int32_t transit;
73 int cycles;
74 } stats;
75
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020076 bool patched_first_rtp_payload; /* FIXME: drop this, see OS#2459 */
77};
78
79struct mgcp_rtp_codec {
80 uint32_t rate;
81 int channels;
82 uint32_t frame_duration_num;
83 uint32_t frame_duration_den;
84
85 int payload_type;
86 char *audio_name;
87 char *subtype_name;
Philipp Maier228e5912019-03-05 13:56:59 +010088
89 bool param_present;
90 struct mgcp_codec_param param;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020091};
92
Harald Welte3f35a372017-12-26 15:48:46 +010093/* 'mgcp_rtp_end': basically a wrapper around the RTP+RTCP ports */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020094struct mgcp_rtp_end {
Harald Welte3f35a372017-12-26 15:48:46 +010095 /* local IP address of the RTP socket */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020096 struct in_addr addr;
97
98 /* in network byte order */
99 int rtp_port, rtcp_port;
100
Philipp Maierbc0346e2018-06-07 09:52:16 +0200101 /* currently selected audio codec */
102 struct mgcp_rtp_codec *codec;
103
104 /* array with assigned audio codecs to choose from (SDP) */
105 struct mgcp_rtp_codec codecs[MGCP_MAX_CODECS];
106
107 /* number of assigned audio codecs (SDP) */
108 unsigned int codecs_assigned;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200109
110 /* per endpoint data */
111 int frames_per_packet;
112 uint32_t packet_duration_ms;
Philipp Maierbc0346e2018-06-07 09:52:16 +0200113 int maximum_packet_time; /* -1: not set */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200114 char *fmtp_extra;
Harald Welte3f35a372017-12-26 15:48:46 +0100115 /* are we transmitting packets (1) or dropping (0) outbound packets */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200116 int output_enabled;
Harald Welte3f35a372017-12-26 15:48:46 +0100117 /* FIXME: This parameter can be set + printed, but is nowhere used! */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200118 int force_output_ptime;
119
120 /* RTP patching */
121 int force_constant_ssrc; /* -1: always, 0: don't, 1: once */
Harald Welte3f35a372017-12-26 15:48:46 +0100122 /* should we perform align_rtp_timestamp_offset() (1) or not (0) */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200123 int force_aligned_timing;
Philipp Maier9fc8a022019-02-20 12:26:52 +0100124 bool rfc5993_hr_convert;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200125
Philipp Maier87bd9be2017-08-22 16:35:41 +0200126 /* Each end has a separate socket for RTP and RTCP */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200127 struct osmo_fd rtp;
128 struct osmo_fd rtcp;
129
Harald Welte3f35a372017-12-26 15:48:46 +0100130 /* local UDP port number of the RTP socket; RTCP is +1 */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200131 int local_port;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200132};
133
134struct mgcp_rtp_tap {
Harald Welte3f35a372017-12-26 15:48:46 +0100135 /* is this tap active (1) or not (0) */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200136 int enabled;
Harald Welte3f35a372017-12-26 15:48:46 +0100137 /* IP/port to which we're forwarding the tapped data */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200138 struct sockaddr_in forward;
139};
140
141struct mgcp_lco {
142 char *string;
143 char *codec;
144 int pkt_period_min; /* time in ms */
145 int pkt_period_max; /* time in ms */
146};
147
Philipp Maier87bd9be2017-08-22 16:35:41 +0200148/* Specific rtp connection type (see struct mgcp_conn_rtp) */
149enum mgcp_conn_rtp_type {
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200150 MGCP_RTP_DEFAULT = 0,
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200151 MGCP_OSMUX_BSC,
152 MGCP_OSMUX_BSC_NAT,
153};
154
Philipp Maier87bd9be2017-08-22 16:35:41 +0200155#include <osmocom/mgcp/osmux.h>
156struct mgcp_conn;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200157
Philipp Maier87bd9be2017-08-22 16:35:41 +0200158/* MGCP connection (RTP) */
159struct mgcp_conn_rtp {
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200160
Philipp Maier87bd9be2017-08-22 16:35:41 +0200161 /* Backpointer to conn struct */
162 struct mgcp_conn *conn;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200163
Philipp Maier87bd9be2017-08-22 16:35:41 +0200164 /* Specific connection type */
165 enum mgcp_conn_rtp_type type;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200166
Philipp Maier87bd9be2017-08-22 16:35:41 +0200167 /* Port status */
168 struct mgcp_rtp_end end;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200169
Philipp Maier87bd9be2017-08-22 16:35:41 +0200170 /* Sequence bits */
171 struct mgcp_rtp_state state;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200172
Harald Welte3f35a372017-12-26 15:48:46 +0100173 /* taps for the rtp connection; one per direction */
Philipp Maier87bd9be2017-08-22 16:35:41 +0200174 struct mgcp_rtp_tap tap_in;
175 struct mgcp_rtp_tap tap_out;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200176
Philipp Maier87bd9be2017-08-22 16:35:41 +0200177 /* Osmux states (optional) */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200178 struct {
179 /* Osmux state: disabled, activating, active */
180 enum osmux_state state;
Pau Espin Pedrol8de58e72019-04-24 13:33:46 +0200181 /* Is cid holding valid data? is it allocated from pool? */
182 bool cid_allocated;
183 /* Allocated Osmux circuit ID for this conn */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200184 uint8_t cid;
185 /* handle to batch messages */
186 struct osmux_in_handle *in;
187 /* handle to unbatch messages */
188 struct osmux_out_handle out;
189 /* statistics */
190 struct {
191 uint32_t chunks;
192 uint32_t octets;
193 } stats;
194 } osmux;
Philipp Maier9e1d1642018-05-09 16:26:34 +0200195
196 struct rate_ctr_group *rate_ctr_group;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200197};
198
Philipp Maier87bd9be2017-08-22 16:35:41 +0200199/*! Connection type, specifies which member of the union "u" in mgcp_conn
200 * contains a useful connection description (currently only RTP) */
201enum mgcp_conn_type {
202 MGCP_CONN_TYPE_RTP,
203};
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200204
Philipp Maier87bd9be2017-08-22 16:35:41 +0200205/*! MGCP connection (untyped) */
206struct mgcp_conn {
Neels Hofmeyr8838c622018-06-26 00:05:53 +0200207 /*! list head */
Philipp Maier87bd9be2017-08-22 16:35:41 +0200208 struct llist_head entry;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200209
Neels Hofmeyr8838c622018-06-26 00:05:53 +0200210 /*! Backpointer to the endpoint where the conn belongs to */
Philipp Maier87bd9be2017-08-22 16:35:41 +0200211 struct mgcp_endpoint *endp;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200212
Neels Hofmeyr8838c622018-06-26 00:05:53 +0200213 /*! type of the connection (union) */
Philipp Maier87bd9be2017-08-22 16:35:41 +0200214 enum mgcp_conn_type type;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200215
Neels Hofmeyr8838c622018-06-26 00:05:53 +0200216 /*! mode of the connection */
Philipp Maier87bd9be2017-08-22 16:35:41 +0200217 enum mgcp_connection_mode mode;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200218
Neels Hofmeyr8838c622018-06-26 00:05:53 +0200219 /*! copy of the mode to restore the original setting (VTY) */
Philipp Maier87bd9be2017-08-22 16:35:41 +0200220 enum mgcp_connection_mode mode_orig;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200221
Neels Hofmeyr8838c622018-06-26 00:05:53 +0200222 /*! connection id to identify the connection */
Neels Hofmeyr55e0dcf2018-09-03 21:36:56 +0200223 char id[MGCP_CONN_ID_MAXLEN];
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200224
Neels Hofmeyr8838c622018-06-26 00:05:53 +0200225 /*! human readable name (vty, logging) */
Philipp Maier87bd9be2017-08-22 16:35:41 +0200226 char name[256];
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200227
Oliver Smithe36b7752019-01-22 16:31:36 +0100228 /*! activity tracker (for cleaning up inactive connections) */
229 struct osmo_timer_list watchdog;
230
Neels Hofmeyr8838c622018-06-26 00:05:53 +0200231 /*! union with connection description */
Philipp Maier87bd9be2017-08-22 16:35:41 +0200232 union {
233 struct mgcp_conn_rtp rtp;
234 } u;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200235
Neels Hofmeyr8838c622018-06-26 00:05:53 +0200236 /*! pointer to optional private data */
Philipp Maier87bd9be2017-08-22 16:35:41 +0200237 void *priv;
238};
239
240#include <osmocom/mgcp/mgcp_conn.h>
241
242struct mgcp_endpoint_type;
243
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200244
245
Philipp Maierfdd603c2018-02-01 13:31:15 +0100246
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200247
248/**
249 * Internal structure while parsing a request
250 */
251struct mgcp_parse_data {
252 struct mgcp_config *cfg;
253 struct mgcp_endpoint *endp;
254 char *trans;
255 char *save;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200256};
257
Philipp Maier87bd9be2017-08-22 16:35:41 +0200258int mgcp_send(struct mgcp_endpoint *endp, int is_rtp, struct sockaddr_in *addr,
259 char *buf, int rc, struct mgcp_conn_rtp *conn_src,
260 struct mgcp_conn_rtp *conn_dst);
261int mgcp_send_dummy(struct mgcp_endpoint *endp, struct mgcp_conn_rtp *conn);
262int mgcp_dispatch_rtp_bridge_cb(int proto, struct sockaddr_in *addr, char *buf,
263 unsigned int buf_size, struct mgcp_conn *conn);
Philipp Maierdf5d2192018-01-24 11:39:32 +0100264void mgcp_cleanup_rtp_bridge_cb(struct mgcp_endpoint *endp, struct mgcp_conn *conn);
Philipp Maier0996a1e2020-06-10 15:27:14 +0200265int mgcp_dispatch_e1_bridge_cb(int proto, struct sockaddr_in *addr, char *buf,
266 unsigned int buf_size, struct mgcp_conn *conn);
267void mgcp_cleanup_e1_bridge_cb(struct mgcp_endpoint *endp, struct mgcp_conn *conn);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200268int mgcp_bind_net_rtp_port(struct mgcp_endpoint *endp, int rtp_port,
269 struct mgcp_conn_rtp *conn);
270void mgcp_free_rtp_port(struct mgcp_rtp_end *end);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200271
272/* For transcoding we need to manage an in and an output that are connected */
273static inline int endp_back_channel(int endpoint)
274{
275 return endpoint + 60;
276}
277
Philipp Maier3d7b58d2018-06-06 09:35:31 +0200278char *get_lco_identifier(const char *options);
279int check_local_cx_options(void *ctx, const char *options);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200280void mgcp_rtp_end_config(struct mgcp_endpoint *endp, int expect_ssrc_change,
281 struct mgcp_rtp_end *rtp);
282uint32_t mgcp_rtp_packet_duration(struct mgcp_endpoint *endp,
283 struct mgcp_rtp_end *rtp);
284
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200285/* payload processing default functions */
286int mgcp_rtp_processing_default(struct mgcp_endpoint *endp, struct mgcp_rtp_end *dst_end,
287 char *data, int *len, int buf_size);
288
289int mgcp_setup_rtp_processing_default(struct mgcp_endpoint *endp,
Philipp Maieracc10352018-07-19 18:07:57 +0200290 struct mgcp_conn_rtp *conn_dst,
291 struct mgcp_conn_rtp *conn_src);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200292
293void mgcp_get_net_downlink_format_default(struct mgcp_endpoint *endp,
Philipp Maier58128252019-03-06 11:28:18 +0100294 const struct mgcp_rtp_codec **codec,
295 const char **fmtp_extra,
Philipp Maier87bd9be2017-08-22 16:35:41 +0200296 struct mgcp_conn_rtp *conn);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200297
298/* internal RTP Annex A counting */
299void mgcp_rtp_annex_count(struct mgcp_endpoint *endp, struct mgcp_rtp_state *state,
300 const uint16_t seq, const int32_t transit,
301 const uint32_t ssrc);
302
303int mgcp_set_ip_tos(int fd, int tos);
304
Pau Espin Pedrol497611a2019-05-06 15:41:53 +0200305/* Was conn configured to handle Osmux? */
306static inline bool mgcp_conn_rtp_is_osmux(const struct mgcp_conn_rtp *conn) {
307 return conn->type == MGCP_OSMUX_BSC || conn->type == MGCP_OSMUX_BSC_NAT;
308}
309
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200310enum {
311 MGCP_DEST_NET = 0,
312 MGCP_DEST_BTS,
313};
314
315
316#define MGCP_DUMMY_LOAD 0x23
317
318
319/**
320 * SDP related information
321 */
322/* Assume audio frame length of 20ms */
323#define DEFAULT_RTP_AUDIO_FRAME_DUR_NUM 20
324#define DEFAULT_RTP_AUDIO_FRAME_DUR_DEN 1000
325#define DEFAULT_RTP_AUDIO_PACKET_DURATION_MS 20
326#define DEFAULT_RTP_AUDIO_DEFAULT_RATE 8000
327#define DEFAULT_RTP_AUDIO_DEFAULT_CHANNELS 1
328
329#define PTYPE_UNDEFINED (-1)
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200330
Philipp Maier1cb1e382017-11-02 17:16:04 +0100331void mgcp_get_local_addr(char *addr, struct mgcp_conn_rtp *conn);
Oliver Smithe36b7752019-01-22 16:31:36 +0100332void mgcp_conn_watchdog_kick(struct mgcp_conn *conn);