blob: 74acffad64ff44004193751228ce978189097e98 [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 Maier12943ea2018-01-17 15:40:25 +0100184/* Check if the domain name, which is supplied with the endpoint name
185 * matches the configuration. */
186static int check_domain_name(struct mgcp_config *cfg, const char *mgcp)
187{
188 char *domain_to_check;
189
190 domain_to_check = strstr(mgcp, "@");
191 if (!domain_to_check)
192 return -EINVAL;
193
194 if (strcmp(domain_to_check+1, cfg->domain) != 0)
195 return -EINVAL;
196
197 return 0;
198}
199
Philipp Maier87bd9be2017-08-22 16:35:41 +0200200/* Search the endpoint pool for the endpoint that had been selected via the
201 * MGCP message (helper function for mgcp_analyze_header()) */
202static struct mgcp_endpoint *find_endpoint(struct mgcp_config *cfg,
203 const char *mgcp)
204{
205 char *endptr = NULL;
206 unsigned int gw = INT_MAX;
207
Philipp Maier12943ea2018-01-17 15:40:25 +0100208 if (check_domain_name(cfg, mgcp)) {
209 LOGP(DLMGCP, LOGL_ERROR, "Wrong domain name '%s'\n", mgcp);
210 return NULL;
211 }
212
Philipp Maier87bd9be2017-08-22 16:35:41 +0200213 if (strncmp(mgcp, "ds/e1", 5) == 0)
214 return find_e1_endpoint(cfg, mgcp);
215
Harald Welte33eafe02017-12-28 03:15:27 +0100216 gw = strtoul(mgcp, &endptr, 16);
Philipp Maier03cc4842018-01-17 16:59:38 +0100217 if (gw < cfg->trunk.number_endpoints && endptr[0] == '@')
Philipp Maier87bd9be2017-08-22 16:35:41 +0200218 return &cfg->trunk.endpoints[gw];
219
220 LOGP(DLMGCP, LOGL_ERROR, "Not able to find the endpoint: '%s'\n", mgcp);
221 return NULL;
222}
223
224/*! Analyze and parse the the hader of an MGCP messeage string.
225 * \param[out] pdata caller provided memory to store the parsing results
226 * \param[in] data mgcp message string
227 * \returns when the status line was complete and transaction_id and
228 * endp out parameters are set, -1 on error */
229int mgcp_parse_header(struct mgcp_parse_data *pdata, char *data)
230{
231 int i = 0;
232 char *elem, *save = NULL;
233
234 /*! This function will parse the header part of the received
235 * MGCP message. The parsing results are stored in pdata.
236 * The function will also automatically search the pool with
237 * available endpoints in order to find an endpoint that matches
238 * the endpoint string in in the header */
239
240 OSMO_ASSERT(data);
241 pdata->trans = "000000";
242
243 for (elem = strtok_r(data, " ", &save); elem;
244 elem = strtok_r(NULL, " ", &save)) {
245 switch (i) {
246 case 0:
247 pdata->trans = elem;
248 break;
249 case 1:
250 pdata->endp = find_endpoint(pdata->cfg, elem);
251 if (!pdata->endp) {
252 LOGP(DLMGCP, LOGL_ERROR,
253 "Unable to find Endpoint `%s'\n", elem);
Harald Welteabbb6b92017-12-28 13:13:50 +0100254 return -500;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200255 }
256 break;
257 case 2:
258 if (strcmp("MGCP", elem)) {
259 LOGP(DLMGCP, LOGL_ERROR,
260 "MGCP header parsing error\n");
Harald Welteabbb6b92017-12-28 13:13:50 +0100261 return -510;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200262 }
263 break;
264 case 3:
265 if (strcmp("1.0", elem)) {
266 LOGP(DLMGCP, LOGL_ERROR, "MGCP version `%s' "
267 "not supported\n", elem);
Harald Welteabbb6b92017-12-28 13:13:50 +0100268 return -528;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200269 }
270 break;
271 }
272 i++;
273 }
274
275 if (i != 4) {
276 LOGP(DLMGCP, LOGL_ERROR, "MGCP status line too short.\n");
277 pdata->trans = "000000";
278 pdata->endp = NULL;
Harald Welteabbb6b92017-12-28 13:13:50 +0100279 return -510;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200280 }
281
282 return 0;
283}
284
285/*! Extract OSMUX CID from an MGCP parameter line (string).
286 * \param[in] line single parameter line from the MGCP message
287 * \returns OSMUX CID, -1 on error */
288int mgcp_parse_osmux_cid(const char *line)
289{
290 int osmux_cid;
291
292 if (sscanf(line + 2, "Osmux: %u", &osmux_cid) != 1)
293 return -1;
294
295 if (osmux_cid > OSMUX_CID_MAX) {
296 LOGP(DLMGCP, LOGL_ERROR, "Osmux ID too large: %u > %u\n",
297 osmux_cid, OSMUX_CID_MAX);
298 return -1;
299 }
300 LOGP(DLMGCP, LOGL_DEBUG, "bsc-nat offered Osmux CID %u\n", osmux_cid);
301
302 return osmux_cid;
303}
304
305/*! Check MGCP parameter line (string) for plausibility.
306 * \param[in] endp pointer to endpoint (only used for log output)
307 * \param[in] line single parameter line from the MGCP message
308 * \returns 1 when line seems plausible, 0 on error */
309int mgcp_check_param(const struct mgcp_endpoint *endp, const char *line)
310{
311 const size_t line_len = strlen(line);
312 if (line[0] != '\0' && line_len < 2) {
313 LOGP(DLMGCP, LOGL_ERROR,
314 "Wrong MGCP option format: '%s' on 0x%x\n",
315 line, ENDPOINT_NUMBER(endp));
316 return 0;
317 }
318
319 /* FIXME: A couple more checks wouldn't hurt... */
320
321 return 1;
322}
323
324/*! Check if the specified callid seems plausible.
325 * \param[in] endp pointer to endpoint
326 * \param{in] callid to verify
327 * \returns 1 when callid seems plausible, 0 on error */
328int mgcp_verify_call_id(struct mgcp_endpoint *endp, const char *callid)
329{
330 /*! This function compares the supplied callid with the called that is
331 * stored in the endpoint structure. */
332
333 if (!endp)
334 return -1;
335 if (!callid)
336 return -1;
337 if (!endp->callid)
338 return -1;
339
340 if (strcmp(endp->callid, callid) != 0) {
341 LOGP(DLMGCP, LOGL_ERROR,
Philipp Maier230e4fc2017-11-28 09:38:45 +0100342 "endpoint:0x%x CallIDs does not match '%s' != '%s'\n",
Philipp Maier87bd9be2017-08-22 16:35:41 +0200343 ENDPOINT_NUMBER(endp), endp->callid, callid);
344 return -1;
345 }
346
347 return 0;
348}
349
350/*! Check if the specified connection id seems plausible.
351 * \param[in] endp pointer to endpoint
352 * \param{in] connection id to verify
353 * \returns 1 when connection id seems plausible, 0 on error */
Philipp Maier01d24a32017-11-21 17:26:09 +0100354int mgcp_verify_ci(struct mgcp_endpoint *endp, const char *conn_id)
Philipp Maier87bd9be2017-08-22 16:35:41 +0200355{
Philipp Maier01d24a32017-11-21 17:26:09 +0100356 /* Check for null identifiers */
357 if (!conn_id) {
358 LOGP(DLMGCP, LOGL_ERROR,
Philipp Maier230e4fc2017-11-28 09:38:45 +0100359 "endpoint:0x%x invalid ConnectionIdentifier (missing)\n",
Philipp Maier01d24a32017-11-21 17:26:09 +0100360 ENDPOINT_NUMBER(endp));
Philipp Maier87bd9be2017-08-22 16:35:41 +0200361 return -1;
Philipp Maier01d24a32017-11-21 17:26:09 +0100362 }
Philipp Maier87bd9be2017-08-22 16:35:41 +0200363
Philipp Maier01d24a32017-11-21 17:26:09 +0100364 /* Check for empty connection identifiers */
365 if (strlen(conn_id) == 0) {
366 LOGP(DLMGCP, LOGL_ERROR,
Philipp Maier230e4fc2017-11-28 09:38:45 +0100367 "endpoint:0x%x invalid ConnectionIdentifier (empty)\n",
Philipp Maier01d24a32017-11-21 17:26:09 +0100368 ENDPOINT_NUMBER(endp));
369 return -1;
370 }
Philipp Maier87bd9be2017-08-22 16:35:41 +0200371
Philipp Maier01d24a32017-11-21 17:26:09 +0100372 /* Check for over long connection identifiers */
373 if (strlen(conn_id) > MGCP_CONN_ID_LENGTH) {
374 LOGP(DLMGCP, LOGL_ERROR,
Philipp Maier230e4fc2017-11-28 09:38:45 +0100375 "endpoint:0x%x invalid ConnectionIdentifier (too long) 0x%s\n",
Philipp Maier01d24a32017-11-21 17:26:09 +0100376 ENDPOINT_NUMBER(endp), conn_id);
377 return -1;
378 }
379
380 /* Check if connection exists */
381 if (mgcp_conn_get(endp, conn_id))
Philipp Maier87bd9be2017-08-22 16:35:41 +0200382 return 0;
383
384 LOGP(DLMGCP, LOGL_ERROR,
Philipp Maier230e4fc2017-11-28 09:38:45 +0100385 "endpoint:0x%x no connection found under ConnectionIdentifier 0x%s\n",
Philipp Maier01d24a32017-11-21 17:26:09 +0100386 ENDPOINT_NUMBER(endp), conn_id);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200387
388 return -1;
389}
390
391/*! Extract individual lines from MCGP message.
392 * \param[in] str MGCP message string, consisting of multiple lines
393 * \param{in] saveptr pointer to next line in str
394 * \returns line, NULL when done */
395char *mgcp_strline(char *str, char **saveptr)
396{
397 char *result;
398
399 /*! The function must be called with *str set to the input string
400 * for the first line. After that saveptr will be initalized.
401 * all consecutive lines are extracted by calling the function
402 * with str set to NULL. When done, the function will return NULL
403 * to indicate that all lines have been parsed. */
404
405 if (str)
406 *saveptr = str;
407
408 result = *saveptr;
409
410 if (*saveptr != NULL) {
411 *saveptr = strpbrk(*saveptr, "\r\n");
412
413 if (*saveptr != NULL) {
414 char *eos = *saveptr;
415
416 if ((*saveptr)[0] == '\r' && (*saveptr)[1] == '\n')
417 (*saveptr)++;
418 (*saveptr)++;
419 if ((*saveptr)[0] == '\0')
420 *saveptr = NULL;
421
422 *eos = '\0';
423 }
424 }
425
426 return result;
427}