blob: 8fa82cd452b1f26410b53bc93f0a7e18a10048ad [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) */
40static const struct value_string codec_table[] = {
41 { 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
84 for (i = 0; i < ARRAY_SIZE(codec_table); i++) {
85 codec_name = extract_codec_name(codec_table[i].str);
86 if (!codec_name)
87 continue;
88 if (strcmp(codec_name, str_buf) == 0)
89 return codec_table[i].value;
90 }
91
92 return -1;
93}
94
95/* Check the ptmap for illegal mappings */
96static int check_ptmap(struct ptmap *ptmap)
97{
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 */
125unsigned int map_codec_to_pt(struct ptmap *ptmap, unsigned int ptmap_len,
126 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
208 LOGP(DLMGCP, LOGL_INFO, "MGCP response ignored (NULL cb)\n");
209 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;
326
327
328 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 }
356
357 return 0;
358
359response_parse_failure_ptime:
360 LOGP(DLMGCP, LOGL_ERROR,
361 "Failed to parse SDP parameter, invalid ptime (%s)\n", line);
362 return -EINVAL;
363response_parse_failure_rtpmap:
364 LOGP(DLMGCP, LOGL_ERROR,
365 "Failed to parse SDP parameter, invalid rtpmap (%s)\n", line);
366 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
Philipp Maier3b12e1b2018-01-18 15:16:13 +0100396/* A new section is marked by a double line break, check a few more
397 * patterns as there may be variants */
398static char *mgcp_find_section_end(char *string)
399{
400 char *rc;
401
402 rc = strstr(string, "\n\n");
403 if (rc)
404 return rc;
405
406 rc = strstr(string, "\n\r\n\r");
407 if (rc)
408 return rc;
409
410 rc = strstr(string, "\r\n\r\n");
411 if (rc)
412 return rc;
413
414 return NULL;
415}
416
Philipp Maier275ac972018-01-20 00:58:16 +0100417/*! Parse body (SDP) parameters of the MGCP response
418 * \param[in,out] r Response data
419 * \returns 0 on success, -EINVAL on error. */
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200420int mgcp_response_parse_params(struct mgcp_response *r)
421{
422 char *line;
423 int rc;
Neels Hofmeyr0793d2f2018-02-21 14:55:34 +0100424 char *data;
Philipp Maiere9d645b2018-01-19 23:54:08 +0100425 char *data_ptr;
Philipp Maier704c4f02018-06-07 18:51:31 +0200426 int i;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200427
Philipp Maiere9d645b2018-01-19 23:54:08 +0100428 /* Since this functions performs a destructive parsing, we create a
429 * local copy of the body data */
Neels Hofmeyr0793d2f2018-02-21 14:55:34 +0100430 OSMO_ASSERT(r->body);
431 data = talloc_strdup(r, r->body);
Philipp Maiere9d645b2018-01-19 23:54:08 +0100432 OSMO_ASSERT(data);
Philipp Maier55295f72018-01-15 14:00:28 +0100433
Philipp Maiere9d645b2018-01-19 23:54:08 +0100434 /* Find beginning of the parameter (SDP) section */
435 data_ptr = mgcp_find_section_end(data);
Neels Hofmeyr10835332018-02-21 14:55:34 +0100436 if (!data_ptr) {
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200437 LOGP(DLMGCP, LOGL_ERROR,
Neels Hofmeyr0793d2f2018-02-21 14:55:34 +0100438 "MGCP response: cannot find start of SDP parameters\n");
Philipp Maiere9d645b2018-01-19 23:54:08 +0100439 rc = -EINVAL;
440 goto exit;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200441 }
442
Neels Hofmeyr0793d2f2018-02-21 14:55:34 +0100443 /* data_ptr now points to the beginning of the section-end-marker; for_each_non_empty_line()
444 * skips any \r and \n characters for free, so we don't need to skip the marker. */
445
Philipp Maiere9d645b2018-01-19 23:54:08 +0100446 for_each_non_empty_line(line, data_ptr) {
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200447 if (!mgcp_line_is_valid(line))
448 return -EINVAL;
449
450 switch (line[0]) {
Philipp Maier704c4f02018-06-07 18:51:31 +0200451 case 'a':
452 rc = mgcp_parse_audio_ptime_rtpmap(r, line);
453 if (rc)
454 goto exit;
455 break;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200456 case 'm':
Philipp Maier704c4f02018-06-07 18:51:31 +0200457 rc = mgcp_parse_audio_port_pt(r, line);
Philipp Maier06da85e2017-10-05 18:49:24 +0200458 if (rc)
Philipp Maiere9d645b2018-01-19 23:54:08 +0100459 goto exit;
Philipp Maier06da85e2017-10-05 18:49:24 +0200460 break;
461 case 'c':
462 rc = mgcp_parse_audio_ip(r, line);
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200463 if (rc)
Philipp Maiere9d645b2018-01-19 23:54:08 +0100464 goto exit;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200465 break;
466 default:
467 /* skip unhandled parameters */
468 break;
469 }
470 }
Philipp Maiere9d645b2018-01-19 23:54:08 +0100471
Philipp Maier704c4f02018-06-07 18:51:31 +0200472 /* See also note in mgcp_parse_audio_port_pt() */
473 for (i = 0; i < r->codecs_len; i++)
474 r->codecs[i] = map_pt_to_codec(r->ptmap, r->ptmap_len, r->codecs[i]);
475
Philipp Maiere9d645b2018-01-19 23:54:08 +0100476 rc = 0;
477exit:
478 talloc_free(data);
479 return rc;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200480}
481
Philipp Maier55295f72018-01-15 14:00:28 +0100482/* Parse a line like "X: something" */
483static int mgcp_parse_head_param(char *result, unsigned int result_len,
484 char label, const char *line)
Philipp Maierffd75e42017-11-22 11:44:50 +0100485{
Philipp Maier55295f72018-01-15 14:00:28 +0100486 char label_string[4];
Neels Hofmeyr23e7bf12018-09-03 21:26:22 +0200487 size_t rc;
Philipp Maier55295f72018-01-15 14:00:28 +0100488
489 /* Detect empty parameters */
Philipp Maierffd75e42017-11-22 11:44:50 +0100490 if (strlen(line) < 4)
491 goto response_parse_failure;
492
Philipp Maier55295f72018-01-15 14:00:28 +0100493 /* Check if the label matches */
494 snprintf(label_string, sizeof(label_string), "%c: ", label);
495 if (memcmp(label_string, line, 3) != 0)
Philipp Maierffd75e42017-11-22 11:44:50 +0100496 goto response_parse_failure;
497
Philipp Maier55295f72018-01-15 14:00:28 +0100498 /* Copy payload part of the string to destinations (the label string
499 * is always 3 chars long) */
Neels Hofmeyr23e7bf12018-09-03 21:26:22 +0200500 rc = osmo_strlcpy(result, line + 3, result_len);
501 if (rc >= result_len) {
502 LOGP(DLMGCP, LOGL_ERROR,
503 "Failed to parse MGCP response (parameter label: %c):"
504 " the received conn ID is too long: %zu, maximum is %u characters\n",
505 label, rc, result_len - 1);
506 return -ENOSPC;
507 }
Philipp Maierffd75e42017-11-22 11:44:50 +0100508 return 0;
509
510response_parse_failure:
511 LOGP(DLMGCP, LOGL_ERROR,
Philipp Maier55295f72018-01-15 14:00:28 +0100512 "Failed to parse MGCP response (parameter label: %c)\n", label);
Philipp Maierffd75e42017-11-22 11:44:50 +0100513 return -EINVAL;
514}
515
516/* Parse MGCP parameters of the response */
517static int parse_head_params(struct mgcp_response *r)
518{
519 char *line;
520 int rc = 0;
521 OSMO_ASSERT(r->body);
Philipp Maier55295f72018-01-15 14:00:28 +0100522 char *data;
523 char *data_ptr;
524 char *data_end;
Philipp Maierffd75e42017-11-22 11:44:50 +0100525
Philipp Maier55295f72018-01-15 14:00:28 +0100526 /* Since this functions performs a destructive parsing, we create a
527 * local copy of the body data */
Philipp Maier1fc69992018-01-31 15:32:55 +0100528 data = talloc_zero_size(r, strlen(r->body)+1);
Philipp Maier55295f72018-01-15 14:00:28 +0100529 OSMO_ASSERT(data);
530 data_ptr = data;
531 osmo_strlcpy(data, r->body, strlen(r->body));
532
533 /* If there is an SDP body attached, prevent for_each_non_empty_line()
534 * into running in there, we are not yet interested in the parameters
535 * stored there. */
536 data_end = mgcp_find_section_end(data);
Philipp Maierffd75e42017-11-22 11:44:50 +0100537 if (data_end)
538 *data_end = '\0';
539
Philipp Maier55295f72018-01-15 14:00:28 +0100540 for_each_non_empty_line(line, data_ptr) {
Philipp Maierffd75e42017-11-22 11:44:50 +0100541 switch (line[0]) {
Philipp Maier55295f72018-01-15 14:00:28 +0100542 case 'Z':
543 rc = mgcp_parse_head_param(r->head.endpoint,
544 sizeof(r->head.endpoint),
545 'Z', line);
546 if (rc)
547 goto exit;
Philipp Maier771b26a2018-01-31 13:53:11 +0100548
549 /* A specific endpoint identifier returned by the MGW
550 * must not contain any wildcard characters */
551 if (strstr(r->head.endpoint, "*") != NULL) {
552 rc = -EINVAL;
553 goto exit;
554 }
Philipp Maier3261dc72018-01-31 14:03:13 +0100555
556 /* A specific endpoint identifier returned by the MGW
557 * must contain an @ character */
558 if (strstr(r->head.endpoint, "@") == NULL) {
559 rc = -EINVAL;
560 goto exit;
561 }
Philipp Maier55295f72018-01-15 14:00:28 +0100562 break;
Philipp Maierffd75e42017-11-22 11:44:50 +0100563 case 'I':
Philipp Maier55295f72018-01-15 14:00:28 +0100564 rc = mgcp_parse_head_param(r->head.conn_id,
565 sizeof(r->head.conn_id),
566 'I', line);
Philipp Maierffd75e42017-11-22 11:44:50 +0100567 if (rc)
568 goto exit;
569 break;
570 default:
571 /* skip unhandled parameters */
572 break;
573 }
574 }
575exit:
Philipp Maier55295f72018-01-15 14:00:28 +0100576 talloc_free(data);
Philipp Maierffd75e42017-11-22 11:44:50 +0100577 return rc;
578}
579
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200580static struct mgcp_response_pending *mgcp_client_response_pending_get(
581 struct mgcp_client *mgcp,
Neels Hofmeyrc8f37cb2017-11-30 13:43:11 +0100582 mgcp_trans_id_t trans_id)
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200583{
584 struct mgcp_response_pending *pending;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200585 llist_for_each_entry(pending, &mgcp->responses_pending, entry) {
Neels Hofmeyrc8f37cb2017-11-30 13:43:11 +0100586 if (pending->trans_id == trans_id) {
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200587 llist_del(&pending->entry);
588 return pending;
589 }
590 }
591 return NULL;
592}
593
594/* Feed an MGCP message into the receive processing.
595 * Parse the head and call any callback registered for the transaction id found
596 * in the MGCP message. This is normally called directly from the internal
597 * mgcp_do_read that reads from the socket connected to the MGCP gateway. This
598 * function is published mainly to be able to feed data from the test suite.
599 */
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200600int mgcp_client_rx(struct mgcp_client *mgcp, struct msgb *msg)
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200601{
Philipp Maier1fc69992018-01-31 15:32:55 +0100602 struct mgcp_response *r;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200603 struct mgcp_response_pending *pending;
604 int rc;
605
Philipp Maier1fc69992018-01-31 15:32:55 +0100606 r = talloc_zero(mgcp, struct mgcp_response);
607 OSMO_ASSERT(r);
608
609 rc = mgcp_response_parse_head(r, msg);
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200610 if (rc) {
Philipp Maierffd75e42017-11-22 11:44:50 +0100611 LOGP(DLMGCP, LOGL_ERROR, "Cannot parse MGCP response (head)\n");
Philipp Maier1fc69992018-01-31 15:32:55 +0100612 rc = 1;
613 goto error;
Philipp Maierffd75e42017-11-22 11:44:50 +0100614 }
615
Philipp Maier1fc69992018-01-31 15:32:55 +0100616 rc = parse_head_params(r);
Philipp Maierffd75e42017-11-22 11:44:50 +0100617 if (rc) {
618 LOGP(DLMGCP, LOGL_ERROR, "Cannot parse MGCP response (head parameters)\n");
Philipp Maier1fc69992018-01-31 15:32:55 +0100619 rc = 1;
620 goto error;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200621 }
622
Philipp Maier1fc69992018-01-31 15:32:55 +0100623 pending = mgcp_client_response_pending_get(mgcp, r->head.trans_id);
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200624 if (!pending) {
625 LOGP(DLMGCP, LOGL_ERROR,
626 "Cannot find matching MGCP transaction for trans_id %d\n",
Philipp Maier1fc69992018-01-31 15:32:55 +0100627 r->head.trans_id);
628 rc = -ENOENT;
629 goto error;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200630 }
631
Philipp Maier1fc69992018-01-31 15:32:55 +0100632 mgcp_client_handle_response(mgcp, pending, r);
633 rc = 0;
634
635error:
636 talloc_free(r);
637 return rc;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200638}
639
640static int mgcp_do_read(struct osmo_fd *fd)
641{
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200642 struct mgcp_client *mgcp = fd->data;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200643 struct msgb *msg;
644 int ret;
645
646 msg = msgb_alloc_headroom(4096, 128, "mgcp_from_gw");
647 if (!msg) {
648 LOGP(DLMGCP, LOGL_ERROR, "Failed to allocate MGCP message.\n");
649 return -1;
650 }
651
652 ret = read(fd->fd, msg->data, 4096 - 128);
653 if (ret <= 0) {
Neels Hofmeyr0a403792018-12-12 03:10:18 +0100654 LOGP(DLMGCP, LOGL_ERROR, "Failed to read: %s: %d='%s'\n", osmo_sock_get_name2(fd->fd),
655 errno, strerror(errno));
656
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200657 msgb_free(msg);
658 return -1;
659 } else if (ret > 4096 - 128) {
Neels Hofmeyr0a403792018-12-12 03:10:18 +0100660 LOGP(DLMGCP, LOGL_ERROR, "Too much data: %s: %d\n", osmo_sock_get_name2(fd->fd), ret);
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200661 msgb_free(msg);
662 return -1;
Harald Welte9bf7c532017-11-17 14:14:31 +0100663 }
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200664
665 msg->l2h = msgb_put(msg, ret);
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200666 ret = mgcp_client_rx(mgcp, msg);
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200667 talloc_free(msg);
668 return ret;
669}
670
671static int mgcp_do_write(struct osmo_fd *fd, struct msgb *msg)
672{
673 int ret;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200674
Neels Hofmeyr0a403792018-12-12 03:10:18 +0100675 LOGP(DLMGCP, LOGL_DEBUG, "Tx MGCP: %s: len=%u '%s'...\n",
676 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 +0200677
678 ret = write(fd->fd, msg->data, msg->len);
679 if (ret != msg->len)
Neels Hofmeyr0a403792018-12-12 03:10:18 +0100680 LOGP(DLMGCP, LOGL_ERROR, "Failed to Tx MGCP: %s: %d='%s'; msg: len=%u '%s'...\n",
681 osmo_sock_get_name2(fd->fd), errno, strerror(errno),
Neels Hofmeyr32d15cc2018-12-12 03:05:33 +0100682 msg->len, osmo_escape_str((const char*)msg->data, OSMO_MIN(42, msg->len)));
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200683 return ret;
684}
685
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200686struct mgcp_client *mgcp_client_init(void *ctx,
687 struct mgcp_client_conf *conf)
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200688{
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200689 struct mgcp_client *mgcp;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200690
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200691 mgcp = talloc_zero(ctx, struct mgcp_client);
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200692
693 INIT_LLIST_HEAD(&mgcp->responses_pending);
694 INIT_LLIST_HEAD(&mgcp->inuse_endpoints);
695
696 mgcp->next_trans_id = 1;
697
698 mgcp->actual.local_addr = conf->local_addr ? conf->local_addr :
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200699 MGCP_CLIENT_LOCAL_ADDR_DEFAULT;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200700 mgcp->actual.local_port = conf->local_port >= 0 ? (uint16_t)conf->local_port :
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200701 MGCP_CLIENT_LOCAL_PORT_DEFAULT;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200702
703 mgcp->actual.remote_addr = conf->remote_addr ? conf->remote_addr :
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200704 MGCP_CLIENT_REMOTE_ADDR_DEFAULT;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200705 mgcp->actual.remote_port = conf->remote_port >= 0 ? (uint16_t)conf->remote_port :
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200706 MGCP_CLIENT_REMOTE_PORT_DEFAULT;
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200707
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200708 return mgcp;
709}
710
Philipp Maier6a26c162018-08-01 16:37:06 +0200711static int init_socket(struct mgcp_client *mgcp)
712{
713 int rc;
714 struct osmo_wqueue *wq;
715 int i;
716
717 wq = &mgcp->wq;
718
719 for (i = 0; i < 100; i++) {
720
721 /* Initalize socket with the currently configured port
722 * number */
723 rc = osmo_sock_init2_ofd(&wq->bfd, AF_INET, SOCK_DGRAM, IPPROTO_UDP, mgcp->actual.local_addr,
724 mgcp->actual.local_port, mgcp->actual.remote_addr, mgcp->actual.remote_port,
725 OSMO_SOCK_F_BIND | OSMO_SOCK_F_CONNECT);
726 if (rc > 0)
727 return rc;
728
729 /* If there is a different port than the default port
730 * configured then we assume that the user has choosen
731 * that port conciously and we will not try to resolve
732 * this by silently choosing a different port. */
Philipp Maier9a7ccc32018-08-09 11:41:19 +0200733 if (mgcp->actual.local_port != MGCP_CLIENT_LOCAL_PORT_DEFAULT && i == 0)
Philipp Maier6a26c162018-08-01 16:37:06 +0200734 return -EINVAL;
735
736 /* Choose a new port number to try next */
737 LOGP(DLMGCP, LOGL_NOTICE,
Neels Hofmeyr0a403792018-12-12 03:10:18 +0100738 "MGCPGW failed to bind to %s:%u, retrying with port %u\n",
739 mgcp->actual.local_addr, mgcp->actual.local_port, mgcp->actual.local_port + 1);
Philipp Maier6a26c162018-08-01 16:37:06 +0200740 mgcp->actual.local_port++;
741 }
742
Neels Hofmeyr0a403792018-12-12 03:10:18 +0100743 LOGP(DLMGCP, LOGL_FATAL, "MGCPGW failed to find a port to bind on %i times.\n", i);
Philipp Maier6a26c162018-08-01 16:37:06 +0200744 return -EINVAL;
745}
746
Philipp Maier275ac972018-01-20 00:58:16 +0100747/*! Initalize client connection (opens socket only, no request is sent yet)
748 * \param[in,out] mgcp MGCP client descriptor.
749 * \returns 0 on success, -EINVAL on error. */
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200750int mgcp_client_connect(struct mgcp_client *mgcp)
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200751{
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200752 struct sockaddr_in addr;
753 struct osmo_wqueue *wq;
754 int rc;
755
756 if (!mgcp) {
757 LOGP(DLMGCP, LOGL_FATAL, "MGCPGW client not initialized properly\n");
758 return -EINVAL;
759 }
760
761 wq = &mgcp->wq;
762
Philipp Maier6a26c162018-08-01 16:37:06 +0200763 rc = init_socket(mgcp);
Harald Welte8890dfa2017-11-17 15:09:30 +0100764 if (rc < 0) {
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200765 LOGP(DLMGCP, LOGL_FATAL,
Harald Welte8890dfa2017-11-17 15:09:30 +0100766 "Failed to initialize socket %s:%u -> %s:%u for MGCP GW: %s\n",
767 mgcp->actual.local_addr, mgcp->actual.local_port,
768 mgcp->actual.remote_addr, mgcp->actual.remote_port, strerror(errno));
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200769 goto error_close_fd;
770 }
771
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200772 inet_aton(mgcp->actual.remote_addr, &addr.sin_addr);
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200773 mgcp->remote_addr = htonl(addr.sin_addr.s_addr);
774
775 osmo_wqueue_init(wq, 10);
776 wq->bfd.when = BSC_FD_READ;
777 wq->bfd.data = mgcp;
778 wq->read_cb = mgcp_do_read;
779 wq->write_cb = mgcp_do_write;
780
Neels Hofmeyr0a403792018-12-12 03:10:18 +0100781 LOGP(DLMGCP, LOGL_INFO, "MGCP GW connection: %s\n", osmo_sock_get_name2(wq->bfd.fd));
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200782
783 return 0;
784error_close_fd:
785 close(wq->bfd.fd);
786 wq->bfd.fd = -1;
787 return rc;
788}
789
Philipp Maier275ac972018-01-20 00:58:16 +0100790/*! Get the IP-Aaddress of the associated MGW as string.
791 * \param[in] mgcp MGCP client descriptor.
792 * \returns a pointer to the address string. */
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200793const char *mgcp_client_remote_addr_str(struct mgcp_client *mgcp)
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200794{
795 return mgcp->actual.remote_addr;
796}
797
Philipp Maier275ac972018-01-20 00:58:16 +0100798/*! Get the IP-Port of the associated MGW.
799 * \param[in] mgcp MGCP client descriptor.
800 * \returns port number. */
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200801uint16_t mgcp_client_remote_port(struct mgcp_client *mgcp)
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200802{
803 return mgcp->actual.remote_port;
804}
805
Philipp Maier275ac972018-01-20 00:58:16 +0100806/*! Get the IP-Aaddress of the associated MGW as its numeric representation.
807 * \param[in] mgcp MGCP client descriptor.
808 * \returns IP-Address as 32 bit integer (network byte order) */
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200809uint32_t mgcp_client_remote_addr_n(struct mgcp_client *mgcp)
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200810{
811 return mgcp->remote_addr;
812}
813
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200814struct mgcp_response_pending * mgcp_client_pending_add(
815 struct mgcp_client *mgcp,
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200816 mgcp_trans_id_t trans_id,
817 mgcp_response_cb_t response_cb,
818 void *priv)
819{
820 struct mgcp_response_pending *pending;
821
822 pending = talloc_zero(mgcp, struct mgcp_response_pending);
823 pending->trans_id = trans_id;
824 pending->response_cb = response_cb;
825 pending->priv = priv;
826 llist_add_tail(&pending->entry, &mgcp->responses_pending);
827
828 return pending;
829}
830
831/* Send the MGCP message in msg to the MGCP GW and handle a response with
832 * response_cb. NOTE: the response_cb still needs to call
833 * mgcp_response_parse_params(response) to get the parsed parameters -- to
834 * potentially save some CPU cycles, only the head line has been parsed when
Neels Hofmeyrc8f37cb2017-11-30 13:43:11 +0100835 * the response_cb is invoked.
836 * Before the priv pointer becomes invalid, e.g. due to transaction timeout,
837 * mgcp_client_cancel() needs to be called for this transaction.
838 */
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200839int mgcp_client_tx(struct mgcp_client *mgcp, struct msgb *msg,
840 mgcp_response_cb_t response_cb, void *priv)
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200841{
842 struct mgcp_response_pending *pending;
843 mgcp_trans_id_t trans_id;
844 int rc;
845
846 trans_id = msg->cb[MSGB_CB_MGCP_TRANS_ID];
847 if (!trans_id) {
848 LOGP(DLMGCP, LOGL_ERROR,
849 "Unset transaction id in mgcp send request\n");
850 talloc_free(msg);
851 return -EINVAL;
852 }
853
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200854 pending = mgcp_client_pending_add(mgcp, trans_id, response_cb, priv);
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200855
856 if (msgb_l2len(msg) > 4096) {
857 LOGP(DLMGCP, LOGL_ERROR,
858 "Cannot send, MGCP message too large: %u\n",
859 msgb_l2len(msg));
860 msgb_free(msg);
861 rc = -EINVAL;
862 goto mgcp_tx_error;
863 }
864
865 rc = osmo_wqueue_enqueue(&mgcp->wq, msg);
866 if (rc) {
867 LOGP(DLMGCP, LOGL_FATAL, "Could not queue message to MGCP GW\n");
868 msgb_free(msg);
869 goto mgcp_tx_error;
870 } else
871 LOGP(DLMGCP, LOGL_INFO, "Queued %u bytes for MGCP GW\n",
872 msgb_l2len(msg));
873 return 0;
874
875mgcp_tx_error:
876 /* Pass NULL to response cb to indicate an error */
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200877 mgcp_client_handle_response(mgcp, pending, NULL);
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200878 return -1;
879}
880
Philipp Maier275ac972018-01-20 00:58:16 +0100881/*! Cancel a pending transaction.
882 * \param[in] mgcp MGCP client descriptor.
883 * \param[in,out] trans_id Transaction id.
884 * \returns 0 on success, -ENOENT on error.
885 *
Neels Hofmeyrc8f37cb2017-11-30 13:43:11 +0100886 * Should a priv pointer passed to mgcp_client_tx() become invalid, this function must be called. In
887 * practical terms, if the caller of mgcp_client_tx() wishes to tear down a transaction without having
888 * received a response this function must be called. The trans_id can be obtained by calling
Philipp Maier275ac972018-01-20 00:58:16 +0100889 * mgcp_msg_trans_id() on the msgb produced by mgcp_msg_gen(). */
Neels Hofmeyrc8f37cb2017-11-30 13:43:11 +0100890int mgcp_client_cancel(struct mgcp_client *mgcp, mgcp_trans_id_t trans_id)
891{
892 struct mgcp_response_pending *pending = mgcp_client_response_pending_get(mgcp, trans_id);
893 if (!pending) {
Philipp Maier275ac972018-01-20 00:58:16 +0100894 /*! Note: it is not harmful to cancel a transaction twice. */
Neels Hofmeyrc8f37cb2017-11-30 13:43:11 +0100895 LOGP(DLMGCP, LOGL_INFO, "Cannot cancel, no such transaction: %u\n", trans_id);
896 return -ENOENT;
897 }
898 LOGP(DLMGCP, LOGL_INFO, "Canceled transaction %u\n", trans_id);
899 talloc_free(pending);
900 return 0;
Philipp Maier275ac972018-01-20 00:58:16 +0100901 /*! We don't really need to clean up the wqueue: In all sane cases, the msgb has already been sent
902 * out and is no longer in the wqueue. If it still is in the wqueue, then sending MGCP messages
903 * per se is broken and the program should notice so by a full wqueue. Even if this was called
904 * before we had a chance to send out the message and it is still going to be sent, we will just
905 * ignore the reply to it later. Removing a msgb from the wqueue here would just introduce more
906 * bug surface in terms of failing to update wqueue API's counters or some such.
Neels Hofmeyrc8f37cb2017-11-30 13:43:11 +0100907 */
908}
909
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +0200910static mgcp_trans_id_t mgcp_client_next_trans_id(struct mgcp_client *mgcp)
Neels Hofmeyre9920f22017-07-10 15:07:22 +0200911{
912 /* avoid zero trans_id to distinguish from unset trans_id */
913 if (!mgcp->next_trans_id)
914 mgcp->next_trans_id ++;
915 return mgcp->next_trans_id ++;
916}
917
Philipp Maier1dc6be62017-10-05 18:25:37 +0200918#define MGCP_CRCX_MANDATORY (MGCP_MSG_PRESENCE_ENDPOINT | \
919 MGCP_MSG_PRESENCE_CALL_ID | \
Philipp Maier1dc6be62017-10-05 18:25:37 +0200920 MGCP_MSG_PRESENCE_CONN_MODE)
921#define MGCP_MDCX_MANDATORY (MGCP_MSG_PRESENCE_ENDPOINT | \
Philipp Maier490cbaa2018-01-22 17:32:38 +0100922 MGCP_MSG_PRESENCE_CALL_ID | \
Philipp Maier1dc6be62017-10-05 18:25:37 +0200923 MGCP_MSG_PRESENCE_CONN_ID)
924#define MGCP_DLCX_MANDATORY (MGCP_MSG_PRESENCE_ENDPOINT)
925#define MGCP_AUEP_MANDATORY (MGCP_MSG_PRESENCE_ENDPOINT)
926#define MGCP_RSIP_MANDATORY 0 /* none */
927
Philipp Maier704c4f02018-06-07 18:51:31 +0200928/* Helper function for mgcp_msg_gen(): Add LCO information to MGCP message */
929static int add_lco(struct msgb *msg, struct mgcp_msg *mgcp_msg)
930{
931 unsigned int i;
932 int rc = 0;
933 const char *codec;
934 unsigned int pt;
935
936 rc += msgb_printf(msg, "L:");
937
938 if (mgcp_msg->ptime)
939 rc += msgb_printf(msg, " p:%u,", mgcp_msg->ptime);
940
941 if (mgcp_msg->codecs_len) {
942 rc += msgb_printf(msg, " a:");
943 for (i = 0; i < mgcp_msg->codecs_len; i++) {
944 pt = mgcp_msg->codecs[i];
945 codec = get_value_string_or_null(codec_table, pt);
946
947 /* Note: Use codec descriptors from enum mgcp_codecs
948 * in mgcp_client only! */
949 OSMO_ASSERT(codec);
950 rc += msgb_printf(msg, "%s", extract_codec_name(codec));
951 if (i < mgcp_msg->codecs_len - 1)
952 rc += msgb_printf(msg, ";");
953 }
954 rc += msgb_printf(msg, ",");
955 }
956
957 rc += msgb_printf(msg, " nt:IN\r\n");
958
959 return rc;
960}
961
962/* Helper function for mgcp_msg_gen(): Add SDP information to MGCP message */
963static int add_sdp(struct msgb *msg, struct mgcp_msg *mgcp_msg, struct mgcp_client *mgcp)
964{
965 unsigned int i;
966 int rc = 0;
967 char local_ip[INET_ADDRSTRLEN];
968 const char *codec;
969 unsigned int pt;
970
971 /* Add separator to mark the beginning of the SDP block */
972 rc += msgb_printf(msg, "\r\n");
973
974 /* Add SDP protocol version */
975 rc += msgb_printf(msg, "v=0\r\n");
976
977 /* Determine local IP-Address */
978 if (osmo_sock_local_ip(local_ip, mgcp->actual.remote_addr) < 0) {
979 LOGP(DLMGCP, LOGL_ERROR,
980 "Could not determine local IP-Address!\n");
981 msgb_free(msg);
982 return -2;
983 }
984
985 /* Add owner/creator (SDP) */
986 rc += msgb_printf(msg, "o=- %x 23 IN IP4 %s\r\n",
987 mgcp_msg->call_id, local_ip);
988
989 /* Add session name (none) */
990 rc += msgb_printf(msg, "s=-\r\n");
991
992 /* Add RTP address and port */
993 if (mgcp_msg->audio_port == 0) {
994 LOGP(DLMGCP, LOGL_ERROR,
995 "Invalid port number, can not generate MGCP message\n");
996 msgb_free(msg);
997 return -2;
998 }
999 if (strlen(mgcp_msg->audio_ip) <= 0) {
1000 LOGP(DLMGCP, LOGL_ERROR,
1001 "Empty ip address, can not generate MGCP message\n");
1002 msgb_free(msg);
1003 return -2;
1004 }
1005 rc += msgb_printf(msg, "c=IN IP4 %s\r\n", mgcp_msg->audio_ip);
1006
1007 /* Add time description, active time (SDP) */
1008 rc += msgb_printf(msg, "t=0 0\r\n");
1009
1010 rc += msgb_printf(msg, "m=audio %u RTP/AVP", mgcp_msg->audio_port);
1011 for (i = 0; i < mgcp_msg->codecs_len; i++) {
1012 pt = map_codec_to_pt(mgcp_msg->ptmap, mgcp_msg->ptmap_len, mgcp_msg->codecs[i]);
1013 rc += msgb_printf(msg, " %u", pt);
1014
1015 }
1016 rc += msgb_printf(msg, "\r\n");
1017
1018 for (i = 0; i < mgcp_msg->codecs_len; i++) {
1019 pt = map_codec_to_pt(mgcp_msg->ptmap, mgcp_msg->ptmap_len, mgcp_msg->codecs[i]);
1020
1021 /* Note: Only dynamic payload type from the range 96-127
1022 * require to be explained further via rtpmap. All others
1023 * are implcitly definedby the number in m=audio */
1024 if (pt >= 96 && pt <= 127) {
1025 codec = get_value_string_or_null(codec_table, mgcp_msg->codecs[i]);
1026
1027 /* Note: Use codec descriptors from enum mgcp_codecs
1028 * in mgcp_client only! */
1029 OSMO_ASSERT(codec);
1030
1031 rc += msgb_printf(msg, "a=rtpmap:%u %s\r\n", pt, codec);
1032 }
1033 }
1034
1035 if (mgcp_msg->ptime)
1036 rc += msgb_printf(msg, "a=ptime:%u\r\n", mgcp_msg->ptime);
1037
1038 return rc;
1039}
1040
Philipp Maier275ac972018-01-20 00:58:16 +01001041/*! Generate an MGCP message
1042 * \param[in] mgcp MGCP client descriptor.
1043 * \param[in] mgcp_msg Message description
1044 * \returns message buffer on success, NULL on error. */
Philipp Maier1dc6be62017-10-05 18:25:37 +02001045struct msgb *mgcp_msg_gen(struct mgcp_client *mgcp, struct mgcp_msg *mgcp_msg)
1046{
1047 mgcp_trans_id_t trans_id = mgcp_client_next_trans_id(mgcp);
1048 uint32_t mandatory_mask;
1049 struct msgb *msg = msgb_alloc_headroom(4096, 128, "MGCP tx");
1050 int rc = 0;
Philipp Maier704c4f02018-06-07 18:51:31 +02001051 int rc_sdp;
1052 bool use_sdp = false;
Philipp Maier1dc6be62017-10-05 18:25:37 +02001053
1054 msg->l2h = msg->data;
1055 msg->cb[MSGB_CB_MGCP_TRANS_ID] = trans_id;
1056
1057 /* Add command verb */
1058 switch (mgcp_msg->verb) {
1059 case MGCP_VERB_CRCX:
1060 mandatory_mask = MGCP_CRCX_MANDATORY;
1061 rc += msgb_printf(msg, "CRCX %u", trans_id);
1062 break;
1063 case MGCP_VERB_MDCX:
1064 mandatory_mask = MGCP_MDCX_MANDATORY;
1065 rc += msgb_printf(msg, "MDCX %u", trans_id);
1066 break;
1067 case MGCP_VERB_DLCX:
1068 mandatory_mask = MGCP_DLCX_MANDATORY;
1069 rc += msgb_printf(msg, "DLCX %u", trans_id);
1070 break;
1071 case MGCP_VERB_AUEP:
1072 mandatory_mask = MGCP_AUEP_MANDATORY;
1073 rc += msgb_printf(msg, "AUEP %u", trans_id);
1074 break;
1075 case MGCP_VERB_RSIP:
1076 mandatory_mask = MGCP_RSIP_MANDATORY;
1077 rc += msgb_printf(msg, "RSIP %u", trans_id);
1078 break;
1079 default:
1080 LOGP(DLMGCP, LOGL_ERROR,
1081 "Invalid command verb, can not generate MGCP message\n");
1082 msgb_free(msg);
1083 return NULL;
1084 }
1085
1086 /* Check if mandatory fields are missing */
1087 if (!((mgcp_msg->presence & mandatory_mask) == mandatory_mask)) {
1088 LOGP(DLMGCP, LOGL_ERROR,
1089 "One or more missing mandatory fields, can not generate MGCP message\n");
1090 msgb_free(msg);
1091 return NULL;
1092 }
1093
1094 /* Add endpoint name */
Philipp Maier7bc55522017-12-10 22:52:22 +01001095 if (mgcp_msg->presence & MGCP_MSG_PRESENCE_ENDPOINT) {
1096 if (strlen(mgcp_msg->endpoint) <= 0) {
1097 LOGP(DLMGCP, LOGL_ERROR,
1098 "Empty endpoint name, can not generate MGCP message\n");
1099 msgb_free(msg);
1100 return NULL;
1101 }
Philipp Maier3aa81572018-01-31 14:13:45 +01001102
1103 if (strstr(mgcp_msg->endpoint, "@") == NULL) {
1104 LOGP(DLMGCP, LOGL_ERROR,
1105 "Endpoint name (%s) lacks separator (@), can not generate MGCP message\n",
1106 mgcp_msg->endpoint);
1107 msgb_free(msg);
1108 }
1109
Philipp Maier1dc6be62017-10-05 18:25:37 +02001110 rc += msgb_printf(msg, " %s", mgcp_msg->endpoint);
Philipp Maier7bc55522017-12-10 22:52:22 +01001111 }
Philipp Maier1dc6be62017-10-05 18:25:37 +02001112
1113 /* Add protocol version */
1114 rc += msgb_printf(msg, " MGCP 1.0\r\n");
1115
1116 /* Add call id */
1117 if (mgcp_msg->presence & MGCP_MSG_PRESENCE_CALL_ID)
1118 rc += msgb_printf(msg, "C: %x\r\n", mgcp_msg->call_id);
1119
1120 /* Add connection id */
Philipp Maier7bc55522017-12-10 22:52:22 +01001121 if (mgcp_msg->presence & MGCP_MSG_PRESENCE_CONN_ID) {
1122 if (strlen(mgcp_msg->conn_id) <= 0) {
1123 LOGP(DLMGCP, LOGL_ERROR,
1124 "Empty connection id, can not generate MGCP message\n");
1125 msgb_free(msg);
1126 return NULL;
1127 }
Philipp Maier01d24a32017-11-21 17:26:09 +01001128 rc += msgb_printf(msg, "I: %s\r\n", mgcp_msg->conn_id);
Philipp Maier7bc55522017-12-10 22:52:22 +01001129 }
Philipp Maier1dc6be62017-10-05 18:25:37 +02001130
Philipp Maier704c4f02018-06-07 18:51:31 +02001131 /* Using SDP makes sense when a valid IP/Port combination is specifiec,
1132 * if we do not know this information yet, we fall back to LCO */
1133 if (mgcp_msg->presence & MGCP_MSG_PRESENCE_AUDIO_IP
1134 && mgcp_msg->presence & MGCP_MSG_PRESENCE_AUDIO_PORT)
1135 use_sdp = true;
1136
1137 /* Add local connection options (LCO) */
1138 if (!use_sdp
1139 && (mgcp_msg->verb == MGCP_VERB_CRCX
1140 || mgcp_msg->verb == MGCP_VERB_MDCX))
1141 rc += add_lco(msg, mgcp_msg);
Philipp Maier1dc6be62017-10-05 18:25:37 +02001142
1143 /* Add mode */
1144 if (mgcp_msg->presence & MGCP_MSG_PRESENCE_CONN_MODE)
1145 rc +=
1146 msgb_printf(msg, "M: %s\r\n",
1147 mgcp_client_cmode_name(mgcp_msg->conn_mode));
1148
Neels Hofmeyre6d8e912018-08-23 16:36:48 +02001149 /* Add X-Osmo-IGN */
1150 if ((mgcp_msg->presence & MGCP_MSG_PRESENCE_X_OSMO_IGN)
1151 && (mgcp_msg->x_osmo_ign != 0))
1152 rc +=
1153 msgb_printf(msg, MGCP_X_OSMO_IGN_HEADER "%s\r\n",
1154 mgcp_msg->x_osmo_ign & MGCP_X_OSMO_IGN_CALLID ? " C": "");
1155
Philipp Maier704c4f02018-06-07 18:51:31 +02001156 /* Add session description protocol (SDP) */
1157 if (use_sdp
1158 && (mgcp_msg->verb == MGCP_VERB_CRCX
1159 || mgcp_msg->verb == MGCP_VERB_MDCX)) {
1160 rc_sdp = add_sdp(msg, mgcp_msg, mgcp);
1161 if (rc_sdp == -2)
Philipp Maier9d25d7a2018-01-22 17:31:10 +01001162 return NULL;
Philipp Maier704c4f02018-06-07 18:51:31 +02001163 else
1164 rc += rc_sdp;
Philipp Maier1dc6be62017-10-05 18:25:37 +02001165 }
1166
1167 if (rc != 0) {
1168 LOGP(DLMGCP, LOGL_ERROR,
1169 "message buffer to small, can not generate MGCP message\n");
1170 msgb_free(msg);
1171 msg = NULL;
1172 }
1173
1174 return msg;
1175}
1176
Philipp Maier275ac972018-01-20 00:58:16 +01001177/*! Retrieve the MGCP transaction ID from a msgb generated by mgcp_msg_gen()
1178 * \param[in] msg message buffer
1179 * \returns Transaction id. */
Neels Hofmeyrc8f37cb2017-11-30 13:43:11 +01001180mgcp_trans_id_t mgcp_msg_trans_id(struct msgb *msg)
1181{
1182 return (mgcp_trans_id_t)msg->cb[MSGB_CB_MGCP_TRANS_ID];
1183}
1184
Philipp Maier275ac972018-01-20 00:58:16 +01001185/*! Get the configuration parameters a given MGCP client instance
1186 * \param[in] mgcp MGCP client descriptor.
1187 * \returns configuration */
Neels Hofmeyr3a8e7232017-09-04 01:02:56 +02001188struct mgcp_client_conf *mgcp_client_conf_actual(struct mgcp_client *mgcp)
Neels Hofmeyre9920f22017-07-10 15:07:22 +02001189{
1190 return &mgcp->actual;
1191}
Neels Hofmeyrd95ab1e2017-09-22 00:52:54 +02001192
1193const struct value_string mgcp_client_connection_mode_strs[] = {
1194 { MGCP_CONN_NONE, "none" },
1195 { MGCP_CONN_RECV_SEND, "sendrecv" },
1196 { MGCP_CONN_SEND_ONLY, "sendonly" },
1197 { MGCP_CONN_RECV_ONLY, "recvonly" },
1198 { MGCP_CONN_LOOPBACK, "loopback" },
1199 { 0, NULL }
1200};