blob: 9bb2805d4ac9438b7a036ed471cbc913c800518c [file] [log] [blame]
Philipp Maier87bd9be2017-08-22 16:35:41 +02001/* A Media Gateway Control Protocol Media Gateway: RFC 3435 */
2/* Message parser/generator utilities */
3
4/*
5 * (C) 2009-2012 by Holger Hans Peter Freyther <zecke@selfish.org>
6 * (C) 2009-2012 by On-Waves
7 * (C) 2017 by sysmocom s.f.m.c. GmbH <info@sysmocom.de>
8 * All Rights Reserved
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU Affero General Public License as published by
12 * the Free Software Foundation; either version 3 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Affero General Public License for more details.
19 *
20 * You should have received a copy of the GNU Affero General Public License
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 *
23 */
24
25#include <limits.h>
26
27#include <osmocom/mgcp/mgcp_internal.h>
Neels Hofmeyr67793542017-09-08 04:25:16 +020028#include <osmocom/mgcp/mgcp_common.h>
Philipp Maier87bd9be2017-08-22 16:35:41 +020029#include <osmocom/mgcp/mgcp_msg.h>
30#include <osmocom/mgcp/mgcp_conn.h>
31
32/*! Display an mgcp message on the log output.
33 * \param[in] message mgcp message string
34 * \param[in] len message mgcp message string length
35 * \param[in] preamble string to display in logtext in front of each line */
36void mgcp_disp_msg(unsigned char *message, unsigned int len, char *preamble)
37{
38 unsigned char line[80];
39 unsigned char *ptr;
40 unsigned int consumed = 0;
41 unsigned int consumed_line = 0;
42 unsigned int line_count = 0;
43
44 if (!log_check_level(DLMGCP, LOGL_DEBUG))
45 return;
46
47 while (1) {
48 memset(line, 0, sizeof(line));
49 ptr = line;
50 consumed_line = 0;
51 do {
52 if (*message != '\n' && *message != '\r') {
53 *ptr = *message;
54 ptr++;
55 }
56 message++;
57 consumed++;
58 consumed_line++;
59 } while (*message != '\n' && consumed < len
60 && consumed_line < sizeof(line));
61
62 if (strlen((const char *)line)) {
63 LOGP(DLMGCP, LOGL_DEBUG, "%s: line #%02u: %s\n",
64 preamble, line_count, line);
65 line_count++;
66 }
67
68 if (consumed >= len)
69 return;
70 }
71}
72
73/*! Parse connection mode.
74 * \param[in] mode as string (recvonly, sendrecv, sendonly or loopback)
75 * \param[in] endp pointer to endpoint (only used for log output)
76 * \param[out] associated connection to be modified accordingly
77 * \returns 0 on success, -1 on error */
78int mgcp_parse_conn_mode(const char *mode, struct mgcp_endpoint *endp,
79 struct mgcp_conn *conn)
80{
81 int ret = 0;
82
83 if (!mode) {
84 LOGP(DLMGCP, LOGL_ERROR,
Philipp Maier230e4fc2017-11-28 09:38:45 +010085 "endpoint:0x%x missing connection mode\n",
Philipp Maier87bd9be2017-08-22 16:35:41 +020086 ENDPOINT_NUMBER(endp));
87 return -1;
88 }
89 if (!conn)
90 return -1;
91 if (!endp)
92 return -1;
93
94 if (strcmp(mode, "recvonly") == 0)
95 conn->mode = MGCP_CONN_RECV_ONLY;
96 else if (strcmp(mode, "sendrecv") == 0)
97 conn->mode = MGCP_CONN_RECV_SEND;
98 else if (strcmp(mode, "sendonly") == 0)
99 conn->mode = MGCP_CONN_SEND_ONLY;
100 else if (strcmp(mode, "loopback") == 0)
101 conn->mode = MGCP_CONN_LOOPBACK;
102 else {
103 LOGP(DLMGCP, LOGL_ERROR,
Philipp Maier230e4fc2017-11-28 09:38:45 +0100104 "endpoint:0x%x unknown connection mode: '%s'\n",
Philipp Maier87bd9be2017-08-22 16:35:41 +0200105 ENDPOINT_NUMBER(endp), mode);
106 ret = -1;
107 }
108
109 /* Special handling für RTP connections */
110 if (conn->type == MGCP_CONN_TYPE_RTP) {
111 conn->u.rtp.end.output_enabled =
112 conn->mode & MGCP_CONN_SEND_ONLY ? 1 : 0;
113 }
114
115 LOGP(DLMGCP, LOGL_DEBUG,
Philipp Maier230e4fc2017-11-28 09:38:45 +0100116 "endpoint:0x%x conn:%s\n",
Philipp Maier87bd9be2017-08-22 16:35:41 +0200117 ENDPOINT_NUMBER(endp), mgcp_conn_dump(conn));
118
119 LOGP(DLMGCP, LOGL_DEBUG,
Philipp Maier230e4fc2017-11-28 09:38:45 +0100120 "endpoint:0x%x connection mode '%s' %d\n",
Philipp Maier87bd9be2017-08-22 16:35:41 +0200121 ENDPOINT_NUMBER(endp), mode, conn->mode);
122
123 /* Special handling für RTP connections */
124 if (conn->type == MGCP_CONN_TYPE_RTP) {
Philipp Maier230e4fc2017-11-28 09:38:45 +0100125 LOGP(DLMGCP, LOGL_DEBUG, "endpoint:0x%x output_enabled %d\n",
Philipp Maier87bd9be2017-08-22 16:35:41 +0200126 ENDPOINT_NUMBER(endp), conn->u.rtp.end.output_enabled);
127 }
128
129 /* The VTY might change the connection mode at any time, so we have
130 * to hold a copy of the original connection mode */
131 conn->mode_orig = conn->mode;
132
133 return ret;
134}
135
136/* We have a null terminated string with the endpoint name here. We only
137 * support two kinds. Simple ones as seen on the BSC level and the ones
138 * seen on the trunk side. (helper function for find_endpoint()) */
139static struct mgcp_endpoint *find_e1_endpoint(struct mgcp_config *cfg,
140 const char *mgcp)
141{
142 char *rest = NULL;
143 struct mgcp_trunk_config *tcfg;
144 int trunk, endp;
145
146 trunk = strtoul(mgcp + 6, &rest, 10);
147 if (rest == NULL || rest[0] != '/' || trunk < 1) {
148 LOGP(DLMGCP, LOGL_ERROR, "Wrong trunk name '%s'\n", mgcp);
149 return NULL;
150 }
151
152 endp = strtoul(rest + 1, &rest, 10);
153 if (rest == NULL || rest[0] != '@') {
154 LOGP(DLMGCP, LOGL_ERROR, "Wrong endpoint name '%s'\n", mgcp);
155 return NULL;
156 }
157
158 /* signalling is on timeslot 1 */
159 if (endp == 1)
160 return NULL;
161
162 tcfg = mgcp_trunk_num(cfg, trunk);
163 if (!tcfg) {
164 LOGP(DLMGCP, LOGL_ERROR, "The trunk %d is not declared.\n",
165 trunk);
166 return NULL;
167 }
168
169 if (!tcfg->endpoints) {
170 LOGP(DLMGCP, LOGL_ERROR,
171 "Endpoints of trunk %d not allocated.\n", trunk);
172 return NULL;
173 }
174
175 if (endp < 1 || endp >= tcfg->number_endpoints) {
176 LOGP(DLMGCP, LOGL_ERROR, "Failed to find endpoint '%s'\n",
177 mgcp);
178 return NULL;
179 }
180
181 return &tcfg->endpoints[endp];
182}
183
Philipp Maier55295f72018-01-15 14:00:28 +0100184/* Find an endpoint that is not in use. Do this by going through the endpoint
185 * array, check the callid. A callid nullpointer indicates that the endpoint
186 * is free */
187static struct mgcp_endpoint *find_free_endpoint(struct mgcp_endpoint *endpoints,
188 unsigned int number_endpoints)
189{
190 struct mgcp_endpoint *endp;
191 unsigned int i;
192
193 for (i = 0; i < number_endpoints; i++) {
194 if (endpoints[i].callid == NULL) {
195 endp = &endpoints[i];
196 LOGP(DLMGCP, LOGL_DEBUG,
197 "endpoint:0x%x found free endpoint\n",
198 ENDPOINT_NUMBER(endp));
199 endp->wildcarded_crcx = true;
200 return endp;
201 }
202 }
203
204 LOGP(DLMGCP, LOGL_ERROR, "Not able to find a free endpoint");
205 return NULL;
206}
207
Philipp Maier12943ea2018-01-17 15:40:25 +0100208/* Check if the domain name, which is supplied with the endpoint name
209 * matches the configuration. */
210static int check_domain_name(struct mgcp_config *cfg, const char *mgcp)
211{
212 char *domain_to_check;
213
214 domain_to_check = strstr(mgcp, "@");
215 if (!domain_to_check)
216 return -EINVAL;
217
218 if (strcmp(domain_to_check+1, cfg->domain) != 0)
219 return -EINVAL;
220
221 return 0;
222}
223
Philipp Maier87bd9be2017-08-22 16:35:41 +0200224/* Search the endpoint pool for the endpoint that had been selected via the
225 * MGCP message (helper function for mgcp_analyze_header()) */
226static struct mgcp_endpoint *find_endpoint(struct mgcp_config *cfg,
227 const char *mgcp)
228{
229 char *endptr = NULL;
230 unsigned int gw = INT_MAX;
231
Philipp Maier12943ea2018-01-17 15:40:25 +0100232 if (check_domain_name(cfg, mgcp)) {
233 LOGP(DLMGCP, LOGL_ERROR, "Wrong domain name '%s'\n", mgcp);
234 return NULL;
235 }
236
Philipp Maier87bd9be2017-08-22 16:35:41 +0200237 if (strncmp(mgcp, "ds/e1", 5) == 0)
238 return find_e1_endpoint(cfg, mgcp);
239
Philipp Maier55295f72018-01-15 14:00:28 +0100240 if (strncmp(mgcp, "*", 1) == 0) {
241 return find_free_endpoint(cfg->trunk.endpoints,
242 cfg->trunk.number_endpoints);
243 }
244
Harald Welte33eafe02017-12-28 03:15:27 +0100245 gw = strtoul(mgcp, &endptr, 16);
Philipp Maier03cc4842018-01-17 16:59:38 +0100246 if (gw < cfg->trunk.number_endpoints && endptr[0] == '@')
Philipp Maier87bd9be2017-08-22 16:35:41 +0200247 return &cfg->trunk.endpoints[gw];
248
249 LOGP(DLMGCP, LOGL_ERROR, "Not able to find the endpoint: '%s'\n", mgcp);
250 return NULL;
251}
252
253/*! Analyze and parse the the hader of an MGCP messeage string.
254 * \param[out] pdata caller provided memory to store the parsing results
255 * \param[in] data mgcp message string
256 * \returns when the status line was complete and transaction_id and
257 * endp out parameters are set, -1 on error */
258int mgcp_parse_header(struct mgcp_parse_data *pdata, char *data)
259{
260 int i = 0;
261 char *elem, *save = NULL;
262
263 /*! This function will parse the header part of the received
264 * MGCP message. The parsing results are stored in pdata.
265 * The function will also automatically search the pool with
266 * available endpoints in order to find an endpoint that matches
267 * the endpoint string in in the header */
268
269 OSMO_ASSERT(data);
270 pdata->trans = "000000";
271
272 for (elem = strtok_r(data, " ", &save); elem;
273 elem = strtok_r(NULL, " ", &save)) {
274 switch (i) {
275 case 0:
276 pdata->trans = elem;
277 break;
278 case 1:
279 pdata->endp = find_endpoint(pdata->cfg, elem);
280 if (!pdata->endp) {
281 LOGP(DLMGCP, LOGL_ERROR,
282 "Unable to find Endpoint `%s'\n", elem);
Harald Welteabbb6b92017-12-28 13:13:50 +0100283 return -500;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200284 }
285 break;
286 case 2:
287 if (strcmp("MGCP", elem)) {
288 LOGP(DLMGCP, LOGL_ERROR,
289 "MGCP header parsing error\n");
Harald Welteabbb6b92017-12-28 13:13:50 +0100290 return -510;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200291 }
292 break;
293 case 3:
294 if (strcmp("1.0", elem)) {
295 LOGP(DLMGCP, LOGL_ERROR, "MGCP version `%s' "
296 "not supported\n", elem);
Harald Welteabbb6b92017-12-28 13:13:50 +0100297 return -528;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200298 }
299 break;
300 }
301 i++;
302 }
303
304 if (i != 4) {
305 LOGP(DLMGCP, LOGL_ERROR, "MGCP status line too short.\n");
306 pdata->trans = "000000";
307 pdata->endp = NULL;
Harald Welteabbb6b92017-12-28 13:13:50 +0100308 return -510;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200309 }
310
311 return 0;
312}
313
314/*! Extract OSMUX CID from an MGCP parameter line (string).
315 * \param[in] line single parameter line from the MGCP message
316 * \returns OSMUX CID, -1 on error */
317int mgcp_parse_osmux_cid(const char *line)
318{
319 int osmux_cid;
320
321 if (sscanf(line + 2, "Osmux: %u", &osmux_cid) != 1)
322 return -1;
323
324 if (osmux_cid > OSMUX_CID_MAX) {
325 LOGP(DLMGCP, LOGL_ERROR, "Osmux ID too large: %u > %u\n",
326 osmux_cid, OSMUX_CID_MAX);
327 return -1;
328 }
329 LOGP(DLMGCP, LOGL_DEBUG, "bsc-nat offered Osmux CID %u\n", osmux_cid);
330
331 return osmux_cid;
332}
333
334/*! Check MGCP parameter line (string) for plausibility.
335 * \param[in] endp pointer to endpoint (only used for log output)
336 * \param[in] line single parameter line from the MGCP message
337 * \returns 1 when line seems plausible, 0 on error */
338int mgcp_check_param(const struct mgcp_endpoint *endp, const char *line)
339{
340 const size_t line_len = strlen(line);
341 if (line[0] != '\0' && line_len < 2) {
342 LOGP(DLMGCP, LOGL_ERROR,
343 "Wrong MGCP option format: '%s' on 0x%x\n",
344 line, ENDPOINT_NUMBER(endp));
345 return 0;
346 }
347
348 /* FIXME: A couple more checks wouldn't hurt... */
349
350 return 1;
351}
352
353/*! Check if the specified callid seems plausible.
354 * \param[in] endp pointer to endpoint
355 * \param{in] callid to verify
356 * \returns 1 when callid seems plausible, 0 on error */
357int mgcp_verify_call_id(struct mgcp_endpoint *endp, const char *callid)
358{
359 /*! This function compares the supplied callid with the called that is
360 * stored in the endpoint structure. */
361
362 if (!endp)
363 return -1;
364 if (!callid)
365 return -1;
366 if (!endp->callid)
367 return -1;
368
369 if (strcmp(endp->callid, callid) != 0) {
370 LOGP(DLMGCP, LOGL_ERROR,
Philipp Maier230e4fc2017-11-28 09:38:45 +0100371 "endpoint:0x%x CallIDs does not match '%s' != '%s'\n",
Philipp Maier87bd9be2017-08-22 16:35:41 +0200372 ENDPOINT_NUMBER(endp), endp->callid, callid);
373 return -1;
374 }
375
376 return 0;
377}
378
379/*! Check if the specified connection id seems plausible.
380 * \param[in] endp pointer to endpoint
381 * \param{in] connection id to verify
382 * \returns 1 when connection id seems plausible, 0 on error */
Philipp Maier01d24a32017-11-21 17:26:09 +0100383int mgcp_verify_ci(struct mgcp_endpoint *endp, const char *conn_id)
Philipp Maier87bd9be2017-08-22 16:35:41 +0200384{
Philipp Maier01d24a32017-11-21 17:26:09 +0100385 /* Check for null identifiers */
386 if (!conn_id) {
387 LOGP(DLMGCP, LOGL_ERROR,
Philipp Maier230e4fc2017-11-28 09:38:45 +0100388 "endpoint:0x%x invalid ConnectionIdentifier (missing)\n",
Philipp Maier01d24a32017-11-21 17:26:09 +0100389 ENDPOINT_NUMBER(endp));
Philipp Maier87bd9be2017-08-22 16:35:41 +0200390 return -1;
Philipp Maier01d24a32017-11-21 17:26:09 +0100391 }
Philipp Maier87bd9be2017-08-22 16:35:41 +0200392
Philipp Maier01d24a32017-11-21 17:26:09 +0100393 /* Check for empty connection identifiers */
394 if (strlen(conn_id) == 0) {
395 LOGP(DLMGCP, LOGL_ERROR,
Philipp Maier230e4fc2017-11-28 09:38:45 +0100396 "endpoint:0x%x invalid ConnectionIdentifier (empty)\n",
Philipp Maier01d24a32017-11-21 17:26:09 +0100397 ENDPOINT_NUMBER(endp));
398 return -1;
399 }
Philipp Maier87bd9be2017-08-22 16:35:41 +0200400
Philipp Maier01d24a32017-11-21 17:26:09 +0100401 /* Check for over long connection identifiers */
402 if (strlen(conn_id) > MGCP_CONN_ID_LENGTH) {
403 LOGP(DLMGCP, LOGL_ERROR,
Philipp Maier230e4fc2017-11-28 09:38:45 +0100404 "endpoint:0x%x invalid ConnectionIdentifier (too long) 0x%s\n",
Philipp Maier01d24a32017-11-21 17:26:09 +0100405 ENDPOINT_NUMBER(endp), conn_id);
406 return -1;
407 }
408
409 /* Check if connection exists */
410 if (mgcp_conn_get(endp, conn_id))
Philipp Maier87bd9be2017-08-22 16:35:41 +0200411 return 0;
412
413 LOGP(DLMGCP, LOGL_ERROR,
Philipp Maier230e4fc2017-11-28 09:38:45 +0100414 "endpoint:0x%x no connection found under ConnectionIdentifier 0x%s\n",
Philipp Maier01d24a32017-11-21 17:26:09 +0100415 ENDPOINT_NUMBER(endp), conn_id);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200416
417 return -1;
418}
419
420/*! Extract individual lines from MCGP message.
421 * \param[in] str MGCP message string, consisting of multiple lines
422 * \param{in] saveptr pointer to next line in str
423 * \returns line, NULL when done */
424char *mgcp_strline(char *str, char **saveptr)
425{
426 char *result;
427
428 /*! The function must be called with *str set to the input string
429 * for the first line. After that saveptr will be initalized.
430 * all consecutive lines are extracted by calling the function
431 * with str set to NULL. When done, the function will return NULL
432 * to indicate that all lines have been parsed. */
433
434 if (str)
435 *saveptr = str;
436
437 result = *saveptr;
438
439 if (*saveptr != NULL) {
440 *saveptr = strpbrk(*saveptr, "\r\n");
441
442 if (*saveptr != NULL) {
443 char *eos = *saveptr;
444
445 if ((*saveptr)[0] == '\r' && (*saveptr)[1] == '\n')
446 (*saveptr)++;
447 (*saveptr)++;
448 if ((*saveptr)[0] == '\0')
449 *saveptr = NULL;
450
451 *eos = '\0';
452 }
453 }
454
455 return result;
456}