blob: 4242d3d92bc3f94c757f59e3fc93e68f5b05f9ca [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 Maier87bd9be2017-08-22 16:35:41 +020034
35/*! Display an mgcp message on the log output.
36 * \param[in] message mgcp message string
37 * \param[in] len message mgcp message string length
38 * \param[in] preamble string to display in logtext in front of each line */
39void mgcp_disp_msg(unsigned char *message, unsigned int len, char *preamble)
40{
41 unsigned char line[80];
42 unsigned char *ptr;
43 unsigned int consumed = 0;
44 unsigned int consumed_line = 0;
45 unsigned int line_count = 0;
46
47 if (!log_check_level(DLMGCP, LOGL_DEBUG))
48 return;
49
50 while (1) {
51 memset(line, 0, sizeof(line));
52 ptr = line;
53 consumed_line = 0;
54 do {
55 if (*message != '\n' && *message != '\r') {
56 *ptr = *message;
57 ptr++;
58 }
59 message++;
60 consumed++;
61 consumed_line++;
62 } while (*message != '\n' && consumed < len
63 && consumed_line < sizeof(line));
64
65 if (strlen((const char *)line)) {
66 LOGP(DLMGCP, LOGL_DEBUG, "%s: line #%02u: %s\n",
67 preamble, line_count, line);
68 line_count++;
69 }
70
71 if (consumed >= len)
72 return;
73 }
74}
75
76/*! Parse connection mode.
77 * \param[in] mode as string (recvonly, sendrecv, sendonly or loopback)
78 * \param[in] endp pointer to endpoint (only used for log output)
79 * \param[out] associated connection to be modified accordingly
80 * \returns 0 on success, -1 on error */
81int mgcp_parse_conn_mode(const char *mode, struct mgcp_endpoint *endp,
82 struct mgcp_conn *conn)
83{
84 int ret = 0;
85
86 if (!mode) {
Pau Espin Pedrol3239f622019-04-24 18:47:46 +020087 LOGPCONN(conn, DLMGCP, LOGL_ERROR,
88 "missing connection mode\n");
Philipp Maier87bd9be2017-08-22 16:35:41 +020089 return -1;
90 }
91 if (!conn)
92 return -1;
93 if (!endp)
94 return -1;
95
Pau Espin Pedrol17058482019-06-26 12:23:02 +020096 if (strcasecmp(mode, "recvonly") == 0)
Philipp Maier87bd9be2017-08-22 16:35:41 +020097 conn->mode = MGCP_CONN_RECV_ONLY;
Pau Espin Pedrol17058482019-06-26 12:23:02 +020098 else if (strcasecmp(mode, "sendrecv") == 0)
Philipp Maier87bd9be2017-08-22 16:35:41 +020099 conn->mode = MGCP_CONN_RECV_SEND;
Pau Espin Pedrol17058482019-06-26 12:23:02 +0200100 else if (strcasecmp(mode, "sendonly") == 0)
Philipp Maier87bd9be2017-08-22 16:35:41 +0200101 conn->mode = MGCP_CONN_SEND_ONLY;
Pau Espin Pedrol17058482019-06-26 12:23:02 +0200102 else if (strcasecmp(mode, "loopback") == 0)
Philipp Maier87bd9be2017-08-22 16:35:41 +0200103 conn->mode = MGCP_CONN_LOOPBACK;
104 else {
Pau Espin Pedrol3239f622019-04-24 18:47:46 +0200105 LOGPCONN(conn, DLMGCP, LOGL_ERROR,
106 "unknown connection mode: '%s'\n", mode);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200107 ret = -1;
108 }
109
110 /* Special handling für RTP connections */
111 if (conn->type == MGCP_CONN_TYPE_RTP) {
112 conn->u.rtp.end.output_enabled =
113 conn->mode & MGCP_CONN_SEND_ONLY ? 1 : 0;
114 }
115
Pau Espin Pedrol3239f622019-04-24 18:47:46 +0200116 LOGPENDP(endp, DLMGCP, LOGL_DEBUG, "conn:%s\n", mgcp_conn_dump(conn));
Philipp Maier87bd9be2017-08-22 16:35:41 +0200117
Pau Espin Pedrol3239f622019-04-24 18:47:46 +0200118 LOGPCONN(conn, DLMGCP, LOGL_DEBUG, "connection mode '%s' %d\n",
119 mode, conn->mode);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200120
121 /* Special handling für RTP connections */
122 if (conn->type == MGCP_CONN_TYPE_RTP) {
Pau Espin Pedrol3239f622019-04-24 18:47:46 +0200123 LOGPCONN(conn, DLMGCP, LOGL_DEBUG, "output_enabled %d\n",
124 conn->u.rtp.end.output_enabled);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200125 }
126
127 /* The VTY might change the connection mode at any time, so we have
128 * to hold a copy of the original connection mode */
129 conn->mode_orig = conn->mode;
130
131 return ret;
132}
133
Philipp Maier87bd9be2017-08-22 16:35:41 +0200134/*! Analyze and parse the the hader of an MGCP messeage string.
135 * \param[out] pdata caller provided memory to store the parsing results
136 * \param[in] data mgcp message string
137 * \returns when the status line was complete and transaction_id and
138 * endp out parameters are set, -1 on error */
139int mgcp_parse_header(struct mgcp_parse_data *pdata, char *data)
140{
141 int i = 0;
142 char *elem, *save = NULL;
Philipp Maiera49e32a2018-02-01 18:18:50 +0100143 int cause;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200144
145 /*! This function will parse the header part of the received
146 * MGCP message. The parsing results are stored in pdata.
147 * The function will also automatically search the pool with
148 * available endpoints in order to find an endpoint that matches
149 * the endpoint string in in the header */
150
151 OSMO_ASSERT(data);
152 pdata->trans = "000000";
153
154 for (elem = strtok_r(data, " ", &save); elem;
155 elem = strtok_r(NULL, " ", &save)) {
156 switch (i) {
157 case 0:
158 pdata->trans = elem;
159 break;
160 case 1:
Philipp Maierc66ab2c2020-06-02 20:55:34 +0200161 pdata->endp = mgcp_endp_by_name(&cause, elem, pdata->cfg);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200162 if (!pdata->endp) {
163 LOGP(DLMGCP, LOGL_ERROR,
164 "Unable to find Endpoint `%s'\n", elem);
Neels Hofmeyr0a89e922018-08-20 22:39:53 +0200165 OSMO_ASSERT(cause < 0);
Philipp Maiera49e32a2018-02-01 18:18:50 +0100166 return cause;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200167 }
168 break;
169 case 2:
Pau Espin Pedrol9a345922019-06-26 13:06:30 +0200170 if (strcasecmp("MGCP", elem)) {
Philipp Maier87bd9be2017-08-22 16:35:41 +0200171 LOGP(DLMGCP, LOGL_ERROR,
172 "MGCP header parsing error\n");
Harald Welteabbb6b92017-12-28 13:13:50 +0100173 return -510;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200174 }
175 break;
176 case 3:
177 if (strcmp("1.0", elem)) {
178 LOGP(DLMGCP, LOGL_ERROR, "MGCP version `%s' "
179 "not supported\n", elem);
Harald Welteabbb6b92017-12-28 13:13:50 +0100180 return -528;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200181 }
182 break;
183 }
184 i++;
185 }
186
187 if (i != 4) {
188 LOGP(DLMGCP, LOGL_ERROR, "MGCP status line too short.\n");
189 pdata->trans = "000000";
190 pdata->endp = NULL;
Harald Welteabbb6b92017-12-28 13:13:50 +0100191 return -510;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200192 }
193
194 return 0;
195}
196
197/*! Extract OSMUX CID from an MGCP parameter line (string).
198 * \param[in] line single parameter line from the MGCP message
Pau Espin Pedrol2b896172019-04-24 13:47:23 +0200199 * \returns OSMUX CID, -1 wildcard, -2 on error */
Philipp Maier87bd9be2017-08-22 16:35:41 +0200200int mgcp_parse_osmux_cid(const char *line)
201{
202 int osmux_cid;
203
Pau Espin Pedrol2b896172019-04-24 13:47:23 +0200204
Pau Espin Pedrolc1bf4692019-05-14 16:23:24 +0200205 if (strcasecmp(line + 2, "Osmux: *") == 0) {
Pau Espin Pedrol2b896172019-04-24 13:47:23 +0200206 LOGP(DLMGCP, LOGL_DEBUG, "Parsed wilcard Osmux CID\n");
207 return -1;
208 }
209
Pau Espin Pedrolc1bf4692019-05-14 16:23:24 +0200210 if (sscanf(line + 2 + 7, "%u", &osmux_cid) != 1) {
Pau Espin Pedrolef6304e2019-04-23 13:24:37 +0200211 LOGP(DLMGCP, LOGL_ERROR, "Failed parsing Osmux in MGCP msg line: %s\n",
212 line);
Pau Espin Pedrol2b896172019-04-24 13:47:23 +0200213 return -2;
Pau Espin Pedrolef6304e2019-04-23 13:24:37 +0200214 }
Philipp Maier87bd9be2017-08-22 16:35:41 +0200215
216 if (osmux_cid > OSMUX_CID_MAX) {
217 LOGP(DLMGCP, LOGL_ERROR, "Osmux ID too large: %u > %u\n",
218 osmux_cid, OSMUX_CID_MAX);
Pau Espin Pedrol2b896172019-04-24 13:47:23 +0200219 return -2;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200220 }
221 LOGP(DLMGCP, LOGL_DEBUG, "bsc-nat offered Osmux CID %u\n", osmux_cid);
222
223 return osmux_cid;
224}
225
226/*! Check MGCP parameter line (string) for plausibility.
227 * \param[in] endp pointer to endpoint (only used for log output)
228 * \param[in] line single parameter line from the MGCP message
229 * \returns 1 when line seems plausible, 0 on error */
230int mgcp_check_param(const struct mgcp_endpoint *endp, const char *line)
231{
232 const size_t line_len = strlen(line);
233 if (line[0] != '\0' && line_len < 2) {
234 LOGP(DLMGCP, LOGL_ERROR,
Philipp Maierc66ab2c2020-06-02 20:55:34 +0200235 "Wrong MGCP option format: '%s' on %s\n",
236 line, endp->name);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200237 return 0;
238 }
239
240 /* FIXME: A couple more checks wouldn't hurt... */
241
242 return 1;
243}
244
245/*! Check if the specified callid seems plausible.
246 * \param[in] endp pointer to endpoint
247 * \param{in] callid to verify
Pau Espin Pedrol06624e12020-09-21 12:18:52 +0200248 * \returns 0 when callid seems plausible, -1 on error */
Philipp Maier87bd9be2017-08-22 16:35:41 +0200249int mgcp_verify_call_id(struct mgcp_endpoint *endp, const char *callid)
250{
251 /*! This function compares the supplied callid with the called that is
252 * stored in the endpoint structure. */
253
254 if (!endp)
255 return -1;
Neels Hofmeyre6d8e912018-08-23 16:36:48 +0200256
257 /* Accept any CallID for "X-Osmo-IGN: C" */
258 if (endp->x_osmo_ign & MGCP_X_OSMO_IGN_CALLID)
259 return 0;
260
Philipp Maier87bd9be2017-08-22 16:35:41 +0200261 if (!callid)
262 return -1;
263 if (!endp->callid)
264 return -1;
265
266 if (strcmp(endp->callid, callid) != 0) {
Pau Espin Pedrol3239f622019-04-24 18:47:46 +0200267 LOGPENDP(endp, DLMGCP, LOGL_ERROR,
268 "CallIDs mismatch: '%s' != '%s'\n",
269 endp->callid, callid);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200270 return -1;
271 }
272
273 return 0;
274}
275
276/*! Check if the specified connection id seems plausible.
277 * \param[in] endp pointer to endpoint
278 * \param{in] connection id to verify
Neels Hofmeyreb72ff02018-09-03 23:00:07 +0200279 * \returns 0 when connection id is valid and exists, an RFC3435 error code on error.
Neels Hofmeyr8a91d2c2018-09-03 22:51:30 +0200280 */
Philipp Maier01d24a32017-11-21 17:26:09 +0100281int mgcp_verify_ci(struct mgcp_endpoint *endp, const char *conn_id)
Philipp Maier87bd9be2017-08-22 16:35:41 +0200282{
Neels Hofmeyreb72ff02018-09-03 23:00:07 +0200283 /* For invalid conn_ids, return 510 "The transaction could not be executed, because some
284 * unspecified protocol error was detected." */
285
Philipp Maier01d24a32017-11-21 17:26:09 +0100286 /* Check for null identifiers */
287 if (!conn_id) {
Pau Espin Pedrol3239f622019-04-24 18:47:46 +0200288 LOGPENDP(endp, DLMGCP, LOGL_ERROR,
289 "invalid ConnectionIdentifier (missing)\n");
Neels Hofmeyreb72ff02018-09-03 23:00:07 +0200290 return 510;
Philipp Maier01d24a32017-11-21 17:26:09 +0100291 }
Philipp Maier87bd9be2017-08-22 16:35:41 +0200292
Philipp Maier01d24a32017-11-21 17:26:09 +0100293 /* Check for empty connection identifiers */
294 if (strlen(conn_id) == 0) {
Pau Espin Pedrol3239f622019-04-24 18:47:46 +0200295 LOGPENDP(endp, DLMGCP, LOGL_ERROR,
296 "invalid ConnectionIdentifier (empty)\n");
Neels Hofmeyreb72ff02018-09-03 23:00:07 +0200297 return 510;
Philipp Maier01d24a32017-11-21 17:26:09 +0100298 }
Philipp Maier87bd9be2017-08-22 16:35:41 +0200299
Philipp Maier01d24a32017-11-21 17:26:09 +0100300 /* Check for over long connection identifiers */
Neels Hofmeyr5336f572018-09-03 22:05:48 +0200301 if (strlen(conn_id) > (MGCP_CONN_ID_MAXLEN-1)) {
Pau Espin Pedrol3239f622019-04-24 18:47:46 +0200302 LOGPENDP(endp, DLMGCP, LOGL_ERROR,
303 "invalid ConnectionIdentifier (too long: %zu > %d) 0x%s\n",
304 strlen(conn_id), MGCP_CONN_ID_MAXLEN-1, conn_id);
Neels Hofmeyreb72ff02018-09-03 23:00:07 +0200305 return 510;
Philipp Maier01d24a32017-11-21 17:26:09 +0100306 }
307
308 /* Check if connection exists */
309 if (mgcp_conn_get(endp, conn_id))
Philipp Maier87bd9be2017-08-22 16:35:41 +0200310 return 0;
311
Pau Espin Pedrol3239f622019-04-24 18:47:46 +0200312 LOGPENDP(endp, DLMGCP, LOGL_ERROR,
313 "no connection found under ConnectionIdentifier 0x%s\n", conn_id);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200314
Neels Hofmeyreb72ff02018-09-03 23:00:07 +0200315 /* When the conn_id was not found, return error code 515 "The transaction refers to an incorrect
316 * connection-id (may have been already deleted)." */
317 return 515;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200318}
319
320/*! Extract individual lines from MCGP message.
321 * \param[in] str MGCP message string, consisting of multiple lines
322 * \param{in] saveptr pointer to next line in str
323 * \returns line, NULL when done */
324char *mgcp_strline(char *str, char **saveptr)
325{
326 char *result;
327
328 /*! The function must be called with *str set to the input string
329 * for the first line. After that saveptr will be initalized.
330 * all consecutive lines are extracted by calling the function
331 * with str set to NULL. When done, the function will return NULL
332 * to indicate that all lines have been parsed. */
333
334 if (str)
335 *saveptr = str;
336
337 result = *saveptr;
338
339 if (*saveptr != NULL) {
340 *saveptr = strpbrk(*saveptr, "\r\n");
341
342 if (*saveptr != NULL) {
343 char *eos = *saveptr;
344
345 if ((*saveptr)[0] == '\r' && (*saveptr)[1] == '\n')
346 (*saveptr)++;
347 (*saveptr)++;
348 if ((*saveptr)[0] == '\0')
349 *saveptr = NULL;
350
351 *eos = '\0';
352 }
353 }
354
355 return result;
356}