blob: f36fa7178aa2e2b858794c8a759c30cd38c28e3c [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
Philipp Maier993ea6b2020-08-04 18:26:50 +020027#include <osmocom/mgcp/mgcp.h>
28#include <osmocom/mgcp/osmux.h>
29#include <osmocom/mgcp/mgcp_protocol.h>
Neels Hofmeyr67793542017-09-08 04:25:16 +020030#include <osmocom/mgcp/mgcp_common.h>
Philipp Maier87bd9be2017-08-22 16:35:41 +020031#include <osmocom/mgcp/mgcp_msg.h>
32#include <osmocom/mgcp/mgcp_conn.h>
Philipp Maier37d11c82018-02-01 14:38:12 +010033#include <osmocom/mgcp/mgcp_endp.h>
Philipp Maier036612b2021-07-19 17:47:49 +020034#include <osmocom/mgcp/mgcp_trunk.h>
Philipp Maier87bd9be2017-08-22 16:35:41 +020035
36/*! Display an mgcp message on the log output.
37 * \param[in] message mgcp message string
38 * \param[in] len message mgcp message string length
39 * \param[in] preamble string to display in logtext in front of each line */
40void mgcp_disp_msg(unsigned char *message, unsigned int len, char *preamble)
41{
42 unsigned char line[80];
43 unsigned char *ptr;
44 unsigned int consumed = 0;
45 unsigned int consumed_line = 0;
46 unsigned int line_count = 0;
47
48 if (!log_check_level(DLMGCP, LOGL_DEBUG))
49 return;
50
51 while (1) {
52 memset(line, 0, sizeof(line));
53 ptr = line;
54 consumed_line = 0;
55 do {
56 if (*message != '\n' && *message != '\r') {
57 *ptr = *message;
58 ptr++;
59 }
60 message++;
61 consumed++;
62 consumed_line++;
63 } while (*message != '\n' && consumed < len
64 && consumed_line < sizeof(line));
65
66 if (strlen((const char *)line)) {
67 LOGP(DLMGCP, LOGL_DEBUG, "%s: line #%02u: %s\n",
68 preamble, line_count, line);
69 line_count++;
70 }
71
72 if (consumed >= len)
73 return;
74 }
75}
76
77/*! Parse connection mode.
78 * \param[in] mode as string (recvonly, sendrecv, sendonly or loopback)
79 * \param[in] endp pointer to endpoint (only used for log output)
80 * \param[out] associated connection to be modified accordingly
81 * \returns 0 on success, -1 on error */
82int mgcp_parse_conn_mode(const char *mode, struct mgcp_endpoint *endp,
83 struct mgcp_conn *conn)
84{
85 int ret = 0;
86
87 if (!mode) {
Pau Espin Pedrol3239f622019-04-24 18:47:46 +020088 LOGPCONN(conn, DLMGCP, LOGL_ERROR,
89 "missing connection mode\n");
Philipp Maier87bd9be2017-08-22 16:35:41 +020090 return -1;
91 }
92 if (!conn)
93 return -1;
94 if (!endp)
95 return -1;
96
Pau Espin Pedrol17058482019-06-26 12:23:02 +020097 if (strcasecmp(mode, "recvonly") == 0)
Philipp Maier87bd9be2017-08-22 16:35:41 +020098 conn->mode = MGCP_CONN_RECV_ONLY;
Pau Espin Pedrol17058482019-06-26 12:23:02 +020099 else if (strcasecmp(mode, "sendrecv") == 0)
Philipp Maier87bd9be2017-08-22 16:35:41 +0200100 conn->mode = MGCP_CONN_RECV_SEND;
Pau Espin Pedrol17058482019-06-26 12:23:02 +0200101 else if (strcasecmp(mode, "sendonly") == 0)
Philipp Maier87bd9be2017-08-22 16:35:41 +0200102 conn->mode = MGCP_CONN_SEND_ONLY;
Pau Espin Pedrol17058482019-06-26 12:23:02 +0200103 else if (strcasecmp(mode, "loopback") == 0)
Philipp Maier87bd9be2017-08-22 16:35:41 +0200104 conn->mode = MGCP_CONN_LOOPBACK;
105 else {
Pau Espin Pedrol3239f622019-04-24 18:47:46 +0200106 LOGPCONN(conn, DLMGCP, LOGL_ERROR,
107 "unknown connection mode: '%s'\n", mode);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200108 ret = -1;
109 }
110
Pau Espin Pedrol30e01352020-09-21 12:29:41 +0200111 /* Special handling for RTP connections */
Philipp Maier87bd9be2017-08-22 16:35:41 +0200112 if (conn->type == MGCP_CONN_TYPE_RTP) {
113 conn->u.rtp.end.output_enabled =
114 conn->mode & MGCP_CONN_SEND_ONLY ? 1 : 0;
115 }
116
Pau Espin Pedrol3239f622019-04-24 18:47:46 +0200117 LOGPENDP(endp, DLMGCP, LOGL_DEBUG, "conn:%s\n", mgcp_conn_dump(conn));
Philipp Maier87bd9be2017-08-22 16:35:41 +0200118
Pau Espin Pedrol3239f622019-04-24 18:47:46 +0200119 LOGPCONN(conn, DLMGCP, LOGL_DEBUG, "connection mode '%s' %d\n",
120 mode, conn->mode);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200121
122 /* Special handling für RTP connections */
123 if (conn->type == MGCP_CONN_TYPE_RTP) {
Pau Espin Pedrol3239f622019-04-24 18:47:46 +0200124 LOGPCONN(conn, DLMGCP, LOGL_DEBUG, "output_enabled %d\n",
125 conn->u.rtp.end.output_enabled);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200126 }
127
128 /* The VTY might change the connection mode at any time, so we have
129 * to hold a copy of the original connection mode */
130 conn->mode_orig = conn->mode;
131
132 return ret;
133}
134
Philipp Maier87bd9be2017-08-22 16:35:41 +0200135/*! Analyze and parse the the hader of an MGCP messeage string.
Philipp Maier8dc35972021-07-14 11:20:16 +0200136 * \param[out] pdata caller provided memory to store the parsing results.
137 * \param[in] data mgcp message string.
138 * \returns 0 when the status line was complete and parseable, negative (MGCP
139 * cause code) on error. */
Philipp Maier87bd9be2017-08-22 16:35:41 +0200140int mgcp_parse_header(struct mgcp_parse_data *pdata, char *data)
141{
142 int i = 0;
143 char *elem, *save = NULL;
144
145 /*! This function will parse the header part of the received
Philipp Maier8dc35972021-07-14 11:20:16 +0200146 * MGCP message. The parsing results are stored in pdata. */
Philipp Maier87bd9be2017-08-22 16:35:41 +0200147
148 OSMO_ASSERT(data);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200149
150 for (elem = strtok_r(data, " ", &save); elem;
151 elem = strtok_r(NULL, " ", &save)) {
152 switch (i) {
153 case 0:
154 pdata->trans = elem;
155 break;
156 case 1:
Philipp Maier8dc35972021-07-14 11:20:16 +0200157 pdata->epname = elem;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200158 break;
159 case 2:
Pau Espin Pedrol9a345922019-06-26 13:06:30 +0200160 if (strcasecmp("MGCP", elem)) {
Philipp Maier87bd9be2017-08-22 16:35:41 +0200161 LOGP(DLMGCP, LOGL_ERROR,
162 "MGCP header parsing error\n");
Harald Welteabbb6b92017-12-28 13:13:50 +0100163 return -510;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200164 }
165 break;
166 case 3:
Philipp Maier8dc35972021-07-14 11:20:16 +0200167 if (strcmp("1.0", elem))
Harald Welteabbb6b92017-12-28 13:13:50 +0100168 return -528;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200169 break;
170 }
171 i++;
172 }
173
174 if (i != 4) {
175 LOGP(DLMGCP, LOGL_ERROR, "MGCP status line too short.\n");
Harald Welteabbb6b92017-12-28 13:13:50 +0100176 return -510;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200177 }
178
179 return 0;
180}
181
182/*! Extract OSMUX CID from an MGCP parameter line (string).
183 * \param[in] line single parameter line from the MGCP message
Pau Espin Pedrol2b896172019-04-24 13:47:23 +0200184 * \returns OSMUX CID, -1 wildcard, -2 on error */
Philipp Maier87bd9be2017-08-22 16:35:41 +0200185int mgcp_parse_osmux_cid(const char *line)
186{
187 int osmux_cid;
188
Pau Espin Pedrol2b896172019-04-24 13:47:23 +0200189
Pau Espin Pedrolc1bf4692019-05-14 16:23:24 +0200190 if (strcasecmp(line + 2, "Osmux: *") == 0) {
Pau Espin Pedrol2b896172019-04-24 13:47:23 +0200191 LOGP(DLMGCP, LOGL_DEBUG, "Parsed wilcard Osmux CID\n");
192 return -1;
193 }
194
Pau Espin Pedrolc1bf4692019-05-14 16:23:24 +0200195 if (sscanf(line + 2 + 7, "%u", &osmux_cid) != 1) {
Pau Espin Pedrolef6304e2019-04-23 13:24:37 +0200196 LOGP(DLMGCP, LOGL_ERROR, "Failed parsing Osmux in MGCP msg line: %s\n",
197 line);
Pau Espin Pedrol2b896172019-04-24 13:47:23 +0200198 return -2;
Pau Espin Pedrolef6304e2019-04-23 13:24:37 +0200199 }
Philipp Maier87bd9be2017-08-22 16:35:41 +0200200
201 if (osmux_cid > OSMUX_CID_MAX) {
202 LOGP(DLMGCP, LOGL_ERROR, "Osmux ID too large: %u > %u\n",
203 osmux_cid, OSMUX_CID_MAX);
Pau Espin Pedrol2b896172019-04-24 13:47:23 +0200204 return -2;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200205 }
206 LOGP(DLMGCP, LOGL_DEBUG, "bsc-nat offered Osmux CID %u\n", osmux_cid);
207
208 return osmux_cid;
209}
210
211/*! Check MGCP parameter line (string) for plausibility.
Philipp Maier036612b2021-07-19 17:47:49 +0200212 * \param[in] endp pointer to endpoint (only used for log output, may be NULL)
213 * \param[in] trunk pointer to trunk (only used for log output, may be NULL if endp is not NULL)
Philipp Maier87bd9be2017-08-22 16:35:41 +0200214 * \param[in] line single parameter line from the MGCP message
Philipp Maier036612b2021-07-19 17:47:49 +0200215 * \returns true when line seems plausible, false on error */
216bool mgcp_check_param(const struct mgcp_endpoint *endp, struct mgcp_trunk *trunk, const char *line)
Philipp Maier87bd9be2017-08-22 16:35:41 +0200217{
218 const size_t line_len = strlen(line);
219 if (line[0] != '\0' && line_len < 2) {
Philipp Maier036612b2021-07-19 17:47:49 +0200220 if (endp)
221 LOGPENDP(endp, DLMGCP, LOGL_NOTICE, "wrong MGCP option format: '%s'\n", line);
222 else
223 LOGPTRUNK(trunk, DLMGCP, LOGL_NOTICE, "wrong MGCP option format: '%s'\n", line);
224 return false;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200225 }
226
227 /* FIXME: A couple more checks wouldn't hurt... */
228
Philipp Maier036612b2021-07-19 17:47:49 +0200229 return true;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200230}
231
232/*! Check if the specified callid seems plausible.
233 * \param[in] endp pointer to endpoint
234 * \param{in] callid to verify
Pau Espin Pedrol06624e12020-09-21 12:18:52 +0200235 * \returns 0 when callid seems plausible, -1 on error */
Philipp Maier87bd9be2017-08-22 16:35:41 +0200236int mgcp_verify_call_id(struct mgcp_endpoint *endp, const char *callid)
237{
238 /*! This function compares the supplied callid with the called that is
239 * stored in the endpoint structure. */
240
241 if (!endp)
242 return -1;
Neels Hofmeyre6d8e912018-08-23 16:36:48 +0200243
244 /* Accept any CallID for "X-Osmo-IGN: C" */
245 if (endp->x_osmo_ign & MGCP_X_OSMO_IGN_CALLID)
246 return 0;
247
Philipp Maier87bd9be2017-08-22 16:35:41 +0200248 if (!callid)
249 return -1;
250 if (!endp->callid)
251 return -1;
252
253 if (strcmp(endp->callid, callid) != 0) {
Pau Espin Pedrol3239f622019-04-24 18:47:46 +0200254 LOGPENDP(endp, DLMGCP, LOGL_ERROR,
255 "CallIDs mismatch: '%s' != '%s'\n",
256 endp->callid, callid);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200257 return -1;
258 }
259
260 return 0;
261}
262
263/*! Check if the specified connection id seems plausible.
264 * \param[in] endp pointer to endpoint
265 * \param{in] connection id to verify
Neels Hofmeyreb72ff02018-09-03 23:00:07 +0200266 * \returns 0 when connection id is valid and exists, an RFC3435 error code on error.
Neels Hofmeyr8a91d2c2018-09-03 22:51:30 +0200267 */
Philipp Maier01d24a32017-11-21 17:26:09 +0100268int mgcp_verify_ci(struct mgcp_endpoint *endp, const char *conn_id)
Philipp Maier87bd9be2017-08-22 16:35:41 +0200269{
Neels Hofmeyreb72ff02018-09-03 23:00:07 +0200270 /* For invalid conn_ids, return 510 "The transaction could not be executed, because some
271 * unspecified protocol error was detected." */
272
Philipp Maier01d24a32017-11-21 17:26:09 +0100273 /* Check for null identifiers */
274 if (!conn_id) {
Pau Espin Pedrol3239f622019-04-24 18:47:46 +0200275 LOGPENDP(endp, DLMGCP, LOGL_ERROR,
276 "invalid ConnectionIdentifier (missing)\n");
Neels Hofmeyreb72ff02018-09-03 23:00:07 +0200277 return 510;
Philipp Maier01d24a32017-11-21 17:26:09 +0100278 }
Philipp Maier87bd9be2017-08-22 16:35:41 +0200279
Philipp Maier01d24a32017-11-21 17:26:09 +0100280 /* Check for empty connection identifiers */
281 if (strlen(conn_id) == 0) {
Pau Espin Pedrol3239f622019-04-24 18:47:46 +0200282 LOGPENDP(endp, DLMGCP, LOGL_ERROR,
283 "invalid ConnectionIdentifier (empty)\n");
Neels Hofmeyreb72ff02018-09-03 23:00:07 +0200284 return 510;
Philipp Maier01d24a32017-11-21 17:26:09 +0100285 }
Philipp Maier87bd9be2017-08-22 16:35:41 +0200286
Philipp Maier01d24a32017-11-21 17:26:09 +0100287 /* Check for over long connection identifiers */
Neels Hofmeyr5336f572018-09-03 22:05:48 +0200288 if (strlen(conn_id) > (MGCP_CONN_ID_MAXLEN-1)) {
Pau Espin Pedrol3239f622019-04-24 18:47:46 +0200289 LOGPENDP(endp, DLMGCP, LOGL_ERROR,
290 "invalid ConnectionIdentifier (too long: %zu > %d) 0x%s\n",
291 strlen(conn_id), MGCP_CONN_ID_MAXLEN-1, conn_id);
Neels Hofmeyreb72ff02018-09-03 23:00:07 +0200292 return 510;
Philipp Maier01d24a32017-11-21 17:26:09 +0100293 }
294
295 /* Check if connection exists */
296 if (mgcp_conn_get(endp, conn_id))
Philipp Maier87bd9be2017-08-22 16:35:41 +0200297 return 0;
298
Pau Espin Pedrol3239f622019-04-24 18:47:46 +0200299 LOGPENDP(endp, DLMGCP, LOGL_ERROR,
300 "no connection found under ConnectionIdentifier 0x%s\n", conn_id);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200301
Neels Hofmeyreb72ff02018-09-03 23:00:07 +0200302 /* When the conn_id was not found, return error code 515 "The transaction refers to an incorrect
303 * connection-id (may have been already deleted)." */
304 return 515;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200305}
306
307/*! Extract individual lines from MCGP message.
308 * \param[in] str MGCP message string, consisting of multiple lines
309 * \param{in] saveptr pointer to next line in str
310 * \returns line, NULL when done */
311char *mgcp_strline(char *str, char **saveptr)
312{
313 char *result;
314
315 /*! The function must be called with *str set to the input string
316 * for the first line. After that saveptr will be initalized.
317 * all consecutive lines are extracted by calling the function
318 * with str set to NULL. When done, the function will return NULL
319 * to indicate that all lines have been parsed. */
320
321 if (str)
322 *saveptr = str;
323
324 result = *saveptr;
325
326 if (*saveptr != NULL) {
327 *saveptr = strpbrk(*saveptr, "\r\n");
328
329 if (*saveptr != NULL) {
330 char *eos = *saveptr;
331
332 if ((*saveptr)[0] == '\r' && (*saveptr)[1] == '\n')
333 (*saveptr)++;
334 (*saveptr)++;
335 if ((*saveptr)[0] == '\0')
336 *saveptr = NULL;
337
338 *eos = '\0';
339 }
340 }
341
342 return result;
343}