blob: a7cd6cfdf88147800948b50be3f17df7c96f6577 [file] [log] [blame]
Philipp Maier87bd9be2017-08-22 16:35:41 +02001/* Message connection list handling */
2
3/*
4 * (C) 2017 by sysmocom s.f.m.c. GmbH <info@sysmocom.de>
5 * All Rights Reserved
6 *
7 * Author: Philipp Maier
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
18 *
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 *
22 */
23
24#include <osmocom/mgcp/mgcp_conn.h>
25#include <osmocom/mgcp/mgcp_internal.h>
Neels Hofmeyr67793542017-09-08 04:25:16 +020026#include <osmocom/mgcp/mgcp_common.h>
Philipp Maier37d11c82018-02-01 14:38:12 +010027#include <osmocom/mgcp/mgcp_endp.h>
Philipp Maierffd75e42017-11-22 11:44:50 +010028#include <osmocom/gsm/gsm_utils.h>
Philipp Maier9e1d1642018-05-09 16:26:34 +020029#include <osmocom/core/rate_ctr.h>
Philipp Maierffd75e42017-11-22 11:44:50 +010030#include <ctype.h>
31
Philipp Maier9e1d1642018-05-09 16:26:34 +020032enum {
33 IN_STREAM_ERR_TSTMP_CTR,
34 OUT_STREAM_ERR_TSTMP_CTR,
35};
36
37static const struct rate_ctr_desc rate_ctr_desc[] = {
38 [IN_STREAM_ERR_TSTMP_CTR] = {"stream_err_tstmp:in", "Inbound rtp-stream timestamp errors."},
39 [OUT_STREAM_ERR_TSTMP_CTR] = {"stream_err_tstmp:out", "Outbound rtp-stream timestamp errors."},
40};
41
42
43const static struct rate_ctr_group_desc rate_ctr_group_desc = {
44 .group_name_prefix = "conn_rtp",
45 .group_description = "rtp connection statistics",
46 .class_id = 1,
47 .num_ctr = 2,
48 .ctr_desc = rate_ctr_desc
49};
50
51
Philipp Maierffd75e42017-11-22 11:44:50 +010052/* Allocate a new connection identifier. According to RFC3435, they must
Philipp Maierf8bfbe82017-11-23 19:32:31 +010053 * be unique only within the scope of the endpoint. (Caller must provide
54 * memory for id) */
Philipp Maierffd75e42017-11-22 11:44:50 +010055static int mgcp_alloc_id(struct mgcp_endpoint *endp, char *id)
56{
57 int i;
58 int k;
59 int rc;
60 uint8_t id_bin[16];
61 char *id_hex;
62
63 /* Generate a connection id that is unique for the current endpoint.
64 * Technically a counter would be sufficient, but in order to
65 * be able to find a specific connection in large logfiles and to
66 * prevent unintentional connections we assign the connection
67 * identifiers randomly from a reasonable large number space */
68 for (i = 0; i < 32; i++) {
69 rc = osmo_get_rand_id(id_bin, sizeof(id_bin));
70 if (rc < 0)
71 return rc;
72
73 id_hex = osmo_hexdump_nospc(id_bin, sizeof(id_bin));
74 for (k = 0; k < strlen(id_hex); k++)
75 id_hex[k] = toupper(id_hex[k]);
76
77 /* ensure that the generated conn_id is unique
78 * for this endpoint */
79 if (!mgcp_conn_get_rtp(endp, id_hex)) {
80 osmo_strlcpy(id, id_hex, MGCP_CONN_ID_LENGTH);
81 return 0;
82 }
83 }
84
Philipp Maier230e4fc2017-11-28 09:38:45 +010085 LOGP(DLMGCP, LOGL_ERROR, "endpoint:0x%x, unable to generate a unique connectionIdentifier\n",
Philipp Maierffd75e42017-11-22 11:44:50 +010086 ENDPOINT_NUMBER(endp));
87
88 return -1;
89}
Philipp Maier87bd9be2017-08-22 16:35:41 +020090
91/* Reset codec state and free memory */
Philipp Maier77f76d02018-03-16 12:37:49 +010092static void mgcp_rtp_codec_init(struct mgcp_rtp_codec *codec)
Philipp Maier87bd9be2017-08-22 16:35:41 +020093{
94 codec->payload_type = -1;
95 codec->subtype_name = NULL;
96 codec->audio_name = NULL;
97 codec->frame_duration_num = DEFAULT_RTP_AUDIO_FRAME_DUR_NUM;
98 codec->frame_duration_den = DEFAULT_RTP_AUDIO_FRAME_DUR_DEN;
99 codec->rate = DEFAULT_RTP_AUDIO_DEFAULT_RATE;
100 codec->channels = DEFAULT_RTP_AUDIO_DEFAULT_CHANNELS;
101
102 /* see also mgcp_sdp.c, mgcp_set_audio_info() */
103 talloc_free(codec->subtype_name);
104 talloc_free(codec->audio_name);
105}
106
Philipp Maierc430d192018-03-16 12:11:18 +0100107/* Initialize rtp connection struct with default values */
Philipp Maier892dec02018-03-16 12:32:01 +0100108static void mgcp_rtp_conn_init(struct mgcp_conn_rtp *conn_rtp, struct mgcp_conn *conn)
Philipp Maier87bd9be2017-08-22 16:35:41 +0200109{
Philipp Maier892dec02018-03-16 12:32:01 +0100110 struct mgcp_rtp_end *end = &conn_rtp->end;
Philipp Maier9e1d1642018-05-09 16:26:34 +0200111 /* FIXME: Each new rate counter group requires an unique index. At the
112 * moment we generate this index using this counter, but perhaps there
113 * is a more concious way to assign the indexes. */
114 static unsigned int rate_ctr_index = 0;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200115
Philipp Maier892dec02018-03-16 12:32:01 +0100116 conn_rtp->type = MGCP_RTP_DEFAULT;
117 conn_rtp->osmux.allocated_cid = -1;
118
119 /* backpointer to the generic part of the connection */
120 conn->u.rtp.conn = conn;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200121
122 end->rtp.fd = -1;
123 end->rtcp.fd = -1;
Harald Weltea0ac30f2017-12-25 09:52:30 +0100124 memset(&end->stats, 0, sizeof(end->stats));
Philipp Maier87bd9be2017-08-22 16:35:41 +0200125 end->rtp_port = end->rtcp_port = 0;
126 talloc_free(end->fmtp_extra);
127 end->fmtp_extra = NULL;
128
129 /* Set default values */
130 end->frames_per_packet = 0; /* unknown */
131 end->packet_duration_ms = DEFAULT_RTP_AUDIO_PACKET_DURATION_MS;
132 end->output_enabled = 0;
133
Philipp Maier77f76d02018-03-16 12:37:49 +0100134 mgcp_rtp_codec_init(&end->codec);
Philipp Maier9e1d1642018-05-09 16:26:34 +0200135
136 conn_rtp->rate_ctr_group = rate_ctr_group_alloc(conn, &rate_ctr_group_desc, rate_ctr_index);
137 conn_rtp->state.in_stream.err_ts_ctr = &conn_rtp->rate_ctr_group->ctr[IN_STREAM_ERR_TSTMP_CTR];
138 conn_rtp->state.out_stream.err_ts_ctr = &conn_rtp->rate_ctr_group->ctr[OUT_STREAM_ERR_TSTMP_CTR];
139 rate_ctr_index++;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200140}
141
Philipp Maierd0b470d2018-03-16 12:45:53 +0100142/* Cleanup rtp connection struct */
143static void mgcp_rtp_conn_cleanup(struct mgcp_conn_rtp *conn_rtp)
144{
145 osmux_disable_conn(conn_rtp);
146 osmux_release_cid(conn_rtp);
147 mgcp_free_rtp_port(&conn_rtp->end);
Philipp Maier9e1d1642018-05-09 16:26:34 +0200148 rate_ctr_group_free(conn_rtp->rate_ctr_group);
Philipp Maierd0b470d2018-03-16 12:45:53 +0100149}
150
Philipp Maier87bd9be2017-08-22 16:35:41 +0200151/*! allocate a new connection list entry.
152 * \param[in] ctx talloc context
153 * \param[in] endp associated endpoint
154 * \param[in] id identification number of the connection
155 * \param[in] type connection type (e.g. MGCP_CONN_TYPE_RTP)
156 * \returns pointer to allocated connection, NULL on error */
157struct mgcp_conn *mgcp_conn_alloc(void *ctx, struct mgcp_endpoint *endp,
Philipp Maierffd75e42017-11-22 11:44:50 +0100158 enum mgcp_conn_type type, char *name)
Philipp Maier87bd9be2017-08-22 16:35:41 +0200159{
160 struct mgcp_conn *conn;
Philipp Maierffd75e42017-11-22 11:44:50 +0100161 int rc;
162
Philipp Maier87bd9be2017-08-22 16:35:41 +0200163 /* Do not allow more then two connections */
164 if (llist_count(&endp->conns) >= endp->type->max_conns)
165 return NULL;
166
Philipp Maier87bd9be2017-08-22 16:35:41 +0200167 /* Create new connection and add it to the list */
168 conn = talloc_zero(ctx, struct mgcp_conn);
169 if (!conn)
170 return NULL;
171 conn->endp = endp;
172 conn->type = type;
173 conn->mode = MGCP_CONN_NONE;
174 conn->mode_orig = MGCP_CONN_NONE;
Philipp Maierf8bfbe82017-11-23 19:32:31 +0100175 osmo_strlcpy(conn->name, name, sizeof(conn->name));
Philipp Maierffd75e42017-11-22 11:44:50 +0100176 rc = mgcp_alloc_id(endp, conn->id);
177 if (rc < 0) {
178 talloc_free(conn);
179 return NULL;
180 }
Philipp Maier87bd9be2017-08-22 16:35:41 +0200181
182 switch (type) {
183 case MGCP_CONN_TYPE_RTP:
Philipp Maier892dec02018-03-16 12:32:01 +0100184 mgcp_rtp_conn_init(&conn->u.rtp, conn);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200185 break;
186 default:
187 /* NOTE: This should never be called with an
188 * invalid type, its up to the programmer
189 * to ensure propery types */
190 OSMO_ASSERT(false);
191 }
192
193 llist_add(&conn->entry, &endp->conns);
194
195 return conn;
196}
197
198/*! find a connection by its ID.
199 * \param[in] endp associated endpoint
200 * \param[in] id identification number of the connection
201 * \returns pointer to allocated connection, NULL if not found */
Philipp Maier01d24a32017-11-21 17:26:09 +0100202struct mgcp_conn *mgcp_conn_get(struct mgcp_endpoint *endp, const char *id)
Philipp Maier87bd9be2017-08-22 16:35:41 +0200203{
Philipp Maier87bd9be2017-08-22 16:35:41 +0200204 struct mgcp_conn *conn;
205
206 llist_for_each_entry(conn, &endp->conns, entry) {
Philipp Maier01d24a32017-11-21 17:26:09 +0100207 if (strncmp(conn->id, id, sizeof(conn->id)) == 0)
Philipp Maier87bd9be2017-08-22 16:35:41 +0200208 return conn;
209 }
210
211 return NULL;
212}
213
214/*! find an RTP connection by its ID.
215 * \param[in] endp associated endpoint
216 * \param[in] id identification number of the connection
217 * \returns pointer to allocated connection, NULL if not found */
Philipp Maier01d24a32017-11-21 17:26:09 +0100218struct mgcp_conn_rtp *mgcp_conn_get_rtp(struct mgcp_endpoint *endp,
219 const char *id)
Philipp Maier87bd9be2017-08-22 16:35:41 +0200220{
Philipp Maier87bd9be2017-08-22 16:35:41 +0200221 struct mgcp_conn *conn;
222
223 conn = mgcp_conn_get(endp, id);
224 if (!conn)
225 return NULL;
226
227 if (conn->type == MGCP_CONN_TYPE_RTP)
228 return &conn->u.rtp;
229
230 return NULL;
231}
232
233/*! free a connection by its ID.
234 * \param[in] endp associated endpoint
235 * \param[in] id identification number of the connection */
Philipp Maier01d24a32017-11-21 17:26:09 +0100236void mgcp_conn_free(struct mgcp_endpoint *endp, const char *id)
Philipp Maier87bd9be2017-08-22 16:35:41 +0200237{
Philipp Maier87bd9be2017-08-22 16:35:41 +0200238 struct mgcp_conn *conn;
239
240 conn = mgcp_conn_get(endp, id);
241 if (!conn)
242 return;
243
Philipp Maierdf5d2192018-01-24 11:39:32 +0100244 /* Run endpoint cleanup action. By this we inform the endpoint about
245 * the removal of the connection and allow it to clean up its inner
246 * state accordingly */
247 if (endp->type->cleanup_cb)
248 endp->type->cleanup_cb(endp, conn);
249
Philipp Maier87bd9be2017-08-22 16:35:41 +0200250 switch (conn->type) {
251 case MGCP_CONN_TYPE_RTP:
Philipp Maierd0b470d2018-03-16 12:45:53 +0100252 mgcp_rtp_conn_cleanup(&conn->u.rtp);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200253 break;
254 default:
255 /* NOTE: This should never be called with an
256 * invalid type, its up to the programmer
257 * to ensure propery types */
258 OSMO_ASSERT(false);
259 }
260
261 llist_del(&conn->entry);
262 talloc_free(conn);
263}
264
265/*! free oldest connection in the list.
266 * \param[in] endp associated endpoint */
267void mgcp_conn_free_oldest(struct mgcp_endpoint *endp)
268{
Philipp Maier87bd9be2017-08-22 16:35:41 +0200269 struct mgcp_conn *conn;
270
271 if (llist_empty(&endp->conns))
272 return;
273
274 conn = llist_last_entry(&endp->conns, struct mgcp_conn, entry);
275 if (!conn)
276 return;
277
278 mgcp_conn_free(endp, conn->id);
279}
280
281/*! free all connections at once.
282 * \param[in] endp associated endpoint */
283void mgcp_conn_free_all(struct mgcp_endpoint *endp)
284{
Philipp Maier87bd9be2017-08-22 16:35:41 +0200285 struct mgcp_conn *conn;
286 struct mgcp_conn *conn_tmp;
287
288 /* Drop all items in the list */
289 llist_for_each_entry_safe(conn, conn_tmp, &endp->conns, entry) {
290 mgcp_conn_free(endp, conn->id);
291 }
292
293 return;
294}
295
Harald Welte1d1b98f2017-12-25 10:03:40 +0100296/*! dump basic connection information to human readable string.
Philipp Maier87bd9be2017-08-22 16:35:41 +0200297 * \param[in] conn to dump
Harald Welte1d1b98f2017-12-25 10:03:40 +0100298 * \returns human readable string */
Philipp Maier87bd9be2017-08-22 16:35:41 +0200299char *mgcp_conn_dump(struct mgcp_conn *conn)
300{
Philipp Maier01d24a32017-11-21 17:26:09 +0100301 static char str[sizeof(conn->name)+sizeof(conn->id)+256];
Philipp Maier87bd9be2017-08-22 16:35:41 +0200302
303 if (!conn) {
304 snprintf(str, sizeof(str), "(null connection)");
305 return str;
306 }
307
308 switch (conn->type) {
309 case MGCP_CONN_TYPE_RTP:
310 /* Dump RTP connection */
Philipp Maier01d24a32017-11-21 17:26:09 +0100311 snprintf(str, sizeof(str), "(%s/rtp, id:0x%s, ip:%s, "
Philipp Maier87bd9be2017-08-22 16:35:41 +0200312 "rtp:%u rtcp:%u)",
313 conn->name,
314 conn->id,
315 inet_ntoa(conn->u.rtp.end.addr),
316 ntohs(conn->u.rtp.end.rtp_port),
317 ntohs(conn->u.rtp.end.rtcp_port));
318 break;
319
320 default:
321 /* Should not happen, we should be able to dump
322 * every possible connection type. */
323 snprintf(str, sizeof(str), "(unknown connection type)");
324 break;
325 }
326
327 return str;
328}
329
330/*! find destination connection on a specific endpoint.
331 * \param[in] conn to search a destination for
332 * \returns destination connection, NULL on failure */
333struct mgcp_conn *mgcp_find_dst_conn(struct mgcp_conn *conn)
334{
335 struct mgcp_endpoint *endp;
336 struct mgcp_conn *partner_conn;
337 endp = conn->endp;
338
339 /*! NOTE: This simply works by grabbing the first connection that is
340 * not the supplied connection, which is suitable for endpoints that
341 * do not serve more than two connections. */
342
343 llist_for_each_entry(partner_conn, &endp->conns, entry) {
344 if (conn != partner_conn) {
345 return partner_conn;
346 }
347 }
348
349 return NULL;
350}