blob: 5c969282edbeb988e0eec8712ef1261f7d815223 [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>
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020030
31#define CI_UNUSED 0
32
Philipp Maier01d24a32017-11-21 17:26:09 +010033/* FIXME: This this is only needed to compile the currently
34 * broken OSMUX support. Remove when fixed */
35#define CONN_ID_BTS "0"
36#define CONN_ID_NET "1"
Philipp Maier87bd9be2017-08-22 16:35:41 +020037
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020038enum mgcp_trunk_type {
39 MGCP_TRUNK_VIRTUAL,
40 MGCP_TRUNK_E1,
41};
42
43struct mgcp_rtp_stream_state {
44 uint32_t ssrc;
45 uint16_t last_seq;
46 uint32_t last_timestamp;
47 uint32_t err_ts_counter;
48 int32_t last_tsdelta;
49 uint32_t last_arrival_time;
50};
51
52struct mgcp_rtp_state {
Harald Welte33381352017-12-25 09:44:26 +010053 /* has this state structure been initialized? */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020054 int initialized;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020055
Harald Welte33381352017-12-25 09:44:26 +010056 struct {
57 /* are we patching the SSRC value? */
58 int patch_ssrc;
59 /* original SSRC (to which we shall patch any different SSRC) */
60 uint32_t orig_ssrc;
61 /* offset to apply on the sequence number */
62 int seq_offset;
63 /* offset to apply on the timestamp number */
64 int32_t timestamp_offset;
65 } patch;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020066
Harald Welte33381352017-12-25 09:44:26 +010067 /* duration of a packet (FIXME: in which unit?) */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020068 uint32_t packet_duration;
69
70 struct mgcp_rtp_stream_state in_stream;
71 struct mgcp_rtp_stream_state out_stream;
72
73 /* jitter and packet loss calculation */
Harald Welte49e3d5a2017-12-25 09:47:57 +010074 struct {
75 int initialized;
76 uint16_t base_seq;
77 uint16_t max_seq;
78 uint32_t ssrc;
79 uint32_t jitter;
80 int32_t transit;
81 int cycles;
82 } stats;
83
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020084 bool patched_first_rtp_payload; /* FIXME: drop this, see OS#2459 */
85};
86
87struct mgcp_rtp_codec {
88 uint32_t rate;
89 int channels;
90 uint32_t frame_duration_num;
91 uint32_t frame_duration_den;
92
93 int payload_type;
94 char *audio_name;
95 char *subtype_name;
96};
97
Harald Welte3f35a372017-12-26 15:48:46 +010098/* 'mgcp_rtp_end': basically a wrapper around the RTP+RTCP ports */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020099struct mgcp_rtp_end {
100 /* statistics */
Harald Weltea0ac30f2017-12-25 09:52:30 +0100101 struct {
102 unsigned int packets_rx;
103 unsigned int octets_rx;
104 unsigned int packets_tx;
105 unsigned int octets_tx;
106 unsigned int dropped_packets;
107 } stats;
108
Harald Welte3f35a372017-12-26 15:48:46 +0100109 /* local IP address of the RTP socket */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200110 struct in_addr addr;
111
112 /* in network byte order */
113 int rtp_port, rtcp_port;
114
115 /* audio codec information */
116 struct mgcp_rtp_codec codec;
117 struct mgcp_rtp_codec alt_codec; /* TODO/XXX: make it generic */
118
119 /* per endpoint data */
120 int frames_per_packet;
121 uint32_t packet_duration_ms;
122 char *fmtp_extra;
Harald Welte3f35a372017-12-26 15:48:46 +0100123 /* are we transmitting packets (1) or dropping (0) outbound packets */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200124 int output_enabled;
Harald Welte3f35a372017-12-26 15:48:46 +0100125 /* FIXME: This parameter can be set + printed, but is nowhere used! */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200126 int force_output_ptime;
127
128 /* RTP patching */
129 int force_constant_ssrc; /* -1: always, 0: don't, 1: once */
Harald Welte3f35a372017-12-26 15:48:46 +0100130 /* should we perform align_rtp_timestamp_offset() (1) or not (0) */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200131 int force_aligned_timing;
Harald Welte3f35a372017-12-26 15:48:46 +0100132 /* FIXME: not used anymore, used to be [external] transcoding related */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200133 void *rtp_process_data;
134
Philipp Maier87bd9be2017-08-22 16:35:41 +0200135 /* Each end has a separate socket for RTP and RTCP */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200136 struct osmo_fd rtp;
137 struct osmo_fd rtcp;
138
Harald Welte3f35a372017-12-26 15:48:46 +0100139 /* local UDP port number of the RTP socket; RTCP is +1 */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200140 int local_port;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200141};
142
143struct mgcp_rtp_tap {
Harald Welte3f35a372017-12-26 15:48:46 +0100144 /* is this tap active (1) or not (0) */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200145 int enabled;
Harald Welte3f35a372017-12-26 15:48:46 +0100146 /* IP/port to which we're forwarding the tapped data */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200147 struct sockaddr_in forward;
148};
149
150struct mgcp_lco {
151 char *string;
152 char *codec;
153 int pkt_period_min; /* time in ms */
154 int pkt_period_max; /* time in ms */
155};
156
Philipp Maier87bd9be2017-08-22 16:35:41 +0200157/* Specific rtp connection type (see struct mgcp_conn_rtp) */
158enum mgcp_conn_rtp_type {
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200159 MGCP_RTP_DEFAULT = 0,
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200160 MGCP_OSMUX_BSC,
161 MGCP_OSMUX_BSC_NAT,
162};
163
Philipp Maier87bd9be2017-08-22 16:35:41 +0200164#include <osmocom/mgcp/osmux.h>
165struct mgcp_conn;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200166
Philipp Maier87bd9be2017-08-22 16:35:41 +0200167/* MGCP connection (RTP) */
168struct mgcp_conn_rtp {
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200169
Philipp Maier87bd9be2017-08-22 16:35:41 +0200170 /* Backpointer to conn struct */
171 struct mgcp_conn *conn;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200172
Philipp Maier87bd9be2017-08-22 16:35:41 +0200173 /* Specific connection type */
174 enum mgcp_conn_rtp_type type;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200175
Philipp Maier87bd9be2017-08-22 16:35:41 +0200176 /* Port status */
177 struct mgcp_rtp_end end;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200178
Philipp Maier87bd9be2017-08-22 16:35:41 +0200179 /* Sequence bits */
180 struct mgcp_rtp_state state;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200181
Harald Welte3f35a372017-12-26 15:48:46 +0100182 /* taps for the rtp connection; one per direction */
Philipp Maier87bd9be2017-08-22 16:35:41 +0200183 struct mgcp_rtp_tap tap_in;
184 struct mgcp_rtp_tap tap_out;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200185
Philipp Maier87bd9be2017-08-22 16:35:41 +0200186 /* Osmux states (optional) */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200187 struct {
188 /* Osmux state: disabled, activating, active */
189 enum osmux_state state;
190 /* Allocated Osmux circuit ID for this endpoint */
191 int allocated_cid;
192 /* Used Osmux circuit ID for this endpoint */
193 uint8_t cid;
194 /* handle to batch messages */
195 struct osmux_in_handle *in;
196 /* handle to unbatch messages */
197 struct osmux_out_handle out;
198 /* statistics */
199 struct {
200 uint32_t chunks;
201 uint32_t octets;
202 } stats;
203 } osmux;
204};
205
Philipp Maier87bd9be2017-08-22 16:35:41 +0200206/*! Connection type, specifies which member of the union "u" in mgcp_conn
207 * contains a useful connection description (currently only RTP) */
208enum mgcp_conn_type {
209 MGCP_CONN_TYPE_RTP,
210};
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200211
Philipp Maier87bd9be2017-08-22 16:35:41 +0200212/*! MGCP connection (untyped) */
213struct mgcp_conn {
214 /*!< list head */
215 struct llist_head entry;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200216
Philipp Maier87bd9be2017-08-22 16:35:41 +0200217 /*!< Backpointer to the endpoint where the conn belongs to */
218 struct mgcp_endpoint *endp;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200219
Philipp Maier87bd9be2017-08-22 16:35:41 +0200220 /*!< type of the connection (union) */
221 enum mgcp_conn_type type;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200222
Philipp Maier87bd9be2017-08-22 16:35:41 +0200223 /*!< mode of the connection */
224 enum mgcp_connection_mode mode;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200225
Philipp Maier87bd9be2017-08-22 16:35:41 +0200226 /*!< copy of the mode to restore the original setting (VTY) */
227 enum mgcp_connection_mode mode_orig;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200228
Harald Welte1d1b98f2017-12-25 10:03:40 +0100229 /*!< connection id to identify the connection */
Philipp Maier01d24a32017-11-21 17:26:09 +0100230 char id[MGCP_CONN_ID_LENGTH];
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200231
Philipp Maier87bd9be2017-08-22 16:35:41 +0200232 /*!< human readable name (vty, logging) */
233 char name[256];
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200234
Philipp Maier87bd9be2017-08-22 16:35:41 +0200235 /*!< union with connection description */
236 union {
237 struct mgcp_conn_rtp rtp;
238 } u;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200239
Philipp Maier87bd9be2017-08-22 16:35:41 +0200240 /*!< pointer to optional private data */
241 void *priv;
242};
243
244#include <osmocom/mgcp/mgcp_conn.h>
245
246struct mgcp_endpoint_type;
247
248struct mgcp_endpoint {
249 char *callid;
250 struct mgcp_lco local_options;
251
252 struct llist_head conns;
253
254 /* backpointer */
255 struct mgcp_config *cfg;
256 struct mgcp_trunk_config *tcfg;
257
258 const struct mgcp_endpoint_type *type;
259
260 /* fields for re-transmission */
261 char *last_trans;
262 char *last_response;
263};
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200264
265
266#define ENDPOINT_NUMBER(endp) abs((int)(endp - endp->tcfg->endpoints))
267
268/**
269 * Internal structure while parsing a request
270 */
271struct mgcp_parse_data {
272 struct mgcp_config *cfg;
273 struct mgcp_endpoint *endp;
274 char *trans;
275 char *save;
276 int found;
277};
278
Philipp Maier87bd9be2017-08-22 16:35:41 +0200279int mgcp_send(struct mgcp_endpoint *endp, int is_rtp, struct sockaddr_in *addr,
280 char *buf, int rc, struct mgcp_conn_rtp *conn_src,
281 struct mgcp_conn_rtp *conn_dst);
282int mgcp_send_dummy(struct mgcp_endpoint *endp, struct mgcp_conn_rtp *conn);
283int mgcp_dispatch_rtp_bridge_cb(int proto, struct sockaddr_in *addr, char *buf,
284 unsigned int buf_size, struct mgcp_conn *conn);
285int mgcp_bind_net_rtp_port(struct mgcp_endpoint *endp, int rtp_port,
286 struct mgcp_conn_rtp *conn);
287void mgcp_free_rtp_port(struct mgcp_rtp_end *end);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200288
289/* For transcoding we need to manage an in and an output that are connected */
290static inline int endp_back_channel(int endpoint)
291{
292 return endpoint + 60;
293}
294
295struct mgcp_trunk_config *mgcp_trunk_alloc(struct mgcp_config *cfg, int index);
296struct mgcp_trunk_config *mgcp_trunk_num(struct mgcp_config *cfg, int index);
297
298void mgcp_rtp_end_config(struct mgcp_endpoint *endp, int expect_ssrc_change,
299 struct mgcp_rtp_end *rtp);
300uint32_t mgcp_rtp_packet_duration(struct mgcp_endpoint *endp,
301 struct mgcp_rtp_end *rtp);
302
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200303/* payload processing default functions */
304int mgcp_rtp_processing_default(struct mgcp_endpoint *endp, struct mgcp_rtp_end *dst_end,
305 char *data, int *len, int buf_size);
306
307int mgcp_setup_rtp_processing_default(struct mgcp_endpoint *endp,
308 struct mgcp_rtp_end *dst_end,
309 struct mgcp_rtp_end *src_end);
310
311void mgcp_get_net_downlink_format_default(struct mgcp_endpoint *endp,
312 int *payload_type,
Philipp Maier87bd9be2017-08-22 16:35:41 +0200313 const char**audio_name,
314 const char**fmtp_extra,
315 struct mgcp_conn_rtp *conn);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200316
317/* internal RTP Annex A counting */
318void mgcp_rtp_annex_count(struct mgcp_endpoint *endp, struct mgcp_rtp_state *state,
319 const uint16_t seq, const int32_t transit,
320 const uint32_t ssrc);
321
322int mgcp_set_ip_tos(int fd, int tos);
323
324enum {
325 MGCP_DEST_NET = 0,
326 MGCP_DEST_BTS,
327};
328
329
330#define MGCP_DUMMY_LOAD 0x23
331
332
333/**
334 * SDP related information
335 */
336/* Assume audio frame length of 20ms */
337#define DEFAULT_RTP_AUDIO_FRAME_DUR_NUM 20
338#define DEFAULT_RTP_AUDIO_FRAME_DUR_DEN 1000
339#define DEFAULT_RTP_AUDIO_PACKET_DURATION_MS 20
340#define DEFAULT_RTP_AUDIO_DEFAULT_RATE 8000
341#define DEFAULT_RTP_AUDIO_DEFAULT_CHANNELS 1
342
343#define PTYPE_UNDEFINED (-1)
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200344
Philipp Maier1cb1e382017-11-02 17:16:04 +0100345void mgcp_get_local_addr(char *addr, struct mgcp_conn_rtp *conn);