blob: d2dbeebe4f57fbdef1c16e55aab3186412ff04d3 [file] [log] [blame]
Holger Hans Peter Freyther5ada53a2010-02-21 11:11:04 +01001/* A Media Gateway Control Protocol Media Gateway: RFC 3435 */
2/* The protocol implementation */
3
4/*
5 * (C) 2009-2010 by Holger Hans Peter Freyther <zecke@selfish.org>
6 * (C) 2009-2010 by On-Waves
7 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 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 General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 *
23 */
24
25#include <string.h>
Holger Hans Peter Freytheradb19922010-05-14 02:14:09 +080026#include <stdlib.h>
Holger Hans Peter Freyther5ada53a2010-02-21 11:11:04 +010027#include <unistd.h>
Holger Hans Peter Freytherf95e3ad2010-02-26 13:42:58 +010028#include <endian.h>
Holger Hans Peter Freyther9d7bd812010-04-07 12:55:40 +020029#include <errno.h>
Holger Hans Peter Freyther5ada53a2010-02-21 11:11:04 +010030
31#include <sys/socket.h>
32#include <arpa/inet.h>
33
Holger Hans Peter Freytherf41fb1f2010-02-26 20:16:37 +010034#include <osmocore/msgb.h>
Holger Hans Peter Freytherf41fb1f2010-02-26 20:16:37 +010035#include <osmocore/select.h>
36
Holger Hans Peter Freyther5ada53a2010-02-21 11:11:04 +010037#include <openbsc/debug.h>
38#include <openbsc/mgcp.h>
39#include <openbsc/mgcp_internal.h>
Holger Hans Peter Freyther5ada53a2010-02-21 11:11:04 +010040
41#warning "Make use of the rtp proxy code"
42
Holger Hans Peter Freytherf95e3ad2010-02-26 13:42:58 +010043/* according to rtp_proxy.c RFC 3550 */
44struct rtp_hdr {
45#if __BYTE_ORDER == __LITTLE_ENDIAN
Holger Hans Peter Freyther1979f792010-07-23 18:56:26 +080046 uint8_t csrc_count:4,
Holger Hans Peter Freytherf95e3ad2010-02-26 13:42:58 +010047 extension:1,
48 padding:1,
49 version:2;
Holger Hans Peter Freyther1979f792010-07-23 18:56:26 +080050 uint8_t payload_type:7,
Holger Hans Peter Freytherf95e3ad2010-02-26 13:42:58 +010051 marker:1;
52#elif __BYTE_ORDER == __BIG_ENDIAN
Holger Hans Peter Freyther1979f792010-07-23 18:56:26 +080053 uint8_t version:2,
Holger Hans Peter Freytherf95e3ad2010-02-26 13:42:58 +010054 padding:1,
55 extension:1,
56 csrc_count:4;
Holger Hans Peter Freyther1979f792010-07-23 18:56:26 +080057 uint8_t marker:1,
Holger Hans Peter Freytherf95e3ad2010-02-26 13:42:58 +010058 payload_type:7;
59#endif
Holger Hans Peter Freyther18846232010-07-23 18:56:01 +080060 uint16_t sequence;
Holger Hans Peter Freyther142475b2010-07-23 18:55:38 +080061 uint32_t timestamp;
62 uint32_t ssrc;
Holger Hans Peter Freytherf95e3ad2010-02-26 13:42:58 +010063} __attribute__((packed));
64
Holger Hans Peter Freyther5ada53a2010-02-21 11:11:04 +010065
66enum {
67 DEST_NETWORK = 0,
68 DEST_BTS = 1,
69};
70
71enum {
72 PROTO_RTP,
73 PROTO_RTCP,
74};
75
Holger Hans Peter Freytherb6894262010-04-21 21:25:13 +080076#define DUMMY_LOAD 0x23
77
Holger Hans Peter Freyther5ada53a2010-02-21 11:11:04 +010078
79static int udp_send(int fd, struct in_addr *addr, int port, char *buf, int len)
80{
81 struct sockaddr_in out;
82 out.sin_family = AF_INET;
83 out.sin_port = port;
84 memcpy(&out.sin_addr, addr, sizeof(*addr));
85
86 return sendto(fd, buf, len, 0, (struct sockaddr *)&out, sizeof(out));
87}
88
Holger Hans Peter Freytherb6894262010-04-21 21:25:13 +080089int mgcp_send_dummy(struct mgcp_endpoint *endp)
90{
91 static char buf[] = { DUMMY_LOAD };
92
93 return udp_send(endp->local_rtp.fd, &endp->remote,
94 endp->net_rtp, buf, 1);
95}
96
Holger Hans Peter Freyther84ba5282010-08-03 11:59:04 +000097static void patch_and_count(struct mgcp_rtp_state *state, int payload, char *data, int len)
Holger Hans Peter Freytherf95e3ad2010-02-26 13:42:58 +010098{
Holger Hans Peter Freythere758d952010-07-29 02:38:39 +080099 uint16_t seq;
Holger Hans Peter Freytherf95e3ad2010-02-26 13:42:58 +0100100 struct rtp_hdr *rtp_hdr;
101
102 if (len < sizeof(*rtp_hdr))
103 return;
104
Holger Hans Peter Freythere758d952010-07-29 02:38:39 +0800105 rtp_hdr = (struct rtp_hdr *) data;
106 seq = ntohs(rtp_hdr->sequence);
107
Holger Hans Peter Freyther84ba5282010-08-03 11:59:04 +0000108 if (!state->initialized) {
109 state->seq_no = seq;
110 state->initialized = 1;
111 } else if (state->seq_no + 1u != seq)
112 state->lost_no = abs(seq - (state->seq_no + 1));
Holger Hans Peter Freythere758d952010-07-29 02:38:39 +0800113
Holger Hans Peter Freyther84ba5282010-08-03 11:59:04 +0000114 state->seq_no = seq;
Holger Hans Peter Freythere758d952010-07-29 02:38:39 +0800115
Holger Hans Peter Freyther00529552010-04-06 11:15:50 +0200116 if (payload < 0)
117 return;
118
Holger Hans Peter Freytherf95e3ad2010-02-26 13:42:58 +0100119 rtp_hdr->payload_type = payload;
120}
121
Holger Hans Peter Freyther5ada53a2010-02-21 11:11:04 +0100122/*
123 * There is data coming. We will have to figure out if it
124 * came from the BTS or the MediaGateway of the MSC. On top
125 * of that we need to figure out if it was RTP or RTCP.
126 *
127 * Currently we do not communicate with the BSC so we have
128 * no idea where the BTS is listening for RTP and need to
129 * do the classic routing trick. Wait for the first packet
130 * from the BTS and then go ahead.
131 */
132static int rtp_data_cb(struct bsc_fd *fd, unsigned int what)
133{
134 char buf[4096];
135 struct sockaddr_in addr;
136 socklen_t slen = sizeof(addr);
137 struct mgcp_endpoint *endp;
138 struct mgcp_config *cfg;
139 int rc, dest, proto;
140
141 endp = (struct mgcp_endpoint *) fd->data;
142 cfg = endp->cfg;
143
144 rc = recvfrom(fd->fd, &buf, sizeof(buf), 0,
145 (struct sockaddr *) &addr, &slen);
146 if (rc < 0) {
Holger Hans Peter Freyther9d7bd812010-04-07 12:55:40 +0200147 LOGP(DMGCP, LOGL_ERROR, "Failed to receive message on: 0x%x errno: %d/%s\n",
148 ENDPOINT_NUMBER(endp), errno, strerror(errno));
Holger Hans Peter Freyther5ada53a2010-02-21 11:11:04 +0100149 return -1;
150 }
151
152 /* do not forward aynthing... maybe there is a packet from the bts */
Holger Hans Peter Freytherbaefbf42010-03-01 18:53:05 +0100153 if (endp->ci == CI_UNUSED)
Holger Hans Peter Freyther5ada53a2010-02-21 11:11:04 +0100154 return -1;
Holger Hans Peter Freyther5ada53a2010-02-21 11:11:04 +0100155
156 /*
157 * Figure out where to forward it to. This code assumes that we
158 * have received the Connection Modify and know who is a legitimate
159 * partner. According to the spec we could attempt to forward even
160 * after the Create Connection but we will not as we are not really
161 * able to tell if this is legitimate.
162 */
163 #warning "Slight spec violation. With connection mode recvonly we should attempt to forward."
164 dest = memcmp(&addr.sin_addr, &endp->remote, sizeof(addr.sin_addr)) == 0 &&
Holger Hans Peter Freyther8c994342010-04-30 13:32:05 +0800165 (endp->net_rtp == addr.sin_port || endp->net_rtcp == addr.sin_port)
Holger Hans Peter Freyther5ada53a2010-02-21 11:11:04 +0100166 ? DEST_BTS : DEST_NETWORK;
167 proto = fd == &endp->local_rtp ? PROTO_RTP : PROTO_RTCP;
168
169 /* We have no idea who called us, maybe it is the BTS. */
170 if (dest == DEST_NETWORK && (endp->bts_rtp == 0 || cfg->forward_ip)) {
171 /* it was the BTS... */
Holger Hans Peter Freyther27c90f82010-04-01 07:56:04 +0200172 if (!cfg->bts_ip
173 || memcmp(&addr.sin_addr, &cfg->bts_in, sizeof(cfg->bts_in)) == 0
174 || memcmp(&addr.sin_addr, &endp->bts, sizeof(endp->bts)) == 0) {
Holger Hans Peter Freyther5ada53a2010-02-21 11:11:04 +0100175 if (fd == &endp->local_rtp) {
176 endp->bts_rtp = addr.sin_port;
177 } else {
178 endp->bts_rtcp = addr.sin_port;
179 }
180
181 endp->bts = addr.sin_addr;
Holger Hans Peter Freyther9c3f5762010-04-09 18:53:01 +0200182 LOGP(DMGCP, LOGL_NOTICE, "Found BTS for endpoint: 0x%x on port: %d/%d of %s\n",
183 ENDPOINT_NUMBER(endp), ntohs(endp->bts_rtp), ntohs(endp->bts_rtcp),
184 inet_ntoa(addr.sin_addr));
Holger Hans Peter Freytherb6894262010-04-21 21:25:13 +0800185
Holger Hans Peter Freyther5ada53a2010-02-21 11:11:04 +0100186 }
187 }
188
Holger Hans Peter Freyther906ed102010-05-14 02:18:59 +0800189 /* throw away the dummy message */
Holger Hans Peter Freyther040c1302010-04-22 12:14:51 +0800190 if (rc == 1 && buf[0] == DUMMY_LOAD) {
191 LOGP(DMGCP, LOGL_NOTICE, "Filtered dummy on 0x%x\n",
192 ENDPOINT_NUMBER(endp));
193 return 0;
194 }
195
Holger Hans Peter Freyther6de5b112010-04-07 09:37:17 +0200196 /* do this before the loop handling */
197 if (dest == DEST_NETWORK)
198 ++endp->in_bts;
199 else
200 ++endp->in_remote;
201
Holger Hans Peter Freyther906ed102010-05-14 02:18:59 +0800202 /* For loop toggle the destination and then dispatch. */
Holger Hans Peter Freyther5ada53a2010-02-21 11:11:04 +0100203 if (cfg->audio_loop)
204 dest = !dest;
205
Holger Hans Peter Freyther0bdf20d2010-08-03 02:27:21 +0800206 /* Loop based on the conn_mode, maybe undoing the above */
207 if (endp->conn_mode == MGCP_CONN_LOOPBACK)
208 dest = !dest;
209
Holger Hans Peter Freyther5ada53a2010-02-21 11:11:04 +0100210 if (dest == DEST_NETWORK) {
Holger Hans Peter Freyther6e9c55b2010-05-22 22:06:13 +0800211 if (proto == PROTO_RTP)
Holger Hans Peter Freyther84ba5282010-08-03 11:59:04 +0000212 patch_and_count(&endp->bts_state,
Holger Hans Peter Freythere758d952010-07-29 02:38:39 +0800213 endp->net_payload_type, buf, rc);
Holger Hans Peter Freyther5ada53a2010-02-21 11:11:04 +0100214 return udp_send(fd->fd, &endp->remote,
215 proto == PROTO_RTP ? endp->net_rtp : endp->net_rtcp,
216 buf, rc);
217 } else {
Holger Hans Peter Freyther6e9c55b2010-05-22 22:06:13 +0800218 if (proto == PROTO_RTP)
Holger Hans Peter Freyther84ba5282010-08-03 11:59:04 +0000219 patch_and_count(&endp->net_state,
Holger Hans Peter Freythere758d952010-07-29 02:38:39 +0800220 endp->bts_payload_type, buf, rc);
Holger Hans Peter Freyther5ada53a2010-02-21 11:11:04 +0100221 return udp_send(fd->fd, &endp->bts,
222 proto == PROTO_RTP ? endp->bts_rtp : endp->bts_rtcp,
223 buf, rc);
224 }
225}
226
227static int create_bind(const char *source_addr, struct bsc_fd *fd, int port)
228{
229 struct sockaddr_in addr;
230 int on = 1;
231
232 fd->fd = socket(AF_INET, SOCK_DGRAM, 0);
233 if (fd->fd < 0) {
234 LOGP(DMGCP, LOGL_ERROR, "Failed to create UDP port.\n");
235 return -1;
236 }
237
238 setsockopt(fd->fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
239 memset(&addr, 0, sizeof(addr));
240 addr.sin_family = AF_INET;
241 addr.sin_port = htons(port);
242 inet_aton(source_addr, &addr.sin_addr);
243
244 if (bind(fd->fd, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
245 return -1;
246 }
247
248 return 0;
249}
250
Holger Hans Peter Freyther489d0a62010-05-31 10:22:00 +0800251static int set_ip_tos(int fd, int tos)
252{
253 int ret;
254 ret = setsockopt(fd, IPPROTO_IP, IP_TOS,
255 &tos, sizeof(tos));
256 return ret != 0;
257}
258
Holger Hans Peter Freyther5ada53a2010-02-21 11:11:04 +0100259static int bind_rtp(struct mgcp_endpoint *endp)
260{
261 struct mgcp_config *cfg = endp->cfg;
262
263 if (create_bind(cfg->source_addr, &endp->local_rtp, endp->rtp_port) != 0) {
264 LOGP(DMGCP, LOGL_ERROR, "Failed to create RTP port: %s:%d on 0x%x\n",
265 cfg->source_addr, endp->rtp_port, ENDPOINT_NUMBER(endp));
266 goto cleanup0;
267 }
268
269 if (create_bind(cfg->source_addr, &endp->local_rtcp, endp->rtp_port + 1) != 0) {
270 LOGP(DMGCP, LOGL_ERROR, "Failed to create RTCP port: %s:%d on 0x%x\n",
271 cfg->source_addr, endp->rtp_port + 1, ENDPOINT_NUMBER(endp));
272 goto cleanup1;
273 }
274
Holger Hans Peter Freyther3140c4f2010-07-27 20:34:45 +0800275 set_ip_tos(endp->local_rtp.fd, cfg->endp_dscp);
276 set_ip_tos(endp->local_rtcp.fd, cfg->endp_dscp);
Holger Hans Peter Freyther489d0a62010-05-31 10:22:00 +0800277
Holger Hans Peter Freyther5ada53a2010-02-21 11:11:04 +0100278 endp->local_rtp.cb = rtp_data_cb;
279 endp->local_rtp.data = endp;
280 endp->local_rtp.when = BSC_FD_READ;
281 if (bsc_register_fd(&endp->local_rtp) != 0) {
282 LOGP(DMGCP, LOGL_ERROR, "Failed to register RTP port %d on 0x%x\n",
283 endp->rtp_port, ENDPOINT_NUMBER(endp));
284 goto cleanup2;
285 }
286
287 endp->local_rtcp.cb = rtp_data_cb;
288 endp->local_rtcp.data = endp;
289 endp->local_rtcp.when = BSC_FD_READ;
290 if (bsc_register_fd(&endp->local_rtcp) != 0) {
291 LOGP(DMGCP, LOGL_ERROR, "Failed to register RTCP port %d on 0x%x\n",
292 endp->rtp_port + 1, ENDPOINT_NUMBER(endp));
293 goto cleanup3;
294 }
295
296 return 0;
297
298cleanup3:
299 bsc_unregister_fd(&endp->local_rtp);
300cleanup2:
301 close(endp->local_rtcp.fd);
302 endp->local_rtcp.fd = -1;
303cleanup1:
304 close(endp->local_rtp.fd);
305 endp->local_rtp.fd = -1;
306cleanup0:
307 return -1;
308}
309
310int mgcp_bind_rtp_port(struct mgcp_endpoint *endp, int rtp_port)
311{
312 endp->rtp_port = rtp_port;
313 return bind_rtp(endp);
314}