blob: d65a7990cf17972e806c9805b5b5cc8001c8ee41 [file] [log] [blame]
Neels Hofmeyre9920f22017-07-10 15:07:22 +02001/* mgcp_utils - common functions to setup an MGCP connection
2 */
3/* (C) 2016 by sysmocom s.f.m.c. GmbH <info@sysmocom.de>
4 * All Rights Reserved
5 *
6 * This program is free software; you can redistribute it and/or modify
Harald Welte220f4872018-02-04 09:04:16 +01007 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
Neels Hofmeyre9920f22017-07-10 15:07:22 +02009 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte220f4872018-02-04 09:04:16 +010014 * GNU General Public License for more details.
Neels Hofmeyre9920f22017-07-10 15:07:22 +020015 *
Harald Welte220f4872018-02-04 09:04:16 +010016 * You should have received a copy of the GNU General Public License
Neels Hofmeyre9920f22017-07-10 15:07:22 +020017 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 *
19 */
20
21#include <osmocom/core/linuxlist.h>
22#include <osmocom/core/select.h>
23#include <osmocom/core/write_queue.h>
24#include <osmocom/core/msgb.h>
25#include <osmocom/core/logging.h>
Philipp Maier1dc6be62017-10-05 18:25:37 +020026#include <osmocom/core/byteswap.h>
Harald Welte8890dfa2017-11-17 15:09:30 +010027#include <osmocom/core/socket.h>
Neels Hofmeyre9920f22017-07-10 15:07:22 +020028
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +020029#include <osmocom/mgcp_client/mgcp_client.h>
30#include <osmocom/mgcp_client/mgcp_client_internal.h>
Neels Hofmeyre9920f22017-07-10 15:07:22 +020031
32#include <netinet/in.h>
33#include <arpa/inet.h>
34
35#include <errno.h>
36#include <unistd.h>
37#include <string.h>
38
Philipp Maier704c4f02018-06-07 18:51:31 +020039/* Codec descripton for dynamic payload types (SDP) */
Neels Hofmeyr47642f22019-02-27 05:56:53 +010040const struct value_string osmo_mgcpc_codec_names[] = {
Philipp Maier704c4f02018-06-07 18:51:31 +020041 { CODEC_PCMU_8000_1, "PCMU/8000/1" },
42 { CODEC_GSM_8000_1, "GSM/8000/1" },
43 { CODEC_PCMA_8000_1, "PCMA/8000/1" },
44 { CODEC_G729_8000_1, "G729/8000/1" },
45 { CODEC_GSMEFR_8000_1, "GSM-EFR/8000/1" },
46 { CODEC_GSMHR_8000_1, "GSM-HR-08/8000/1" },
47 { CODEC_AMR_8000_1, "AMR/8000/1" },
48 { CODEC_AMRWB_16000_1, "AMR-WB/16000/1" },
49 { 0, NULL },
50};
51
52/* Get encoding name from a full codec string e,g.
53 * ("CODEC/8000/2" => returns "CODEC") */
54static char *extract_codec_name(const char *str)
55{
56 static char buf[64];
57 unsigned int i;
58
59 if (!str)
60 return NULL;
61
62 /* FIXME osmo_strlcpy */
63 osmo_strlcpy(buf, str, sizeof(buf));
64
65 for (i = 0; i < strlen(buf); i++) {
66 if (buf[i] == '/')
67 buf[i] = '\0';
68 }
69
70 return buf;
71}
72
73/*! Map a string to a codec.
74 * \ptmap[in] str input string (e.g "GSM/8000/1", "GSM/8000" or "GSM")
75 * \returns codec that corresponds to the given string representation. */
76enum mgcp_codecs map_str_to_codec(const char *str)
77{
78 unsigned int i;
79 char *codec_name;
80 char str_buf[64];
81
82 osmo_strlcpy(str_buf, extract_codec_name(str), sizeof(str_buf));
83
Neels Hofmeyr47642f22019-02-27 05:56:53 +010084 for (i = 0; i < ARRAY_SIZE(osmo_mgcpc_codec_names); i++) {
85 codec_name = extract_codec_name(osmo_mgcpc_codec_names[i].str);
Philipp Maier704c4f02018-06-07 18:51:31 +020086 if (!codec_name)
87 continue;
88 if (strcmp(codec_name, str_buf) == 0)
Neels Hofmeyr47642f22019-02-27 05:56:53 +010089 return osmo_mgcpc_codec_names[i].value;
Philipp Maier704c4f02018-06-07 18:51:31 +020090 }
91
92 return -1;
93}
94
95/* Check the ptmap for illegal mappings */
Neels Hofmeyr84274e42019-04-27 19:08:36 +020096static int check_ptmap(const struct ptmap *ptmap)
Philipp Maier704c4f02018-06-07 18:51:31 +020097{
98 /* Check if there are mappings that leave the IANA assigned dynamic
99 * payload type range. Under normal conditions such mappings should
100 * not occur */
101
102 /* Its ok to have a 1:1 mapping in the statically defined
103 * range, this won't hurt */
104 if (ptmap->codec == ptmap->pt)
105 return 0;
106
107 if (ptmap->codec < 96 || ptmap->codec > 127)
108 goto error;
109 if (ptmap->pt < 96 || ptmap->pt > 127)
110 goto error;
111
112 return 0;
113error:
114 LOGP(DLMGCP, LOGL_ERROR,
115 "ptmap contains illegal mapping: codec=%u maps to pt=%u\n",
116 ptmap->codec, ptmap->pt);
117 return -1;
118}
119
120/*! Map a codec to a payload type.
121 * \ptmap[in] payload pointer to payload type map with specified payload types.
122 * \ptmap[in] ptmap_len length of the payload type map.
123 * \ptmap[in] codec the codec for which the payload type should be looked up.
124 * \returns assigned payload type */
Neels Hofmeyr84274e42019-04-27 19:08:36 +0200125unsigned int map_codec_to_pt(const struct ptmap *ptmap, unsigned int ptmap_len,
Philipp Maier704c4f02018-06-07 18:51:31 +0200126 enum mgcp_codecs codec)
127{
128 unsigned int i;
129
130 /*! Note: If the payload type map is empty or the codec is not found
131 * in the map, then a 1:1 mapping is performed. If the codec falls
132 * into the statically defined range or if the mapping table isself
133 * tries to map to the statically defined range, then the mapping
134 * is also ignored and a 1:1 mapping is performed instead. */
135
136 /* we may return the codec directly since enum mgcp_codecs directly
137 * corresponds to the statićally assigned payload types */
138 if (codec < 96 || codec > 127)
139 return codec;
140
141 for (i = 0; i < ptmap_len; i++) {
142 /* Skip illegal map entries */
143 if (check_ptmap(ptmap) == 0 && ptmap->codec == codec)
144 return ptmap->pt;
145 ptmap++;
146 }
147
148 /* If nothing is found, do not perform any mapping */
149 return codec;
150}
151
152/*! Map a payload type to a codec.
153 * \ptmap[in] payload pointer to payload type map with specified payload types.
154 * \ptmap[in] ptmap_len length of the payload type map.
155 * \ptmap[in] payload type for which the codec should be looked up.
156 * \returns codec that corresponds to the specified payload type */
157enum mgcp_codecs map_pt_to_codec(struct ptmap *ptmap, unsigned int ptmap_len,
158 unsigned int pt)
159{
160 unsigned int i;
161
162 /*! Note: If the payload type map is empty or the payload type is not
163 * found in the map, then a 1:1 mapping is performed. If the payload
164 * type falls into the statically defined range or if the mapping
165 * table isself tries to map to the statically defined range, then
166 * the mapping is also ignored and a 1:1 mapping is performed
167 * instead. */
168
169 /* See also note in map_codec_to_pt() */
170 if (pt < 96 || pt > 127)
171 return pt;
172
173 for (i = 0; i < ptmap_len; i++) {
174 if (check_ptmap(ptmap) == 0 && ptmap->pt == pt)
175 return ptmap->codec;
176 ptmap++;
177 }
178
179 /* If nothing is found, do not perform any mapping */
180 return pt;
181}
182
Philipp Maier275ac972018-01-20 00:58:16 +0100183/*! Initalize MGCP client configuration struct with default values.
184 * \param[out] conf Client configuration.*/
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200185void mgcp_client_conf_init(struct mgcp_client_conf *conf)
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200186{
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200187 /* NULL and -1 default to MGCP_CLIENT_*_DEFAULT values */
188 *conf = (struct mgcp_client_conf){
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200189 .local_addr = NULL,
190 .local_port = -1,
191 .remote_addr = NULL,
192 .remote_port = -1,
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200193 };
194}
195
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200196static void mgcp_client_handle_response(struct mgcp_client *mgcp,
197 struct mgcp_response_pending *pending,
198 struct mgcp_response *response)
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200199{
200 if (!pending) {
201 LOGP(DLMGCP, LOGL_ERROR,
202 "Cannot handle NULL response\n");
203 return;
204 }
205 if (pending->response_cb)
206 pending->response_cb(response, pending->priv);
207 else
Neels Hofmeyred0c1aa2018-12-21 03:07:53 +0100208 LOGP(DLMGCP, LOGL_DEBUG, "MGCP response ignored (NULL cb)\n");
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200209 talloc_free(pending);
210}
211
212static int mgcp_response_parse_head(struct mgcp_response *r, struct msgb *msg)
213{
214 int comment_pos;
215 char *end;
216
217 if (mgcp_msg_terminate_nul(msg))
218 goto response_parse_failure;
219
220 r->body = (char *)msg->data;
221
Harald Welte9bf7c532017-11-17 14:14:31 +0100222 if (sscanf(r->body, "%3d %u %n",
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200223 &r->head.response_code, &r->head.trans_id,
224 &comment_pos) != 2)
225 goto response_parse_failure;
226
Philipp Maierabe8c892018-01-20 00:15:12 +0100227 osmo_strlcpy(r->head.comment, r->body + comment_pos, sizeof(r->head.comment));
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200228 end = strchr(r->head.comment, '\r');
229 if (!end)
230 goto response_parse_failure;
231 /* Mark the end of the comment */
232 *end = '\0';
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200233 return 0;
234
235response_parse_failure:
236 LOGP(DLMGCP, LOGL_ERROR,
237 "Failed to parse MGCP response header\n");
238 return -EINVAL;
239}
240
241/* TODO undup against mgcp_protocol.c:mgcp_check_param() */
242static bool mgcp_line_is_valid(const char *line)
243{
244 const size_t line_len = strlen(line);
245 if (line[0] == '\0')
246 return true;
247
248 if (line_len < 2
249 || line[1] != '=') {
250 LOGP(DLMGCP, LOGL_ERROR,
251 "Wrong MGCP option format: '%s'\n",
252 line);
253 return false;
254 }
255
256 return true;
257}
258
Philipp Maier704c4f02018-06-07 18:51:31 +0200259/* Parse a line like "m=audio 16002 RTP/AVP 98", extract port and payload types */
260static int mgcp_parse_audio_port_pt(struct mgcp_response *r, char *line)
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200261{
Philipp Maier704c4f02018-06-07 18:51:31 +0200262 char *pt_str;
263 unsigned int pt;
264 unsigned int count = 0;
265 unsigned int i;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200266
Philipp Maier704c4f02018-06-07 18:51:31 +0200267 /* Extract port information */
268 if (sscanf(line, "m=audio %hu", &r->audio_port) != 1)
269 goto response_parse_failure_port;
Philipp Maier10f32db2017-12-13 12:34:34 +0100270 if (r->audio_port == 0)
Philipp Maier704c4f02018-06-07 18:51:31 +0200271 goto response_parse_failure_port;
Philipp Maier10f32db2017-12-13 12:34:34 +0100272
Philipp Maier704c4f02018-06-07 18:51:31 +0200273 /* Extract payload types */
274 line = strstr(line, "RTP/AVP ");
275 if (!line)
276 goto exit;
277
278 pt_str = strtok(line, " ");
279 while (1) {
280 /* Do not allow excessive payload types */
281 if (count > ARRAY_SIZE(r->codecs))
282 goto response_parse_failure_pt;
283
284 pt_str = strtok(NULL, " ");
285 if (!pt_str)
286 break;
287 pt = atoi(pt_str);
288
289 /* Do not allow duplicate payload types */
290 for (i = 0; i < count; i++)
291 if (r->codecs[i] == pt)
292 goto response_parse_failure_pt;
293
294 /* Note: The payload type we store may not necessarly match
295 * the codec types we have defined in enum mgcp_codecs. To
296 * ensure that the end result only contains codec types which
297 * match enum mgcp_codecs, we will go through afterwards and
298 * remap the affected entries with the inrofmation we learn
299 * from rtpmap */
300 r->codecs[count] = pt;
301 count++;
302 }
303
304 r->codecs_len = count;
305
306exit:
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200307 return 0;
308
Philipp Maier704c4f02018-06-07 18:51:31 +0200309response_parse_failure_port:
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200310 LOGP(DLMGCP, LOGL_ERROR,
Philipp Maier704c4f02018-06-07 18:51:31 +0200311 "Failed to parse SDP parameter port (%s)\n", line);
Philipp Maier06da85e2017-10-05 18:49:24 +0200312 return -EINVAL;
Philipp Maier704c4f02018-06-07 18:51:31 +0200313
314response_parse_failure_pt:
315 LOGP(DLMGCP, LOGL_ERROR,
316 "Failed to parse SDP parameter payload types (%s)\n", line);
317 return -EINVAL;
318}
319
320/* Parse a line like "m=audio 16002 RTP/AVP 98", extract port and payload types */
321static int mgcp_parse_audio_ptime_rtpmap(struct mgcp_response *r, const char *line)
322{
323 unsigned int pt;
324 char codec_resp[64];
325 unsigned int codec;
Pau Espin Pedrolc12bfb72019-04-16 17:23:09 +0200326
327
Philipp Maier704c4f02018-06-07 18:51:31 +0200328 if (strstr(line, "ptime")) {
329 if (sscanf(line, "a=ptime:%u", &r->ptime) != 1)
330 goto response_parse_failure_ptime;
331 } else if (strstr(line, "rtpmap")) {
332 if (sscanf(line, "a=rtpmap:%d %63s", &pt, codec_resp) == 2) {
333 /* The MGW may assign an own payload type in the
334 * response if the choosen codec falls into the IANA
335 * assigned dynamic payload type range (96-127).
336 * Normally the MGW should obey the 3gpp payload type
337 * assignments, which are fixed, so we likely wont see
338 * anything unexpected here. In order to be sure that
339 * we will now check the codec string and if the result
340 * does not match to what is IANA / 3gpp assigned, we
341 * will create an entry in the ptmap table so we can
342 * lookup later what has been assigned. */
343 codec = map_str_to_codec(codec_resp);
344 if (codec != pt) {
345 if (r->ptmap_len < ARRAY_SIZE(r->ptmap)) {
346 r->ptmap[r->ptmap_len].pt = pt;
347 r->ptmap[r->ptmap_len].codec = codec;
348 r->ptmap_len++;
349 } else
350 goto response_parse_failure_rtpmap;
351 }
352
353 } else
354 goto response_parse_failure_rtpmap;
355 }
Pau Espin Pedrolc12bfb72019-04-16 17:23:09 +0200356
Philipp Maier704c4f02018-06-07 18:51:31 +0200357 return 0;
358
359response_parse_failure_ptime:
360 LOGP(DLMGCP, LOGL_ERROR,
361 "Failed to parse SDP parameter, invalid ptime (%s)\n", line);
Pau Espin Pedrolc12bfb72019-04-16 17:23:09 +0200362 return -EINVAL;
Philipp Maier704c4f02018-06-07 18:51:31 +0200363response_parse_failure_rtpmap:
364 LOGP(DLMGCP, LOGL_ERROR,
365 "Failed to parse SDP parameter, invalid rtpmap (%s)\n", line);
Pau Espin Pedrolc12bfb72019-04-16 17:23:09 +0200366 return -EINVAL;
Philipp Maier06da85e2017-10-05 18:49:24 +0200367}
368
369/* Parse a line like "c=IN IP4 10.11.12.13" */
370static int mgcp_parse_audio_ip(struct mgcp_response *r, const char *line)
371{
372 struct in_addr ip_test;
373
374 if (strlen(line) < 16)
375 goto response_parse_failure;
376
377 /* The current implementation strictly supports IPV4 only ! */
378 if (memcmp("c=IN IP4 ", line, 9) != 0)
379 goto response_parse_failure;
380
381 /* Extract IP-Address */
Philipp Maierf8bfbe82017-11-23 19:32:31 +0100382 osmo_strlcpy(r->audio_ip, line + 9, sizeof(r->audio_ip));
Philipp Maier06da85e2017-10-05 18:49:24 +0200383
384 /* Check IP-Address */
385 if (inet_aton(r->audio_ip, &ip_test) == 0)
386 goto response_parse_failure;
387
388 return 0;
389
390response_parse_failure:
391 LOGP(DLMGCP, LOGL_ERROR,
392 "Failed to parse MGCP response header (audio ip)\n");
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200393 return -EINVAL;
394}
395
Pau Espin Pedrol91088c32019-04-24 21:02:40 +0200396/*! Extract OSMUX CID from an MGCP parameter line (string).
397 * \param[in] line single parameter line from the MGCP message
398 * \returns OSMUX CID, -1 wildcard, -2 on error
399 * FIXME: This is a copy of function in mgcp_msg.c. Have some common.c file between both libs?
400 */
401static int mgcp_parse_osmux_cid(const char *line)
402{
403 int osmux_cid;
404
405
406 if (strstr(line + 2, "Osmux: *")) {
407 LOGP(DLMGCP, LOGL_DEBUG, "Parsed wilcard Osmux CID\n");
408 return -1;
409 }
410
411 if (sscanf(line + 2, "Osmux: %u", &osmux_cid) != 1) {
412 LOGP(DLMGCP, LOGL_ERROR, "Failed parsing Osmux in MGCP msg line: %s\n",
413 line);
414 return -2;
415 }
416
417#ifndef OSMUX_CID_MAX
418#define OSMUX_CID_MAX 255 /* FIXME: use OSMUX_CID_MAX from libosmo-netif? */
419#endif
420 if (osmux_cid > OSMUX_CID_MAX) { /* OSMUX_CID_MAX from libosmo-netif */
421 LOGP(DLMGCP, LOGL_ERROR, "Osmux ID too large: %u > %u\n",
422 osmux_cid, OSMUX_CID_MAX);
423 return -2;
424 }
425 LOGP(DLMGCP, LOGL_DEBUG, "bsc-nat offered Osmux CID %u\n", osmux_cid);
426
427 return osmux_cid;
428}
429
Philipp Maier3b12e1b2018-01-18 15:16:13 +0100430/* A new section is marked by a double line break, check a few more
431 * patterns as there may be variants */
432static char *mgcp_find_section_end(char *string)
433{
434 char *rc;
435
436 rc = strstr(string, "\n\n");
437 if (rc)
438 return rc;
439
440 rc = strstr(string, "\n\r\n\r");
441 if (rc)
442 return rc;
443
444 rc = strstr(string, "\r\n\r\n");
445 if (rc)
446 return rc;
447
448 return NULL;
449}
450
Philipp Maier275ac972018-01-20 00:58:16 +0100451/*! Parse body (SDP) parameters of the MGCP response
452 * \param[in,out] r Response data
453 * \returns 0 on success, -EINVAL on error. */
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200454int mgcp_response_parse_params(struct mgcp_response *r)
455{
456 char *line;
457 int rc;
Neels Hofmeyr0793d2f2018-02-21 14:55:34 +0100458 char *data;
Philipp Maiere9d645b2018-01-19 23:54:08 +0100459 char *data_ptr;
Philipp Maier704c4f02018-06-07 18:51:31 +0200460 int i;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200461
Philipp Maiere9d645b2018-01-19 23:54:08 +0100462 /* Since this functions performs a destructive parsing, we create a
463 * local copy of the body data */
Neels Hofmeyr0793d2f2018-02-21 14:55:34 +0100464 OSMO_ASSERT(r->body);
465 data = talloc_strdup(r, r->body);
Philipp Maiere9d645b2018-01-19 23:54:08 +0100466 OSMO_ASSERT(data);
Philipp Maier55295f72018-01-15 14:00:28 +0100467
Philipp Maiere9d645b2018-01-19 23:54:08 +0100468 /* Find beginning of the parameter (SDP) section */
469 data_ptr = mgcp_find_section_end(data);
Neels Hofmeyr10835332018-02-21 14:55:34 +0100470 if (!data_ptr) {
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200471 LOGP(DLMGCP, LOGL_ERROR,
Neels Hofmeyr0793d2f2018-02-21 14:55:34 +0100472 "MGCP response: cannot find start of SDP parameters\n");
Philipp Maiere9d645b2018-01-19 23:54:08 +0100473 rc = -EINVAL;
474 goto exit;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200475 }
476
Neels Hofmeyr0793d2f2018-02-21 14:55:34 +0100477 /* data_ptr now points to the beginning of the section-end-marker; for_each_non_empty_line()
478 * skips any \r and \n characters for free, so we don't need to skip the marker. */
479
Philipp Maiere9d645b2018-01-19 23:54:08 +0100480 for_each_non_empty_line(line, data_ptr) {
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200481 if (!mgcp_line_is_valid(line))
482 return -EINVAL;
483
484 switch (line[0]) {
Philipp Maier704c4f02018-06-07 18:51:31 +0200485 case 'a':
486 rc = mgcp_parse_audio_ptime_rtpmap(r, line);
487 if (rc)
488 goto exit;
489 break;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200490 case 'm':
Philipp Maier704c4f02018-06-07 18:51:31 +0200491 rc = mgcp_parse_audio_port_pt(r, line);
Philipp Maier06da85e2017-10-05 18:49:24 +0200492 if (rc)
Philipp Maiere9d645b2018-01-19 23:54:08 +0100493 goto exit;
Philipp Maier06da85e2017-10-05 18:49:24 +0200494 break;
495 case 'c':
496 rc = mgcp_parse_audio_ip(r, line);
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200497 if (rc)
Philipp Maiere9d645b2018-01-19 23:54:08 +0100498 goto exit;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200499 break;
500 default:
501 /* skip unhandled parameters */
502 break;
503 }
504 }
Philipp Maiere9d645b2018-01-19 23:54:08 +0100505
Philipp Maier704c4f02018-06-07 18:51:31 +0200506 /* See also note in mgcp_parse_audio_port_pt() */
507 for (i = 0; i < r->codecs_len; i++)
508 r->codecs[i] = map_pt_to_codec(r->ptmap, r->ptmap_len, r->codecs[i]);
509
Philipp Maiere9d645b2018-01-19 23:54:08 +0100510 rc = 0;
511exit:
512 talloc_free(data);
513 return rc;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200514}
515
Philipp Maier55295f72018-01-15 14:00:28 +0100516/* Parse a line like "X: something" */
517static int mgcp_parse_head_param(char *result, unsigned int result_len,
518 char label, const char *line)
Philipp Maierffd75e42017-11-22 11:44:50 +0100519{
Philipp Maier55295f72018-01-15 14:00:28 +0100520 char label_string[4];
Neels Hofmeyr23e7bf12018-09-03 21:26:22 +0200521 size_t rc;
Philipp Maier55295f72018-01-15 14:00:28 +0100522
523 /* Detect empty parameters */
Philipp Maierffd75e42017-11-22 11:44:50 +0100524 if (strlen(line) < 4)
525 goto response_parse_failure;
526
Philipp Maier55295f72018-01-15 14:00:28 +0100527 /* Check if the label matches */
528 snprintf(label_string, sizeof(label_string), "%c: ", label);
529 if (memcmp(label_string, line, 3) != 0)
Philipp Maierffd75e42017-11-22 11:44:50 +0100530 goto response_parse_failure;
531
Philipp Maier55295f72018-01-15 14:00:28 +0100532 /* Copy payload part of the string to destinations (the label string
533 * is always 3 chars long) */
Neels Hofmeyr23e7bf12018-09-03 21:26:22 +0200534 rc = osmo_strlcpy(result, line + 3, result_len);
535 if (rc >= result_len) {
536 LOGP(DLMGCP, LOGL_ERROR,
537 "Failed to parse MGCP response (parameter label: %c):"
538 " the received conn ID is too long: %zu, maximum is %u characters\n",
539 label, rc, result_len - 1);
540 return -ENOSPC;
541 }
Philipp Maierffd75e42017-11-22 11:44:50 +0100542 return 0;
543
544response_parse_failure:
545 LOGP(DLMGCP, LOGL_ERROR,
Philipp Maier55295f72018-01-15 14:00:28 +0100546 "Failed to parse MGCP response (parameter label: %c)\n", label);
Philipp Maierffd75e42017-11-22 11:44:50 +0100547 return -EINVAL;
548}
549
550/* Parse MGCP parameters of the response */
551static int parse_head_params(struct mgcp_response *r)
552{
553 char *line;
554 int rc = 0;
555 OSMO_ASSERT(r->body);
Philipp Maier55295f72018-01-15 14:00:28 +0100556 char *data;
557 char *data_ptr;
558 char *data_end;
Philipp Maierffd75e42017-11-22 11:44:50 +0100559
Philipp Maier55295f72018-01-15 14:00:28 +0100560 /* Since this functions performs a destructive parsing, we create a
561 * local copy of the body data */
Philipp Maier1fc69992018-01-31 15:32:55 +0100562 data = talloc_zero_size(r, strlen(r->body)+1);
Philipp Maier55295f72018-01-15 14:00:28 +0100563 OSMO_ASSERT(data);
564 data_ptr = data;
565 osmo_strlcpy(data, r->body, strlen(r->body));
566
567 /* If there is an SDP body attached, prevent for_each_non_empty_line()
568 * into running in there, we are not yet interested in the parameters
569 * stored there. */
Pau Espin Pedrolc12bfb72019-04-16 17:23:09 +0200570 data_end = mgcp_find_section_end(data);
Philipp Maierffd75e42017-11-22 11:44:50 +0100571 if (data_end)
572 *data_end = '\0';
573
Philipp Maier55295f72018-01-15 14:00:28 +0100574 for_each_non_empty_line(line, data_ptr) {
Philipp Maierffd75e42017-11-22 11:44:50 +0100575 switch (line[0]) {
Philipp Maier55295f72018-01-15 14:00:28 +0100576 case 'Z':
577 rc = mgcp_parse_head_param(r->head.endpoint,
578 sizeof(r->head.endpoint),
579 'Z', line);
580 if (rc)
581 goto exit;
Philipp Maier771b26a2018-01-31 13:53:11 +0100582
583 /* A specific endpoint identifier returned by the MGW
584 * must not contain any wildcard characters */
585 if (strstr(r->head.endpoint, "*") != NULL) {
586 rc = -EINVAL;
587 goto exit;
588 }
Philipp Maier3261dc72018-01-31 14:03:13 +0100589
590 /* A specific endpoint identifier returned by the MGW
591 * must contain an @ character */
592 if (strstr(r->head.endpoint, "@") == NULL) {
593 rc = -EINVAL;
594 goto exit;
595 }
Philipp Maier55295f72018-01-15 14:00:28 +0100596 break;
Philipp Maierffd75e42017-11-22 11:44:50 +0100597 case 'I':
Philipp Maier55295f72018-01-15 14:00:28 +0100598 rc = mgcp_parse_head_param(r->head.conn_id,
599 sizeof(r->head.conn_id),
600 'I', line);
Philipp Maierffd75e42017-11-22 11:44:50 +0100601 if (rc)
602 goto exit;
603 break;
Pau Espin Pedrol91088c32019-04-24 21:02:40 +0200604 case 'X':
605 if (strncmp("Osmux: ", line + 2, strlen("Osmux: ")) == 0) {
606 rc = mgcp_parse_osmux_cid(line);
607 if (rc < 0) {
608 /* -1: we don't want wildcards in response. -2: error */
609 rc = -EINVAL;
610 goto exit;
611 }
612 r->head.x_osmo_osmux_use = true;
613 r->head.x_osmo_osmux_cid = (uint8_t) rc;
614 rc = 0;
615 break;
616 }
617 /* Ignore unknown X-headers */
618 break;
Philipp Maierffd75e42017-11-22 11:44:50 +0100619 default:
620 /* skip unhandled parameters */
621 break;
622 }
623 }
624exit:
Philipp Maier55295f72018-01-15 14:00:28 +0100625 talloc_free(data);
Philipp Maierffd75e42017-11-22 11:44:50 +0100626 return rc;
627}
628
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200629static struct mgcp_response_pending *mgcp_client_response_pending_get(
630 struct mgcp_client *mgcp,
Neels Hofmeyrc8f37cb2017-11-30 13:43:11 +0100631 mgcp_trans_id_t trans_id)
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200632{
633 struct mgcp_response_pending *pending;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200634 llist_for_each_entry(pending, &mgcp->responses_pending, entry) {
Neels Hofmeyrc8f37cb2017-11-30 13:43:11 +0100635 if (pending->trans_id == trans_id) {
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200636 llist_del(&pending->entry);
637 return pending;
638 }
639 }
640 return NULL;
641}
642
643/* Feed an MGCP message into the receive processing.
644 * Parse the head and call any callback registered for the transaction id found
645 * in the MGCP message. This is normally called directly from the internal
646 * mgcp_do_read that reads from the socket connected to the MGCP gateway. This
647 * function is published mainly to be able to feed data from the test suite.
648 */
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200649int mgcp_client_rx(struct mgcp_client *mgcp, struct msgb *msg)
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200650{
Philipp Maier1fc69992018-01-31 15:32:55 +0100651 struct mgcp_response *r;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200652 struct mgcp_response_pending *pending;
653 int rc;
654
Philipp Maier1fc69992018-01-31 15:32:55 +0100655 r = talloc_zero(mgcp, struct mgcp_response);
656 OSMO_ASSERT(r);
657
658 rc = mgcp_response_parse_head(r, msg);
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200659 if (rc) {
Philipp Maierffd75e42017-11-22 11:44:50 +0100660 LOGP(DLMGCP, LOGL_ERROR, "Cannot parse MGCP response (head)\n");
Philipp Maier1fc69992018-01-31 15:32:55 +0100661 rc = 1;
662 goto error;
Philipp Maierffd75e42017-11-22 11:44:50 +0100663 }
664
Philipp Maier1fc69992018-01-31 15:32:55 +0100665 rc = parse_head_params(r);
Philipp Maierffd75e42017-11-22 11:44:50 +0100666 if (rc) {
667 LOGP(DLMGCP, LOGL_ERROR, "Cannot parse MGCP response (head parameters)\n");
Philipp Maier1fc69992018-01-31 15:32:55 +0100668 rc = 1;
669 goto error;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200670 }
671
Philipp Maier1fc69992018-01-31 15:32:55 +0100672 pending = mgcp_client_response_pending_get(mgcp, r->head.trans_id);
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200673 if (!pending) {
674 LOGP(DLMGCP, LOGL_ERROR,
675 "Cannot find matching MGCP transaction for trans_id %d\n",
Philipp Maier1fc69992018-01-31 15:32:55 +0100676 r->head.trans_id);
677 rc = -ENOENT;
678 goto error;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200679 }
680
Philipp Maier1fc69992018-01-31 15:32:55 +0100681 mgcp_client_handle_response(mgcp, pending, r);
682 rc = 0;
683
684error:
685 talloc_free(r);
686 return rc;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200687}
688
689static int mgcp_do_read(struct osmo_fd *fd)
690{
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200691 struct mgcp_client *mgcp = fd->data;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200692 struct msgb *msg;
693 int ret;
694
695 msg = msgb_alloc_headroom(4096, 128, "mgcp_from_gw");
696 if (!msg) {
697 LOGP(DLMGCP, LOGL_ERROR, "Failed to allocate MGCP message.\n");
698 return -1;
699 }
700
701 ret = read(fd->fd, msg->data, 4096 - 128);
702 if (ret <= 0) {
Neels Hofmeyr0a403792018-12-12 03:10:18 +0100703 LOGP(DLMGCP, LOGL_ERROR, "Failed to read: %s: %d='%s'\n", osmo_sock_get_name2(fd->fd),
704 errno, strerror(errno));
705
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200706 msgb_free(msg);
707 return -1;
708 } else if (ret > 4096 - 128) {
Neels Hofmeyr0a403792018-12-12 03:10:18 +0100709 LOGP(DLMGCP, LOGL_ERROR, "Too much data: %s: %d\n", osmo_sock_get_name2(fd->fd), ret);
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200710 msgb_free(msg);
711 return -1;
Harald Welte9bf7c532017-11-17 14:14:31 +0100712 }
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200713
714 msg->l2h = msgb_put(msg, ret);
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200715 ret = mgcp_client_rx(mgcp, msg);
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200716 talloc_free(msg);
717 return ret;
718}
719
720static int mgcp_do_write(struct osmo_fd *fd, struct msgb *msg)
721{
722 int ret;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200723
Neels Hofmeyr0a403792018-12-12 03:10:18 +0100724 LOGP(DLMGCP, LOGL_DEBUG, "Tx MGCP: %s: len=%u '%s'...\n",
725 osmo_sock_get_name2(fd->fd), msg->len, osmo_escape_str((const char*)msg->data, OSMO_MIN(42, msg->len)));
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200726
727 ret = write(fd->fd, msg->data, msg->len);
728 if (ret != msg->len)
Neels Hofmeyr0a403792018-12-12 03:10:18 +0100729 LOGP(DLMGCP, LOGL_ERROR, "Failed to Tx MGCP: %s: %d='%s'; msg: len=%u '%s'...\n",
730 osmo_sock_get_name2(fd->fd), errno, strerror(errno),
Neels Hofmeyr32d15cc2018-12-12 03:05:33 +0100731 msg->len, osmo_escape_str((const char*)msg->data, OSMO_MIN(42, msg->len)));
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200732 return ret;
733}
734
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200735struct mgcp_client *mgcp_client_init(void *ctx,
736 struct mgcp_client_conf *conf)
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200737{
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200738 struct mgcp_client *mgcp;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200739
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200740 mgcp = talloc_zero(ctx, struct mgcp_client);
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200741
742 INIT_LLIST_HEAD(&mgcp->responses_pending);
743 INIT_LLIST_HEAD(&mgcp->inuse_endpoints);
744
745 mgcp->next_trans_id = 1;
746
747 mgcp->actual.local_addr = conf->local_addr ? conf->local_addr :
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200748 MGCP_CLIENT_LOCAL_ADDR_DEFAULT;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200749 mgcp->actual.local_port = conf->local_port >= 0 ? (uint16_t)conf->local_port :
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200750 MGCP_CLIENT_LOCAL_PORT_DEFAULT;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200751
752 mgcp->actual.remote_addr = conf->remote_addr ? conf->remote_addr :
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200753 MGCP_CLIENT_REMOTE_ADDR_DEFAULT;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200754 mgcp->actual.remote_port = conf->remote_port >= 0 ? (uint16_t)conf->remote_port :
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200755 MGCP_CLIENT_REMOTE_PORT_DEFAULT;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200756
Neels Hofmeyrac69ea92018-12-19 00:27:50 +0100757 if (osmo_strlcpy(mgcp->actual.endpoint_domain_name, conf->endpoint_domain_name,
758 sizeof(mgcp->actual.endpoint_domain_name))
759 >= sizeof(mgcp->actual.endpoint_domain_name)) {
760 LOGP(DLMGCP, LOGL_ERROR, "MGCP client: endpoint domain name is too long, max length is %zu: '%s'\n",
761 sizeof(mgcp->actual.endpoint_domain_name) - 1, conf->endpoint_domain_name);
762 talloc_free(mgcp);
763 return NULL;
764 }
765 LOGP(DLMGCP, LOGL_NOTICE, "MGCP client: using endpoint domain '@%s'\n", mgcp_client_endpoint_domain(mgcp));
766
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200767 return mgcp;
768}
769
Philipp Maier6a26c162018-08-01 16:37:06 +0200770static int init_socket(struct mgcp_client *mgcp)
771{
772 int rc;
773 struct osmo_wqueue *wq;
774 int i;
775
776 wq = &mgcp->wq;
777
778 for (i = 0; i < 100; i++) {
779
780 /* Initalize socket with the currently configured port
781 * number */
782 rc = osmo_sock_init2_ofd(&wq->bfd, AF_INET, SOCK_DGRAM, IPPROTO_UDP, mgcp->actual.local_addr,
783 mgcp->actual.local_port, mgcp->actual.remote_addr, mgcp->actual.remote_port,
784 OSMO_SOCK_F_BIND | OSMO_SOCK_F_CONNECT);
785 if (rc > 0)
786 return rc;
787
788 /* If there is a different port than the default port
789 * configured then we assume that the user has choosen
790 * that port conciously and we will not try to resolve
791 * this by silently choosing a different port. */
Philipp Maier9a7ccc32018-08-09 11:41:19 +0200792 if (mgcp->actual.local_port != MGCP_CLIENT_LOCAL_PORT_DEFAULT && i == 0)
Philipp Maier6a26c162018-08-01 16:37:06 +0200793 return -EINVAL;
794
795 /* Choose a new port number to try next */
796 LOGP(DLMGCP, LOGL_NOTICE,
Neels Hofmeyr0a403792018-12-12 03:10:18 +0100797 "MGCPGW failed to bind to %s:%u, retrying with port %u\n",
798 mgcp->actual.local_addr, mgcp->actual.local_port, mgcp->actual.local_port + 1);
Philipp Maier6a26c162018-08-01 16:37:06 +0200799 mgcp->actual.local_port++;
800 }
801
Neels Hofmeyr0a403792018-12-12 03:10:18 +0100802 LOGP(DLMGCP, LOGL_FATAL, "MGCPGW failed to find a port to bind on %i times.\n", i);
Philipp Maier6a26c162018-08-01 16:37:06 +0200803 return -EINVAL;
804}
805
Philipp Maier275ac972018-01-20 00:58:16 +0100806/*! Initalize client connection (opens socket only, no request is sent yet)
807 * \param[in,out] mgcp MGCP client descriptor.
808 * \returns 0 on success, -EINVAL on error. */
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200809int mgcp_client_connect(struct mgcp_client *mgcp)
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200810{
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200811 struct sockaddr_in addr;
812 struct osmo_wqueue *wq;
813 int rc;
814
815 if (!mgcp) {
816 LOGP(DLMGCP, LOGL_FATAL, "MGCPGW client not initialized properly\n");
817 return -EINVAL;
818 }
819
820 wq = &mgcp->wq;
821
Philipp Maier6a26c162018-08-01 16:37:06 +0200822 rc = init_socket(mgcp);
Harald Welte8890dfa2017-11-17 15:09:30 +0100823 if (rc < 0) {
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200824 LOGP(DLMGCP, LOGL_FATAL,
Harald Welte8890dfa2017-11-17 15:09:30 +0100825 "Failed to initialize socket %s:%u -> %s:%u for MGCP GW: %s\n",
826 mgcp->actual.local_addr, mgcp->actual.local_port,
827 mgcp->actual.remote_addr, mgcp->actual.remote_port, strerror(errno));
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200828 goto error_close_fd;
829 }
830
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200831 inet_aton(mgcp->actual.remote_addr, &addr.sin_addr);
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200832 mgcp->remote_addr = htonl(addr.sin_addr.s_addr);
833
834 osmo_wqueue_init(wq, 10);
835 wq->bfd.when = BSC_FD_READ;
836 wq->bfd.data = mgcp;
837 wq->read_cb = mgcp_do_read;
838 wq->write_cb = mgcp_do_write;
839
Neels Hofmeyr0a403792018-12-12 03:10:18 +0100840 LOGP(DLMGCP, LOGL_INFO, "MGCP GW connection: %s\n", osmo_sock_get_name2(wq->bfd.fd));
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200841
842 return 0;
843error_close_fd:
844 close(wq->bfd.fd);
845 wq->bfd.fd = -1;
846 return rc;
847}
848
Philipp Maier275ac972018-01-20 00:58:16 +0100849/*! Get the IP-Aaddress of the associated MGW as string.
850 * \param[in] mgcp MGCP client descriptor.
851 * \returns a pointer to the address string. */
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200852const char *mgcp_client_remote_addr_str(struct mgcp_client *mgcp)
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200853{
854 return mgcp->actual.remote_addr;
855}
856
Philipp Maier275ac972018-01-20 00:58:16 +0100857/*! Get the IP-Port of the associated MGW.
858 * \param[in] mgcp MGCP client descriptor.
859 * \returns port number. */
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200860uint16_t mgcp_client_remote_port(struct mgcp_client *mgcp)
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200861{
862 return mgcp->actual.remote_port;
863}
864
Philipp Maier275ac972018-01-20 00:58:16 +0100865/*! Get the IP-Aaddress of the associated MGW as its numeric representation.
866 * \param[in] mgcp MGCP client descriptor.
867 * \returns IP-Address as 32 bit integer (network byte order) */
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200868uint32_t mgcp_client_remote_addr_n(struct mgcp_client *mgcp)
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200869{
870 return mgcp->remote_addr;
871}
872
Neels Hofmeyrac69ea92018-12-19 00:27:50 +0100873/* To compose endpoint names, usually for CRCX, use this as domain name.
874 * For example, snprintf("rtpbridge\*@%s", mgcp_client_endpoint_domain(mgcp)). */
875const char *mgcp_client_endpoint_domain(const struct mgcp_client *mgcp)
876{
877 return mgcp->actual.endpoint_domain_name[0] ? mgcp->actual.endpoint_domain_name : "mgw";
878}
879
Pau Espin Pedrolca0818c2019-04-16 17:23:38 +0200880static const char *_mgcp_client_name_append_domain(const struct mgcp_client *mgcp, char *name)
Neels Hofmeyrac69ea92018-12-19 00:27:50 +0100881{
882 static char endpoint[MGCP_ENDPOINT_MAXLEN];
883 int rc;
884
Pau Espin Pedrolca0818c2019-04-16 17:23:38 +0200885 rc = snprintf(endpoint, sizeof(endpoint), "%s@%s", name, mgcp_client_endpoint_domain(mgcp));
Neels Hofmeyrac69ea92018-12-19 00:27:50 +0100886 if (rc > sizeof(endpoint) - 1) {
Pau Espin Pedrolca0818c2019-04-16 17:23:38 +0200887 LOGP(DLMGCP, LOGL_ERROR, "MGCP endpoint exceeds maximum length of %zu: '%s@%s'\n",
888 sizeof(endpoint) - 1, name, mgcp_client_endpoint_domain(mgcp));
Neels Hofmeyrac69ea92018-12-19 00:27:50 +0100889 return NULL;
890 }
891 if (rc < 1) {
892 LOGP(DLMGCP, LOGL_ERROR, "Cannot compose MGCP endpoint name\n");
893 return NULL;
894 }
895 return endpoint;
896}
897
Pau Espin Pedrolca0818c2019-04-16 17:23:38 +0200898const char *mgcp_client_rtpbridge_wildcard(const struct mgcp_client *mgcp)
899{
900 return _mgcp_client_name_append_domain(mgcp, "rtpbridge/*");
901}
902
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200903struct mgcp_response_pending * mgcp_client_pending_add(
904 struct mgcp_client *mgcp,
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200905 mgcp_trans_id_t trans_id,
906 mgcp_response_cb_t response_cb,
907 void *priv)
908{
909 struct mgcp_response_pending *pending;
910
911 pending = talloc_zero(mgcp, struct mgcp_response_pending);
912 pending->trans_id = trans_id;
913 pending->response_cb = response_cb;
914 pending->priv = priv;
915 llist_add_tail(&pending->entry, &mgcp->responses_pending);
916
917 return pending;
918}
919
920/* Send the MGCP message in msg to the MGCP GW and handle a response with
921 * response_cb. NOTE: the response_cb still needs to call
922 * mgcp_response_parse_params(response) to get the parsed parameters -- to
923 * potentially save some CPU cycles, only the head line has been parsed when
Neels Hofmeyrc8f37cb2017-11-30 13:43:11 +0100924 * the response_cb is invoked.
925 * Before the priv pointer becomes invalid, e.g. due to transaction timeout,
926 * mgcp_client_cancel() needs to be called for this transaction.
927 */
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200928int mgcp_client_tx(struct mgcp_client *mgcp, struct msgb *msg,
929 mgcp_response_cb_t response_cb, void *priv)
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200930{
931 struct mgcp_response_pending *pending;
932 mgcp_trans_id_t trans_id;
933 int rc;
934
935 trans_id = msg->cb[MSGB_CB_MGCP_TRANS_ID];
936 if (!trans_id) {
937 LOGP(DLMGCP, LOGL_ERROR,
938 "Unset transaction id in mgcp send request\n");
939 talloc_free(msg);
940 return -EINVAL;
941 }
942
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200943 pending = mgcp_client_pending_add(mgcp, trans_id, response_cb, priv);
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200944
945 if (msgb_l2len(msg) > 4096) {
946 LOGP(DLMGCP, LOGL_ERROR,
947 "Cannot send, MGCP message too large: %u\n",
948 msgb_l2len(msg));
949 msgb_free(msg);
950 rc = -EINVAL;
951 goto mgcp_tx_error;
952 }
953
954 rc = osmo_wqueue_enqueue(&mgcp->wq, msg);
955 if (rc) {
956 LOGP(DLMGCP, LOGL_FATAL, "Could not queue message to MGCP GW\n");
957 msgb_free(msg);
958 goto mgcp_tx_error;
959 } else
Neels Hofmeyred0c1aa2018-12-21 03:07:53 +0100960 LOGP(DLMGCP, LOGL_DEBUG, "Queued %u bytes for MGCP GW\n",
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200961 msgb_l2len(msg));
962 return 0;
963
964mgcp_tx_error:
965 /* Pass NULL to response cb to indicate an error */
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200966 mgcp_client_handle_response(mgcp, pending, NULL);
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200967 return -1;
968}
969
Philipp Maier275ac972018-01-20 00:58:16 +0100970/*! Cancel a pending transaction.
971 * \param[in] mgcp MGCP client descriptor.
972 * \param[in,out] trans_id Transaction id.
973 * \returns 0 on success, -ENOENT on error.
974 *
Neels Hofmeyrc8f37cb2017-11-30 13:43:11 +0100975 * Should a priv pointer passed to mgcp_client_tx() become invalid, this function must be called. In
976 * practical terms, if the caller of mgcp_client_tx() wishes to tear down a transaction without having
977 * received a response this function must be called. The trans_id can be obtained by calling
Philipp Maier275ac972018-01-20 00:58:16 +0100978 * mgcp_msg_trans_id() on the msgb produced by mgcp_msg_gen(). */
Neels Hofmeyrc8f37cb2017-11-30 13:43:11 +0100979int mgcp_client_cancel(struct mgcp_client *mgcp, mgcp_trans_id_t trans_id)
980{
981 struct mgcp_response_pending *pending = mgcp_client_response_pending_get(mgcp, trans_id);
982 if (!pending) {
Philipp Maier275ac972018-01-20 00:58:16 +0100983 /*! Note: it is not harmful to cancel a transaction twice. */
Neels Hofmeyred0c1aa2018-12-21 03:07:53 +0100984 LOGP(DLMGCP, LOGL_ERROR, "Cannot cancel, no such transaction: %u\n", trans_id);
Neels Hofmeyrc8f37cb2017-11-30 13:43:11 +0100985 return -ENOENT;
986 }
Neels Hofmeyred0c1aa2018-12-21 03:07:53 +0100987 LOGP(DLMGCP, LOGL_DEBUG, "Canceled transaction %u\n", trans_id);
Neels Hofmeyrc8f37cb2017-11-30 13:43:11 +0100988 talloc_free(pending);
989 return 0;
Philipp Maier275ac972018-01-20 00:58:16 +0100990 /*! We don't really need to clean up the wqueue: In all sane cases, the msgb has already been sent
991 * out and is no longer in the wqueue. If it still is in the wqueue, then sending MGCP messages
992 * per se is broken and the program should notice so by a full wqueue. Even if this was called
993 * before we had a chance to send out the message and it is still going to be sent, we will just
994 * ignore the reply to it later. Removing a msgb from the wqueue here would just introduce more
995 * bug surface in terms of failing to update wqueue API's counters or some such.
Neels Hofmeyrc8f37cb2017-11-30 13:43:11 +0100996 */
997}
998
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200999static mgcp_trans_id_t mgcp_client_next_trans_id(struct mgcp_client *mgcp)
Neels Hofmeyre9920f22017-07-10 15:07:22 +02001000{
1001 /* avoid zero trans_id to distinguish from unset trans_id */
1002 if (!mgcp->next_trans_id)
1003 mgcp->next_trans_id ++;
1004 return mgcp->next_trans_id ++;
1005}
1006
Philipp Maier1dc6be62017-10-05 18:25:37 +02001007#define MGCP_CRCX_MANDATORY (MGCP_MSG_PRESENCE_ENDPOINT | \
1008 MGCP_MSG_PRESENCE_CALL_ID | \
Philipp Maier1dc6be62017-10-05 18:25:37 +02001009 MGCP_MSG_PRESENCE_CONN_MODE)
1010#define MGCP_MDCX_MANDATORY (MGCP_MSG_PRESENCE_ENDPOINT | \
Philipp Maier490cbaa2018-01-22 17:32:38 +01001011 MGCP_MSG_PRESENCE_CALL_ID | \
Philipp Maier1dc6be62017-10-05 18:25:37 +02001012 MGCP_MSG_PRESENCE_CONN_ID)
1013#define MGCP_DLCX_MANDATORY (MGCP_MSG_PRESENCE_ENDPOINT)
1014#define MGCP_AUEP_MANDATORY (MGCP_MSG_PRESENCE_ENDPOINT)
1015#define MGCP_RSIP_MANDATORY 0 /* none */
1016
Philipp Maier704c4f02018-06-07 18:51:31 +02001017/* Helper function for mgcp_msg_gen(): Add LCO information to MGCP message */
1018static int add_lco(struct msgb *msg, struct mgcp_msg *mgcp_msg)
1019{
1020 unsigned int i;
1021 int rc = 0;
1022 const char *codec;
1023 unsigned int pt;
1024
1025 rc += msgb_printf(msg, "L:");
1026
1027 if (mgcp_msg->ptime)
1028 rc += msgb_printf(msg, " p:%u,", mgcp_msg->ptime);
1029
1030 if (mgcp_msg->codecs_len) {
1031 rc += msgb_printf(msg, " a:");
1032 for (i = 0; i < mgcp_msg->codecs_len; i++) {
1033 pt = mgcp_msg->codecs[i];
Neels Hofmeyr47642f22019-02-27 05:56:53 +01001034 codec = get_value_string_or_null(osmo_mgcpc_codec_names, pt);
Pau Espin Pedrolc12bfb72019-04-16 17:23:09 +02001035
Philipp Maier704c4f02018-06-07 18:51:31 +02001036 /* Note: Use codec descriptors from enum mgcp_codecs
1037 * in mgcp_client only! */
1038 OSMO_ASSERT(codec);
1039 rc += msgb_printf(msg, "%s", extract_codec_name(codec));
1040 if (i < mgcp_msg->codecs_len - 1)
1041 rc += msgb_printf(msg, ";");
1042 }
1043 rc += msgb_printf(msg, ",");
1044 }
1045
1046 rc += msgb_printf(msg, " nt:IN\r\n");
1047
1048 return rc;
1049}
1050
1051/* Helper function for mgcp_msg_gen(): Add SDP information to MGCP message */
1052static int add_sdp(struct msgb *msg, struct mgcp_msg *mgcp_msg, struct mgcp_client *mgcp)
1053{
1054 unsigned int i;
1055 int rc = 0;
1056 char local_ip[INET_ADDRSTRLEN];
1057 const char *codec;
1058 unsigned int pt;
1059
1060 /* Add separator to mark the beginning of the SDP block */
1061 rc += msgb_printf(msg, "\r\n");
1062
1063 /* Add SDP protocol version */
1064 rc += msgb_printf(msg, "v=0\r\n");
1065
1066 /* Determine local IP-Address */
1067 if (osmo_sock_local_ip(local_ip, mgcp->actual.remote_addr) < 0) {
1068 LOGP(DLMGCP, LOGL_ERROR,
1069 "Could not determine local IP-Address!\n");
1070 msgb_free(msg);
1071 return -2;
1072 }
1073
1074 /* Add owner/creator (SDP) */
1075 rc += msgb_printf(msg, "o=- %x 23 IN IP4 %s\r\n",
1076 mgcp_msg->call_id, local_ip);
1077
1078 /* Add session name (none) */
1079 rc += msgb_printf(msg, "s=-\r\n");
1080
1081 /* Add RTP address and port */
1082 if (mgcp_msg->audio_port == 0) {
1083 LOGP(DLMGCP, LOGL_ERROR,
1084 "Invalid port number, can not generate MGCP message\n");
1085 msgb_free(msg);
1086 return -2;
1087 }
1088 if (strlen(mgcp_msg->audio_ip) <= 0) {
1089 LOGP(DLMGCP, LOGL_ERROR,
1090 "Empty ip address, can not generate MGCP message\n");
1091 msgb_free(msg);
1092 return -2;
1093 }
1094 rc += msgb_printf(msg, "c=IN IP4 %s\r\n", mgcp_msg->audio_ip);
1095
1096 /* Add time description, active time (SDP) */
1097 rc += msgb_printf(msg, "t=0 0\r\n");
1098
1099 rc += msgb_printf(msg, "m=audio %u RTP/AVP", mgcp_msg->audio_port);
1100 for (i = 0; i < mgcp_msg->codecs_len; i++) {
1101 pt = map_codec_to_pt(mgcp_msg->ptmap, mgcp_msg->ptmap_len, mgcp_msg->codecs[i]);
1102 rc += msgb_printf(msg, " %u", pt);
1103
1104 }
1105 rc += msgb_printf(msg, "\r\n");
1106
Philipp Maier228e5912019-03-05 13:56:59 +01001107 /* Add optional codec parameters (fmtp) */
1108 if (mgcp_msg->param_present) {
1109 for (i = 0; i < mgcp_msg->codecs_len; i++) {
1110 /* The following is only applicable for AMR */
1111 if (mgcp_msg->codecs[i] != CODEC_AMR_8000_1 && mgcp_msg->codecs[i] != CODEC_AMRWB_16000_1)
1112 continue;
1113 pt = map_codec_to_pt(mgcp_msg->ptmap, mgcp_msg->ptmap_len, mgcp_msg->codecs[i]);
1114 if (mgcp_msg->param.amr_octet_aligned_present && mgcp_msg->param.amr_octet_aligned)
1115 rc += msgb_printf(msg, "a=fmtp:%u octet-align=1\r\n", pt);
1116 else if (mgcp_msg->param.amr_octet_aligned_present && !mgcp_msg->param.amr_octet_aligned)
1117 rc += msgb_printf(msg, "a=fmtp:%u octet-align=0\r\n", pt);
1118 }
1119 }
1120
Philipp Maier704c4f02018-06-07 18:51:31 +02001121 for (i = 0; i < mgcp_msg->codecs_len; i++) {
1122 pt = map_codec_to_pt(mgcp_msg->ptmap, mgcp_msg->ptmap_len, mgcp_msg->codecs[i]);
Pau Espin Pedrolc12bfb72019-04-16 17:23:09 +02001123
Philipp Maier704c4f02018-06-07 18:51:31 +02001124 /* Note: Only dynamic payload type from the range 96-127
1125 * require to be explained further via rtpmap. All others
1126 * are implcitly definedby the number in m=audio */
1127 if (pt >= 96 && pt <= 127) {
Neels Hofmeyr47642f22019-02-27 05:56:53 +01001128 codec = get_value_string_or_null(osmo_mgcpc_codec_names, mgcp_msg->codecs[i]);
Philipp Maier704c4f02018-06-07 18:51:31 +02001129
1130 /* Note: Use codec descriptors from enum mgcp_codecs
1131 * in mgcp_client only! */
1132 OSMO_ASSERT(codec);
Pau Espin Pedrolc12bfb72019-04-16 17:23:09 +02001133
Philipp Maier704c4f02018-06-07 18:51:31 +02001134 rc += msgb_printf(msg, "a=rtpmap:%u %s\r\n", pt, codec);
1135 }
1136 }
Pau Espin Pedrolc12bfb72019-04-16 17:23:09 +02001137
Philipp Maier704c4f02018-06-07 18:51:31 +02001138 if (mgcp_msg->ptime)
1139 rc += msgb_printf(msg, "a=ptime:%u\r\n", mgcp_msg->ptime);
1140
1141 return rc;
1142}
1143
Philipp Maier275ac972018-01-20 00:58:16 +01001144/*! Generate an MGCP message
1145 * \param[in] mgcp MGCP client descriptor.
1146 * \param[in] mgcp_msg Message description
1147 * \returns message buffer on success, NULL on error. */
Philipp Maier1dc6be62017-10-05 18:25:37 +02001148struct msgb *mgcp_msg_gen(struct mgcp_client *mgcp, struct mgcp_msg *mgcp_msg)
1149{
1150 mgcp_trans_id_t trans_id = mgcp_client_next_trans_id(mgcp);
1151 uint32_t mandatory_mask;
1152 struct msgb *msg = msgb_alloc_headroom(4096, 128, "MGCP tx");
1153 int rc = 0;
Philipp Maier704c4f02018-06-07 18:51:31 +02001154 int rc_sdp;
1155 bool use_sdp = false;
Pau Espin Pedrol900cd652019-04-24 22:06:22 +02001156 char buf[32];
Philipp Maier1dc6be62017-10-05 18:25:37 +02001157
1158 msg->l2h = msg->data;
1159 msg->cb[MSGB_CB_MGCP_TRANS_ID] = trans_id;
1160
1161 /* Add command verb */
1162 switch (mgcp_msg->verb) {
1163 case MGCP_VERB_CRCX:
1164 mandatory_mask = MGCP_CRCX_MANDATORY;
1165 rc += msgb_printf(msg, "CRCX %u", trans_id);
1166 break;
1167 case MGCP_VERB_MDCX:
1168 mandatory_mask = MGCP_MDCX_MANDATORY;
1169 rc += msgb_printf(msg, "MDCX %u", trans_id);
1170 break;
1171 case MGCP_VERB_DLCX:
1172 mandatory_mask = MGCP_DLCX_MANDATORY;
1173 rc += msgb_printf(msg, "DLCX %u", trans_id);
1174 break;
1175 case MGCP_VERB_AUEP:
1176 mandatory_mask = MGCP_AUEP_MANDATORY;
1177 rc += msgb_printf(msg, "AUEP %u", trans_id);
1178 break;
1179 case MGCP_VERB_RSIP:
1180 mandatory_mask = MGCP_RSIP_MANDATORY;
1181 rc += msgb_printf(msg, "RSIP %u", trans_id);
1182 break;
1183 default:
1184 LOGP(DLMGCP, LOGL_ERROR,
1185 "Invalid command verb, can not generate MGCP message\n");
1186 msgb_free(msg);
1187 return NULL;
1188 }
1189
1190 /* Check if mandatory fields are missing */
1191 if (!((mgcp_msg->presence & mandatory_mask) == mandatory_mask)) {
1192 LOGP(DLMGCP, LOGL_ERROR,
1193 "One or more missing mandatory fields, can not generate MGCP message\n");
1194 msgb_free(msg);
1195 return NULL;
1196 }
1197
1198 /* Add endpoint name */
Philipp Maier7bc55522017-12-10 22:52:22 +01001199 if (mgcp_msg->presence & MGCP_MSG_PRESENCE_ENDPOINT) {
1200 if (strlen(mgcp_msg->endpoint) <= 0) {
1201 LOGP(DLMGCP, LOGL_ERROR,
1202 "Empty endpoint name, can not generate MGCP message\n");
1203 msgb_free(msg);
1204 return NULL;
1205 }
Philipp Maier3aa81572018-01-31 14:13:45 +01001206
1207 if (strstr(mgcp_msg->endpoint, "@") == NULL) {
1208 LOGP(DLMGCP, LOGL_ERROR,
1209 "Endpoint name (%s) lacks separator (@), can not generate MGCP message\n",
1210 mgcp_msg->endpoint);
1211 msgb_free(msg);
1212 }
1213
Philipp Maier1dc6be62017-10-05 18:25:37 +02001214 rc += msgb_printf(msg, " %s", mgcp_msg->endpoint);
Philipp Maier7bc55522017-12-10 22:52:22 +01001215 }
Philipp Maier1dc6be62017-10-05 18:25:37 +02001216
1217 /* Add protocol version */
1218 rc += msgb_printf(msg, " MGCP 1.0\r\n");
1219
1220 /* Add call id */
1221 if (mgcp_msg->presence & MGCP_MSG_PRESENCE_CALL_ID)
1222 rc += msgb_printf(msg, "C: %x\r\n", mgcp_msg->call_id);
1223
1224 /* Add connection id */
Philipp Maier7bc55522017-12-10 22:52:22 +01001225 if (mgcp_msg->presence & MGCP_MSG_PRESENCE_CONN_ID) {
1226 if (strlen(mgcp_msg->conn_id) <= 0) {
1227 LOGP(DLMGCP, LOGL_ERROR,
1228 "Empty connection id, can not generate MGCP message\n");
1229 msgb_free(msg);
1230 return NULL;
1231 }
Philipp Maier01d24a32017-11-21 17:26:09 +01001232 rc += msgb_printf(msg, "I: %s\r\n", mgcp_msg->conn_id);
Philipp Maier7bc55522017-12-10 22:52:22 +01001233 }
Philipp Maier1dc6be62017-10-05 18:25:37 +02001234
Philipp Maier704c4f02018-06-07 18:51:31 +02001235 /* Using SDP makes sense when a valid IP/Port combination is specifiec,
1236 * if we do not know this information yet, we fall back to LCO */
1237 if (mgcp_msg->presence & MGCP_MSG_PRESENCE_AUDIO_IP
1238 && mgcp_msg->presence & MGCP_MSG_PRESENCE_AUDIO_PORT)
1239 use_sdp = true;
1240
1241 /* Add local connection options (LCO) */
1242 if (!use_sdp
1243 && (mgcp_msg->verb == MGCP_VERB_CRCX
1244 || mgcp_msg->verb == MGCP_VERB_MDCX))
1245 rc += add_lco(msg, mgcp_msg);
Philipp Maier1dc6be62017-10-05 18:25:37 +02001246
1247 /* Add mode */
1248 if (mgcp_msg->presence & MGCP_MSG_PRESENCE_CONN_MODE)
1249 rc +=
1250 msgb_printf(msg, "M: %s\r\n",
1251 mgcp_client_cmode_name(mgcp_msg->conn_mode));
1252
Neels Hofmeyre6d8e912018-08-23 16:36:48 +02001253 /* Add X-Osmo-IGN */
1254 if ((mgcp_msg->presence & MGCP_MSG_PRESENCE_X_OSMO_IGN)
1255 && (mgcp_msg->x_osmo_ign != 0))
1256 rc +=
1257 msgb_printf(msg, MGCP_X_OSMO_IGN_HEADER "%s\r\n",
1258 mgcp_msg->x_osmo_ign & MGCP_X_OSMO_IGN_CALLID ? " C": "");
1259
Pau Espin Pedrol900cd652019-04-24 22:06:22 +02001260 /* Add X-Osmo-Osmux */
1261 if ((mgcp_msg->presence & MGCP_MSG_PRESENCE_X_OSMO_OSMUX_CID)) {
1262 snprintf(buf, sizeof(buf), " %d", mgcp_msg->x_osmo_osmux_cid);
1263 rc +=
1264 msgb_printf(msg, MGCP_X_OSMO_OSMUX_HEADER "%s\r\n",
1265 mgcp_msg->x_osmo_osmux_cid == -1 ? " *": buf);
1266 }
1267
1268
Philipp Maier704c4f02018-06-07 18:51:31 +02001269 /* Add session description protocol (SDP) */
1270 if (use_sdp
1271 && (mgcp_msg->verb == MGCP_VERB_CRCX
1272 || mgcp_msg->verb == MGCP_VERB_MDCX)) {
1273 rc_sdp = add_sdp(msg, mgcp_msg, mgcp);
1274 if (rc_sdp == -2)
Philipp Maier9d25d7a2018-01-22 17:31:10 +01001275 return NULL;
Philipp Maier704c4f02018-06-07 18:51:31 +02001276 else
1277 rc += rc_sdp;
Philipp Maier1dc6be62017-10-05 18:25:37 +02001278 }
1279
1280 if (rc != 0) {
1281 LOGP(DLMGCP, LOGL_ERROR,
1282 "message buffer to small, can not generate MGCP message\n");
1283 msgb_free(msg);
1284 msg = NULL;
1285 }
1286
1287 return msg;
1288}
1289
Philipp Maier275ac972018-01-20 00:58:16 +01001290/*! Retrieve the MGCP transaction ID from a msgb generated by mgcp_msg_gen()
1291 * \param[in] msg message buffer
1292 * \returns Transaction id. */
Neels Hofmeyrc8f37cb2017-11-30 13:43:11 +01001293mgcp_trans_id_t mgcp_msg_trans_id(struct msgb *msg)
1294{
1295 return (mgcp_trans_id_t)msg->cb[MSGB_CB_MGCP_TRANS_ID];
1296}
1297
Philipp Maier275ac972018-01-20 00:58:16 +01001298/*! Get the configuration parameters a given MGCP client instance
1299 * \param[in] mgcp MGCP client descriptor.
1300 * \returns configuration */
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +02001301struct mgcp_client_conf *mgcp_client_conf_actual(struct mgcp_client *mgcp)
Neels Hofmeyre9920f22017-07-10 15:07:22 +02001302{
1303 return &mgcp->actual;
1304}
Neels Hofmeyrd95ab1e2017-09-22 00:52:54 +02001305
1306const struct value_string mgcp_client_connection_mode_strs[] = {
1307 { MGCP_CONN_NONE, "none" },
1308 { MGCP_CONN_RECV_SEND, "sendrecv" },
1309 { MGCP_CONN_SEND_ONLY, "sendonly" },
1310 { MGCP_CONN_RECV_ONLY, "recvonly" },
1311 { MGCP_CONN_LOOPBACK, "loopback" },
1312 { 0, NULL }
1313};