blob: de19042e3afb6403d60d3eebbc5ec3d2fbfb0e59 [file] [log] [blame]
Neels Hofmeyrf83ec562017-09-07 19:18:40 +02001/*
2 * (C) 2012-2013 by Pablo Neira Ayuso <pablo@gnumonks.org>
3 * (C) 2012-2013 by On Waves ehf <http://www.on-waves.com>
4 * All rights not specifically granted under this license are reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU Affero General Public License as published by the
8 * Free Software Foundation; either version 3 of the License, or (at your
9 * option) any later version.
10 */
11
12#include <stdio.h> /* for printf */
13#include <string.h> /* for memcpy */
14#include <stdlib.h> /* for abs */
15#include <inttypes.h> /* for PRIu64 */
16#include <netinet/in.h>
17#include <osmocom/core/msgb.h>
Pau Espin Pedrolf027f172019-05-06 13:57:31 +020018#include <osmocom/core/socket.h>
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020019#include <osmocom/core/talloc.h>
20
21#include <osmocom/netif/osmux.h>
22#include <osmocom/netif/rtp.h>
Pau Espin Pedrolc1ad5532019-05-15 23:00:53 +020023#include <osmocom/netif/amr.h>
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020024
Philipp Maier87bd9be2017-08-22 16:35:41 +020025#include <osmocom/mgcp/mgcp.h>
Philipp Maier993ea6b2020-08-04 18:26:50 +020026#include <osmocom/mgcp/mgcp_protocol.h>
Philipp Maier87bd9be2017-08-22 16:35:41 +020027#include <osmocom/mgcp/osmux.h>
28#include <osmocom/mgcp/mgcp_conn.h>
Philipp Maier37d11c82018-02-01 14:38:12 +010029#include <osmocom/mgcp/mgcp_endp.h>
Philipp Maierc66ab2c2020-06-02 20:55:34 +020030#include <osmocom/mgcp/mgcp_trunk.h>
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020031
32static struct osmo_fd osmux_fd;
33
34static LLIST_HEAD(osmux_handle_list);
35
36struct osmux_handle {
37 struct llist_head head;
Pau Espin Pedrol24914012020-09-08 12:57:35 +020038 struct mgcp_conn_rtp *conn;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020039 struct osmux_in_handle *in;
40 struct in_addr rem_addr;
Pau Espin Pedrol12056862019-05-13 17:30:21 +020041 int rem_port; /* network byte order */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020042 int refcnt;
43};
44
45static void *osmux;
46
Philipp Maier87bd9be2017-08-22 16:35:41 +020047/* Deliver OSMUX batch to the remote end */
48static void osmux_deliver_cb(struct msgb *batch_msg, void *data)
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020049{
50 struct osmux_handle *handle = data;
Pau Espin Pedrol24914012020-09-08 12:57:35 +020051 struct mgcp_conn_rtp *conn = handle->conn;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020052
Pau Espin Pedrol24914012020-09-08 12:57:35 +020053 if (conn->end.output_enabled) {
54 struct sockaddr_in out = {
55 .sin_family = AF_INET,
56 .sin_port = handle->rem_port,
57 };
58 memcpy(&out.sin_addr, &handle->rem_addr, sizeof(handle->rem_addr));
59 sendto(osmux_fd.fd, batch_msg->data, batch_msg->len, 0,
60 (struct sockaddr *)&out, sizeof(out));
61 }
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020062 msgb_free(batch_msg);
63}
64
Philipp Maier87bd9be2017-08-22 16:35:41 +020065/* Lookup existing OSMUX handle for specified destination address. */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020066static struct osmux_handle *
67osmux_handle_find_get(struct in_addr *addr, int rem_port)
68{
69 struct osmux_handle *h;
70
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020071 llist_for_each_entry(h, &osmux_handle_list, head) {
72 if (memcmp(&h->rem_addr, addr, sizeof(struct in_addr)) == 0 &&
73 h->rem_port == rem_port) {
74 LOGP(DLMGCP, LOGL_DEBUG, "using existing OSMUX handle "
75 "for addr=%s:%d\n",
76 inet_ntoa(*addr), ntohs(rem_port));
77 h->refcnt++;
78 return h;
79 }
80 }
81
82 return NULL;
83}
84
Philipp Maier87bd9be2017-08-22 16:35:41 +020085/* Put down no longer needed OSMUX handle */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020086static void osmux_handle_put(struct osmux_in_handle *in)
87{
88 struct osmux_handle *h;
89
Neels Hofmeyrf83ec562017-09-07 19:18:40 +020090 llist_for_each_entry(h, &osmux_handle_list, head) {
91 if (h->in == in) {
92 if (--h->refcnt == 0) {
93 LOGP(DLMGCP, LOGL_INFO,
94 "Releasing unused osmux handle for %s:%d\n",
95 inet_ntoa(h->rem_addr),
96 ntohs(h->rem_port));
97 LOGP(DLMGCP, LOGL_INFO, "Stats: "
98 "input RTP msgs: %u bytes: %"PRIu64" "
99 "output osmux msgs: %u bytes: %"PRIu64"\n",
100 in->stats.input_rtp_msgs,
101 in->stats.input_rtp_bytes,
102 in->stats.output_osmux_msgs,
103 in->stats.output_osmux_bytes);
104 llist_del(&h->head);
105 osmux_xfrm_input_fini(h->in);
106 talloc_free(h);
107 }
108 return;
109 }
110 }
111 LOGP(DLMGCP, LOGL_ERROR, "cannot find Osmux input handle %p\n", in);
112}
113
Philipp Maier87bd9be2017-08-22 16:35:41 +0200114/* Allocate free OSMUX handle */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200115static struct osmux_handle *
Pau Espin Pedrol24914012020-09-08 12:57:35 +0200116osmux_handle_alloc(struct mgcp_conn_rtp *conn, struct in_addr *addr, int rem_port)
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200117{
118 struct osmux_handle *h;
Ericfbf78d12021-08-23 22:31:39 +0200119 struct mgcp_config *cfg = conn->conn->endp->trunk->cfg;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200120
121 h = talloc_zero(osmux, struct osmux_handle);
122 if (!h)
123 return NULL;
Pau Espin Pedrol24914012020-09-08 12:57:35 +0200124 h->conn = conn;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200125 h->rem_addr = *addr;
126 h->rem_port = rem_port;
127 h->refcnt++;
128
129 h->in = talloc_zero(h, struct osmux_in_handle);
130 if (!h->in) {
131 talloc_free(h);
132 return NULL;
133 }
134
Philipp Maier87bd9be2017-08-22 16:35:41 +0200135 /* sequence number to start OSMUX message from */
136 h->in->osmux_seq = 0;
137
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200138 h->in->batch_factor = cfg->osmux_batch;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200139
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200140 /* If batch size is zero, the library defaults to 1470 bytes. */
141 h->in->batch_size = cfg->osmux_batch_size;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200142 h->in->deliver = osmux_deliver_cb;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200143 osmux_xfrm_input_init(h->in);
144 h->in->data = h;
145
146 llist_add(&h->head, &osmux_handle_list);
147
148 LOGP(DLMGCP, LOGL_DEBUG, "created new OSMUX handle for addr=%s:%d\n",
149 inet_ntoa(*addr), ntohs(rem_port));
150
151 return h;
152}
153
Philipp Maier87bd9be2017-08-22 16:35:41 +0200154/* Lookup existing handle for a specified address, if the handle can not be
Harald Welte1d1b98f2017-12-25 10:03:40 +0100155 * found, the function will automatically allocate one */
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200156static struct osmux_in_handle *
Pau Espin Pedrol24914012020-09-08 12:57:35 +0200157osmux_handle_lookup(struct mgcp_conn_rtp *conn, struct osmo_sockaddr *addr, int rem_port)
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200158{
159 struct osmux_handle *h;
160
Pau Espin Pedrola790f0c2020-08-31 13:29:11 +0200161 if (addr->u.sa.sa_family != AF_INET) {
162 LOGP(DLMGCP, LOGL_DEBUG, "IPv6 not supported in osmux yet!\n");
163 return NULL;
164 }
165
166 h = osmux_handle_find_get(&addr->u.sin.sin_addr, rem_port);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200167 if (h != NULL)
168 return h->in;
169
Pau Espin Pedrol24914012020-09-08 12:57:35 +0200170 h = osmux_handle_alloc(conn, &addr->u.sin.sin_addr, rem_port);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200171 if (h == NULL)
172 return NULL;
173
174 return h->in;
175}
176
Philipp Maier87bd9be2017-08-22 16:35:41 +0200177/*! send RTP packet through OSMUX connection.
178 * \param[in] buf rtp data
179 * \param[in] buf_len length of rtp data
180 * \param[in] conn associated RTP connection
181 * \returns 0 on success, -1 on ERROR */
182int osmux_xfrm_to_osmux(char *buf, int buf_len, struct mgcp_conn_rtp *conn)
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200183{
184 int ret;
185 struct msgb *msg;
186
187 msg = msgb_alloc(4096, "RTP");
188 if (!msg)
Philipp Maier87bd9be2017-08-22 16:35:41 +0200189 return -1;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200190
Philipp Maier87bd9be2017-08-22 16:35:41 +0200191 memcpy(msg->data, buf, buf_len);
192 msgb_put(msg, buf_len);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200193
Pau Espin Pedrol1442c5a2019-05-06 16:10:10 +0200194 if (conn->osmux.state != OSMUX_STATE_ENABLED) {
195 LOGPCONN(conn->conn, DLMGCP, LOGL_INFO, "forwarding RTP to Osmux conn not yet enabled, dropping (cid=%d)\n",
196 conn->osmux.cid);
197 return -1;
198 }
199
Philipp Maier87bd9be2017-08-22 16:35:41 +0200200 while ((ret = osmux_xfrm_input(conn->osmux.in, msg, conn->osmux.cid)) > 0) {
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200201 /* batch full, build and deliver it */
Philipp Maier87bd9be2017-08-22 16:35:41 +0200202 osmux_xfrm_input_deliver(conn->osmux.in);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200203 }
204 return 0;
205}
206
Philipp Maier87bd9be2017-08-22 16:35:41 +0200207/* Lookup the endpoint that corresponds to the specified address (port) */
Pau Espin Pedrol1442c5a2019-05-06 16:10:10 +0200208static struct mgcp_conn_rtp*
209osmux_conn_lookup(struct mgcp_config *cfg, uint8_t cid,
210 struct in_addr *from_addr)
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200211{
Philipp Maier6fbbeec2020-07-01 23:00:54 +0200212 struct mgcp_trunk *trunk = mgcp_trunk_by_num(cfg, MGCP_TRUNK_VIRTUAL, MGCP_VIRT_TRUNK_ID);
Pau Espin Pedrol1442c5a2019-05-06 16:10:10 +0200213 struct mgcp_endpoint *endp;
214 struct mgcp_conn *conn = NULL;
215 struct mgcp_conn_rtp * conn_rtp;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200216 int i;
217
Philipp Maierd19de2e2020-06-03 13:55:33 +0200218 for (i = 0; i < trunk->number_endpoints; i++) {
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200219
Philipp Maierd19de2e2020-06-03 13:55:33 +0200220 endp = trunk->endpoints[i];
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200221
Pau Espin Pedrol1442c5a2019-05-06 16:10:10 +0200222 llist_for_each_entry(conn, &endp->conns, entry) {
223 if (conn->type != MGCP_CONN_TYPE_RTP)
224 continue;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200225
Pau Espin Pedrol1442c5a2019-05-06 16:10:10 +0200226 conn_rtp = &conn->u.rtp;
227 if (!mgcp_conn_rtp_is_osmux(conn_rtp))
228 continue;
229
230 if (conn_rtp->osmux.cid == cid)
231 return conn_rtp;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200232 }
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200233 }
234
Pau Espin Pedrol1442c5a2019-05-06 16:10:10 +0200235 LOGP(DLMGCP, LOGL_ERROR, "Cannot find osmux conn with cid=%d\n", cid);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200236
237 return NULL;
238}
239
Pau Espin Pedrol1442c5a2019-05-06 16:10:10 +0200240/* FIXME: this is declared and used in mgcp_network.c, but documentation of mgcp_dispatch_rtp_bridge_cb() states another enum is to be used */
241enum {
242 MGCP_PROTO_RTP,
243 MGCP_PROTO_RTCP,
244};
245
246static void scheduled_from_osmux_tx_rtp_cb(struct msgb *msg, void *data)
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200247{
Pau Espin Pedrol1442c5a2019-05-06 16:10:10 +0200248 struct mgcp_conn_rtp *conn = data;
249 struct mgcp_endpoint *endp = conn->conn->endp;
Pau Espin Pedrola790f0c2020-08-31 13:29:11 +0200250 struct osmo_sockaddr addr = { /* FIXME: do we know the source address?? */ };
Neels Hofmeyr51b42ff2020-06-19 01:34:42 +0200251 struct osmo_rtp_msg_ctx *mc = OSMO_RTP_MSG_CTX(msg);
252 *mc = (struct osmo_rtp_msg_ctx){
253 .proto = MGCP_PROTO_RTP,
254 .conn_src = conn,
255 .from_addr = &addr,
256 };
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200257
Neels Hofmeyr51b42ff2020-06-19 01:34:42 +0200258 endp->type->dispatch_rtp_cb(msg);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200259 msgb_free(msg);
260}
261
262static struct msgb *osmux_recv(struct osmo_fd *ofd, struct sockaddr_in *addr)
263{
264 struct msgb *msg;
265 socklen_t slen = sizeof(*addr);
266 int ret;
267
268 msg = msgb_alloc(4096, "OSMUX");
269 if (!msg) {
270 LOGP(DLMGCP, LOGL_ERROR, "cannot allocate message\n");
271 return NULL;
272 }
273 ret = recvfrom(ofd->fd, msg->data, msg->data_len, 0,
274 (struct sockaddr *)addr, &slen);
275 if (ret <= 0) {
276 msgb_free(msg);
277 LOGP(DLMGCP, LOGL_ERROR, "cannot receive message\n");
278 return NULL;
279 }
280 msgb_put(msg, ret);
281
282 return msg;
283}
284
Pau Espin Pedrolde2a4d72018-10-16 16:37:43 +0200285/* Updates endp osmux state and returns 0 if it can process messages, -1 otherwise */
286static int endp_osmux_state_check(struct mgcp_endpoint *endp, struct mgcp_conn_rtp *conn,
287 bool sending)
288{
Pau Espin Pedrola790f0c2020-08-31 13:29:11 +0200289 char ipbuf[INET6_ADDRSTRLEN];
290
Pau Espin Pedrolde2a4d72018-10-16 16:37:43 +0200291 switch(conn->osmux.state) {
292 case OSMUX_STATE_ACTIVATING:
Pau Espin Pedrol295570c2019-05-13 17:32:47 +0200293 if (osmux_enable_conn(endp, conn, &conn->end.addr, conn->end.rtp_port) < 0) {
Pau Espin Pedrolc9a62802019-05-13 13:20:13 +0200294 LOGPCONN(conn->conn, DLMGCP, LOGL_ERROR,
Pau Espin Pedrol37525222019-05-13 17:34:14 +0200295 "Could not enable osmux for conn on %s: %s\n",
296 sending ? "sent" : "received",
Pau Espin Pedrolc9a62802019-05-13 13:20:13 +0200297 mgcp_conn_dump(conn->conn));
Pau Espin Pedrolde2a4d72018-10-16 16:37:43 +0200298 return -1;
299 }
Pau Espin Pedrolc9a62802019-05-13 13:20:13 +0200300 LOGPCONN(conn->conn, DLMGCP, LOGL_ERROR,
Pau Espin Pedrol37525222019-05-13 17:34:14 +0200301 "Osmux %s CID %u towards %s:%u is now enabled\n",
302 sending ? "sent" : "received",
Pau Espin Pedrola790f0c2020-08-31 13:29:11 +0200303 conn->osmux.cid,
304 osmo_sockaddr_ntop(&conn->end.addr.u.sa, ipbuf),
Pau Espin Pedrol295570c2019-05-13 17:32:47 +0200305 ntohs(conn->end.rtp_port));
Pau Espin Pedrolde2a4d72018-10-16 16:37:43 +0200306 return 0;
307 case OSMUX_STATE_ENABLED:
308 return 0;
309 default:
Pau Espin Pedrolc9a62802019-05-13 13:20:13 +0200310 LOGPCONN(conn->conn, DLMGCP, LOGL_ERROR,
311 "Osmux %s in conn %s without full negotiation, state %d\n",
312 sending ? "sent" : "received",
313 mgcp_conn_dump(conn->conn), conn->osmux.state);
Pau Espin Pedrolde2a4d72018-10-16 16:37:43 +0200314 return -1;
315 }
316}
317
Pau Espin Pedrol662fa422018-10-16 15:54:38 +0200318static int osmux_legacy_dummy_parse_cid(struct sockaddr_in *addr, struct msgb *msg,
319 uint8_t *osmux_cid)
320{
Pau Espin Pedrolb5583cd2019-05-13 12:58:24 +0200321 if (msg->len < 1 + sizeof(*osmux_cid)) {
Pau Espin Pedrol662fa422018-10-16 15:54:38 +0200322 LOGP(DLMGCP, LOGL_ERROR,
Pau Espin Pedrolb5583cd2019-05-13 12:58:24 +0200323 "Discarding truncated Osmux dummy load: %s\n", osmo_hexdump(msg->data, msg->len));
Pau Espin Pedrol662fa422018-10-16 15:54:38 +0200324 return -1;
325 }
326
327 /* extract the osmux CID from the dummy message */
328 memcpy(osmux_cid, &msg->data[1], sizeof(*osmux_cid));
329 return 0;
330}
331
Pau Espin Pedrol1442c5a2019-05-06 16:10:10 +0200332/* This is called from the bsc-nat */
333static int osmux_handle_dummy(struct mgcp_config *cfg, struct sockaddr_in *addr,
334 struct msgb *msg)
335{
336 uint8_t osmux_cid;
337 struct mgcp_conn_rtp *conn;
338
339 if (osmux_legacy_dummy_parse_cid(addr, msg, &osmux_cid) < 0)
340 goto out;
341
342 conn = osmux_conn_lookup(cfg, osmux_cid, &addr->sin_addr);
343 if (!conn) {
344 LOGP(DLMGCP, LOGL_ERROR,
345 "Cannot find conn for Osmux CID %d\n", osmux_cid);
346 goto out;
347 }
348
349 endp_osmux_state_check(conn->conn->endp, conn, false);
350 /* Only needed to punch hole in firewall, it can be dropped */
351out:
352 msgb_free(msg);
353 return 0;
354}
355
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200356#define osmux_chunk_length(msg, rem) (rem - msg->len);
357
Pau Espin Pedrol1442c5a2019-05-06 16:10:10 +0200358static int osmux_read_fd_cb(struct osmo_fd *ofd, unsigned int what)
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200359{
360 struct msgb *msg;
361 struct osmux_hdr *osmuxh;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200362 struct sockaddr_in addr;
363 struct mgcp_config *cfg = ofd->data;
364 uint32_t rem;
Pau Espin Pedrol1442c5a2019-05-06 16:10:10 +0200365 struct mgcp_conn_rtp *conn_src;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200366
367 msg = osmux_recv(ofd, &addr);
368 if (!msg)
369 return -1;
370
Pau Espin Pedrold14163e2018-10-16 15:48:59 +0200371 if (!cfg->osmux) {
372 LOGP(DLMGCP, LOGL_ERROR,
373 "bsc-nat wants to use Osmux but bsc did not request it\n");
374 goto out;
375 }
376
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200377 /* not any further processing dummy messages */
Philipp Maierb3d14eb2021-05-20 14:18:52 +0200378 if (mgcp_is_rtp_dummy_payload(msg))
Pau Espin Pedrol1442c5a2019-05-06 16:10:10 +0200379 return osmux_handle_dummy(cfg, &addr, msg);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200380
381 rem = msg->len;
382 while((osmuxh = osmux_xfrm_output_pull(msg)) != NULL) {
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200383
Pau Espin Pedrol1442c5a2019-05-06 16:10:10 +0200384 conn_src = osmux_conn_lookup(cfg, osmuxh->circuit_id,
385 &addr.sin_addr);
386 if (!conn_src) {
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200387 LOGP(DLMGCP, LOGL_ERROR,
Pau Espin Pedrol1442c5a2019-05-06 16:10:10 +0200388 "Cannot find a src conn for circuit_id=%d\n",
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200389 osmuxh->circuit_id);
390 goto out;
391 }
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200392
Pau Espin Pedrolde133112020-09-08 17:51:36 +0200393 mgcp_conn_watchdog_kick(conn_src->conn);
394
Pau Espin Pedrol1442c5a2019-05-06 16:10:10 +0200395 /*conn_dst = mgcp_find_dst_conn(conn_src->conn);
396 if (!conn_dst) {
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200397 LOGP(DLMGCP, LOGL_ERROR,
Pau Espin Pedrol1442c5a2019-05-06 16:10:10 +0200398 "Cannot find a dst conn for circuit_id=%d\n",
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200399 osmuxh->circuit_id);
400 goto out;
Pau Espin Pedrol1442c5a2019-05-06 16:10:10 +0200401 }*/
402
403 if (endp_osmux_state_check(conn_src->conn->endp, conn_src, false) == 0) {
404 conn_src->osmux.stats.octets += osmux_chunk_length(msg, rem);
405 conn_src->osmux.stats.chunks++;
406 osmux_xfrm_output_sched(&conn_src->osmux.out, osmuxh);
Pau Espin Pedrolde2a4d72018-10-16 16:37:43 +0200407 }
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200408 rem = msg->len;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200409 }
410out:
411 msgb_free(msg);
412 return 0;
413}
414
415int osmux_init(int role, struct mgcp_config *cfg)
416{
417 int ret;
418
Harald Weltec2a8f592020-10-19 13:25:41 +0200419 osmo_fd_setup(&osmux_fd, -1, OSMO_FD_READ, osmux_read_fd_cb, cfg, 0);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200420
Harald Welte55a92292021-04-28 19:06:34 +0200421 ret = mgcp_create_bind(cfg->osmux_addr, &osmux_fd, cfg->osmux_port,
422 cfg->endp_dscp, cfg->endp_priority);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200423 if (ret < 0) {
Pau Espin Pedrolf027f172019-05-06 13:57:31 +0200424 LOGP(DLMGCP, LOGL_ERROR, "cannot bind OSMUX socket to %s:%u\n",
425 cfg->osmux_addr, cfg->osmux_port);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200426 return ret;
427 }
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200428
429 ret = osmo_fd_register(&osmux_fd);
430 if (ret < 0) {
Pau Espin Pedrolf027f172019-05-06 13:57:31 +0200431 LOGP(DLMGCP, LOGL_ERROR, "cannot register OSMUX socket %s\n",
432 osmo_sock_get_name2(osmux_fd.fd));
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200433 return ret;
434 }
435 cfg->osmux_init = 1;
436
Pau Espin Pedrolf027f172019-05-06 13:57:31 +0200437 LOGP(DLMGCP, LOGL_INFO, "OSMUX socket listening on %s\n",
438 osmo_sock_get_name2(osmux_fd.fd));
439
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200440 return 0;
441}
442
Philipp Maier87bd9be2017-08-22 16:35:41 +0200443/*! enable OSXMUX circuit for a specified connection.
444 * \param[in] endp mgcp endpoint (configuration)
445 * \param[in] conn connection to disable
446 * \param[in] addr IP address of remote OSMUX endpoint
Pau Espin Pedrol12056862019-05-13 17:30:21 +0200447 * \param[in] port portnumber of the remote OSMUX endpoint (in network byte order)
Philipp Maier87bd9be2017-08-22 16:35:41 +0200448 * \returns 0 on success, -1 on ERROR */
449int osmux_enable_conn(struct mgcp_endpoint *endp, struct mgcp_conn_rtp *conn,
Pau Espin Pedrola790f0c2020-08-31 13:29:11 +0200450 struct osmo_sockaddr *addr, uint16_t port)
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200451{
Philipp Maier87bd9be2017-08-22 16:35:41 +0200452 /*! If osmux is enabled, initialize the output handler. This handler is
453 * used to reconstruct the RTP flow from osmux. The RTP SSRC is
454 * allocated based on the circuit ID (conn_net->osmux.cid), which is unique
455 * in the local scope to the BSC/BSC-NAT. We use it to divide the RTP
Pau Espin Pedrol17bf6032018-09-17 13:38:39 +0200456 * SSRC space (2^32) by the OSMUX_CID_MAX + 1 possible circuit IDs, then randomly
Philipp Maier87bd9be2017-08-22 16:35:41 +0200457 * select one value from that window. Thus, we have no chance to have
458 * overlapping RTP SSRC traveling to the BTSes behind the BSC,
459 * similarly, for flows traveling to the MSC.
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200460 */
Pau Espin Pedrola790f0c2020-08-31 13:29:11 +0200461 struct in6_addr addr_unset = {};
Pau Espin Pedrol17bf6032018-09-17 13:38:39 +0200462 static const uint32_t rtp_ssrc_winlen = UINT32_MAX / (OSMUX_CID_MAX + 1);
Ericfbf78d12021-08-23 22:31:39 +0200463 uint16_t osmux_dummy = endp->trunk->cfg->osmux_dummy;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200464
Philipp Maier87bd9be2017-08-22 16:35:41 +0200465 /* Check if osmux is enabled for the specified connection */
Pau Espin Pedrol48aff622018-10-16 16:03:57 +0200466 if (conn->osmux.state != OSMUX_STATE_ACTIVATING) {
Pau Espin Pedrolc9a62802019-05-13 13:20:13 +0200467 LOGPCONN(conn->conn, DLMGCP, LOGL_ERROR,
468 "conn:%s didn't negotiate Osmux, state %d\n",
469 mgcp_conn_dump(conn->conn), conn->osmux.state);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200470 return -1;
471 }
472
Pau Espin Pedroldac2ca72019-05-13 17:34:51 +0200473 /* Wait until we have the connection information from MDCX */
Pau Espin Pedrola790f0c2020-08-31 13:29:11 +0200474 if (memcmp(&conn->end.addr, &addr_unset,
475 conn->end.addr.u.sa.sa_family == AF_INET6 ?
476 sizeof(struct in6_addr) :
477 sizeof(struct in_addr)) == 0) {
Pau Espin Pedroldac2ca72019-05-13 17:34:51 +0200478 LOGPCONN(conn->conn, DLMGCP, LOGL_INFO,
479 "Osmux remote address/port still unknown\n");
480 return -1;
481 }
482
Pau Espin Pedrol24914012020-09-08 12:57:35 +0200483 conn->osmux.in = osmux_handle_lookup(conn, addr, port);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200484 if (!conn->osmux.in) {
Pau Espin Pedrolc9a62802019-05-13 13:20:13 +0200485 LOGPCONN(conn->conn, DLMGCP, LOGL_ERROR,
486 "Cannot allocate input osmux handle for conn:%s\n",
487 mgcp_conn_dump(conn->conn));
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200488 return -1;
489 }
Pau Espin Pedrolac772d82019-05-06 18:02:00 +0200490 if (osmux_xfrm_input_open_circuit(conn->osmux.in, conn->osmux.cid, osmux_dummy) < 0) {
Pau Espin Pedrolc9a62802019-05-13 13:20:13 +0200491 LOGPCONN(conn->conn, DLMGCP, LOGL_ERROR,
492 "Cannot open osmux circuit %u for conn:%s\n",
Philipp Maier87bd9be2017-08-22 16:35:41 +0200493 conn->osmux.cid, mgcp_conn_dump(conn->conn));
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200494 return -1;
495 }
496
Pau Espin Pedroldf7d97e2019-05-17 17:14:06 +0200497 osmux_xfrm_output_init2(&conn->osmux.out,
Pau Espin Pedrol426a9d92018-10-16 15:31:45 +0200498 (conn->osmux.cid * rtp_ssrc_winlen) +
Pau Espin Pedroldf7d97e2019-05-17 17:14:06 +0200499 (random() % rtp_ssrc_winlen),
500 conn->end.codec->payload_type);
Pau Espin Pedrol426a9d92018-10-16 15:31:45 +0200501
Pau Espin Pedrol1442c5a2019-05-06 16:10:10 +0200502 osmux_xfrm_output_set_tx_cb(&conn->osmux.out,
503 scheduled_from_osmux_tx_rtp_cb, conn);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200504
505 conn->osmux.state = OSMUX_STATE_ENABLED;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200506
507 return 0;
508}
509
Philipp Maier87bd9be2017-08-22 16:35:41 +0200510/*! disable OSXMUX circuit for a specified connection.
511 * \param[in] conn connection to disable */
Pau Espin Pedrol85978da2019-05-17 14:38:19 +0200512void conn_osmux_disable(struct mgcp_conn_rtp *conn)
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200513{
Philipp Maier87bd9be2017-08-22 16:35:41 +0200514
Pau Espin Pedrol85978da2019-05-17 14:38:19 +0200515 OSMO_ASSERT(conn->osmux.state != OSMUX_STATE_DISABLED);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200516
Pau Espin Pedrolc9a62802019-05-13 13:20:13 +0200517 LOGPCONN(conn->conn, DLMGCP, LOGL_INFO,
Pau Espin Pedrol85978da2019-05-17 14:38:19 +0200518 "Releasing connection using Osmux CID %u\n", conn->osmux.cid);
Pau Espin Pedrolf2321b72018-05-17 13:55:14 +0200519
Pau Espin Pedrol85978da2019-05-17 14:38:19 +0200520 if (conn->osmux.state == OSMUX_STATE_ENABLED) {
521 /* We are closing, we don't need pending RTP packets to be transmitted */
522 osmux_xfrm_output_set_tx_cb(&conn->osmux.out, NULL, NULL);
523 osmux_xfrm_output_flush(&conn->osmux.out);
Pau Espin Pedrolf2321b72018-05-17 13:55:14 +0200524
Pau Espin Pedrol85978da2019-05-17 14:38:19 +0200525 osmux_xfrm_input_close_circuit(conn->osmux.in, conn->osmux.cid);
526 conn->osmux.state = OSMUX_STATE_DISABLED;
527 conn_osmux_release_cid(conn);
528 osmux_handle_put(conn->osmux.in);
529 }
Pau Espin Pedrol8de58e72019-04-24 13:33:46 +0200530 conn_osmux_release_cid(conn);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200531}
532
Philipp Maier87bd9be2017-08-22 16:35:41 +0200533/*! relase OSXMUX cid, that had been allocated to this connection.
534 * \param[in] conn connection with OSMUX cid to release */
Pau Espin Pedrol8de58e72019-04-24 13:33:46 +0200535void conn_osmux_release_cid(struct mgcp_conn_rtp *conn)
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200536{
Pau Espin Pedrol8de58e72019-04-24 13:33:46 +0200537 if (conn->osmux.cid_allocated)
538 osmux_cid_pool_put(conn->osmux.cid);
539 conn->osmux.cid = 0;
540 conn->osmux.cid_allocated = false;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200541}
542
Philipp Maier87bd9be2017-08-22 16:35:41 +0200543/*! allocate OSXMUX cid to connection.
Pau Espin Pedrol8de58e72019-04-24 13:33:46 +0200544 * \param[in] conn connection for which we allocate the OSMUX cid
545 * \param[in] osmux_cid OSMUX cid to allocate. -1 Means take next available one.
546 * \returns Allocated OSMUX cid, -1 on error (no free cids avail, or selected one is already taken).
547 */
548int conn_osmux_allocate_cid(struct mgcp_conn_rtp *conn, int osmux_cid)
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200549{
Pau Espin Pedrol8de58e72019-04-24 13:33:46 +0200550 if (osmux_cid != -1 && osmux_cid_pool_allocated((uint8_t) osmux_cid)) {
Pau Espin Pedrolc9a62802019-05-13 13:20:13 +0200551 LOGPCONN(conn->conn, DLMGCP, LOGL_INFO,
552 "Osmux CID %d already allocated!\n",
553 osmux_cid);
Pau Espin Pedrol8de58e72019-04-24 13:33:46 +0200554 return -1;
555 }
556
557 if (osmux_cid == -1) {
558 osmux_cid = osmux_cid_pool_get_next();
559 if (osmux_cid == -1) {
Pau Espin Pedrolc9a62802019-05-13 13:20:13 +0200560 LOGPCONN(conn->conn, DLMGCP, LOGL_INFO,
561 "no available Osmux CID to allocate!\n");
Pau Espin Pedrol8de58e72019-04-24 13:33:46 +0200562 return -1;
563 }
564 } else
565 osmux_cid_pool_get(osmux_cid);
566
567 conn->osmux.cid = (uint8_t) osmux_cid;
568 conn->osmux.cid_allocated = true;
Pau Espin Pedrolfa810e82019-05-06 18:54:10 +0200569 conn->type = MGCP_OSMUX_BSC;
Pau Espin Pedrol8de58e72019-04-24 13:33:46 +0200570 return osmux_cid;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200571}
572
Philipp Maier87bd9be2017-08-22 16:35:41 +0200573/*! send RTP dummy packet to OSMUX connection port.
574 * \param[in] endp mcgp endpoint that holds the RTP connection
575 * \param[in] conn associated RTP connection
576 * \returns bytes sent, -1 on error */
577int osmux_send_dummy(struct mgcp_endpoint *endp, struct mgcp_conn_rtp *conn)
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200578{
Pau Espin Pedrola790f0c2020-08-31 13:29:11 +0200579 char ipbuf[INET6_ADDRSTRLEN];
Pau Espin Pedrolc1ad5532019-05-15 23:00:53 +0200580 struct osmux_hdr *osmuxh;
581 int buf_len;
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200582 struct in_addr addr_unset = {};
583
Philipp Maier87bd9be2017-08-22 16:35:41 +0200584 /*! The dummy packet will not be sent via the actual OSMUX connection,
585 * instead it is sent out of band to port where the remote OSMUX
586 * multplexer is listening. The goal is to ensure that the connection
587 * is kept open */
588
589 /*! We don't need to send the dummy load for osmux so often as another
590 * endpoint may have already punched the hole in the firewall. This
591 * approach is simple though. */
592
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200593 /* Wait until we have the connection information from MDCX */
Philipp Maier87bd9be2017-08-22 16:35:41 +0200594 if (memcmp(&conn->end.addr, &addr_unset, sizeof(addr_unset)) == 0)
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200595 return 0;
596
Pau Espin Pedrolde2a4d72018-10-16 16:37:43 +0200597 if (endp_osmux_state_check(endp, conn, true) < 0)
598 return 0;
599
Pau Espin Pedrolc1ad5532019-05-15 23:00:53 +0200600 buf_len = sizeof(struct osmux_hdr) + osmo_amr_bytes(AMR_FT_0);
601 osmuxh = (struct osmux_hdr *) alloca(buf_len);
602 memset(osmuxh, 0, buf_len);
603 osmuxh->ft = OSMUX_FT_DUMMY;
604 osmuxh->amr_ft = AMR_FT_0;
605 osmuxh->circuit_id = conn->osmux.cid;
606
Pau Espin Pedrolc9a62802019-05-13 13:20:13 +0200607 LOGPCONN(conn->conn, DLMGCP, LOGL_DEBUG,
Pau Espin Pedrol37525222019-05-13 17:34:14 +0200608 "sending OSMUX dummy load to %s:%u CID %u\n",
Pau Espin Pedrola790f0c2020-08-31 13:29:11 +0200609 osmo_sockaddr_ntop(&conn->end.addr.u.sa, ipbuf),
610 ntohs(conn->end.rtp_port), conn->osmux.cid);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200611
Philipp Maier87bd9be2017-08-22 16:35:41 +0200612 return mgcp_udp_send(osmux_fd.fd, &conn->end.addr,
Pau Espin Pedrolc1ad5532019-05-15 23:00:53 +0200613 conn->end.rtp_port, (char*)osmuxh, buf_len);
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200614}
615
Pau Espin Pedrolbcd52e52018-09-17 12:41:28 +0200616/* bsc-nat allocates/releases the Osmux circuit ID. +7 to round up to 8 bit boundary. */
617static uint8_t osmux_cid_bitmap[(OSMUX_CID_MAX + 1 + 7) / 8];
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200618
Philipp Maier87bd9be2017-08-22 16:35:41 +0200619/*! count the number of taken OSMUX cids.
620 * \returns number of OSMUX cids in use */
Pau Espin Pedrol8de58e72019-04-24 13:33:46 +0200621int osmux_cid_pool_count_used(void)
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200622{
623 int i, j, used = 0;
624
625 for (i = 0; i < sizeof(osmux_cid_bitmap); i++) {
626 for (j = 0; j < 8; j++) {
627 if (osmux_cid_bitmap[i] & (1 << j))
628 used += 1;
629 }
630 }
631
632 return used;
633}
634
Philipp Maier87bd9be2017-08-22 16:35:41 +0200635/*! take a free OSMUX cid.
636 * \returns OSMUX cid */
Pau Espin Pedrol8de58e72019-04-24 13:33:46 +0200637int osmux_cid_pool_get_next(void)
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200638{
639 int i, j;
640
641 for (i = 0; i < sizeof(osmux_cid_bitmap); i++) {
642 for (j = 0; j < 8; j++) {
643 if (osmux_cid_bitmap[i] & (1 << j))
644 continue;
645
646 osmux_cid_bitmap[i] |= (1 << j);
647 LOGP(DLMGCP, LOGL_DEBUG,
648 "Allocating Osmux CID %u from pool\n", (i * 8) + j);
649 return (i * 8) + j;
650 }
651 }
652
653 LOGP(DLMGCP, LOGL_ERROR, "All Osmux circuits are in use!\n");
654 return -1;
655}
656
Pau Espin Pedrol8de58e72019-04-24 13:33:46 +0200657/*! take a specific OSMUX cid.
658 * \param[in] osmux_cid OSMUX cid */
659void osmux_cid_pool_get(uint8_t osmux_cid)
660{
661 LOGP(DLMGCP, LOGL_DEBUG, "Allocating Osmux CID %u from pool\n", osmux_cid);
662 osmux_cid_bitmap[osmux_cid / 8] |= (1 << (osmux_cid % 8));
663}
664
Philipp Maier87bd9be2017-08-22 16:35:41 +0200665/*! put back a no longer used OSMUX cid.
666 * \param[in] osmux_cid OSMUX cid */
Pau Espin Pedrol8de58e72019-04-24 13:33:46 +0200667void osmux_cid_pool_put(uint8_t osmux_cid)
Neels Hofmeyrf83ec562017-09-07 19:18:40 +0200668{
669 LOGP(DLMGCP, LOGL_DEBUG, "Osmux CID %u is back to the pool\n", osmux_cid);
670 osmux_cid_bitmap[osmux_cid / 8] &= ~(1 << (osmux_cid % 8));
671}
Pau Espin Pedrol8de58e72019-04-24 13:33:46 +0200672
673/*! check if OSMUX cid is already taken */
674bool osmux_cid_pool_allocated(uint8_t osmux_cid)
675{
676 return !!(osmux_cid_bitmap[osmux_cid / 8] & (1 << (osmux_cid % 8)));
677}