blob: f8b486a0d794eb91bdee34c600d81f640bddc097 [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
Pau Espin Pedrol30e01352020-09-21 12:29:41 +0200110 /* Special handling for RTP connections */
Philipp Maier87bd9be2017-08-22 16:35:41 +0200111 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.
Philipp Maier8dc35972021-07-14 11:20:16 +0200135 * \param[out] pdata caller provided memory to store the parsing results.
136 * \param[in] data mgcp message string.
137 * \returns 0 when the status line was complete and parseable, negative (MGCP
138 * cause code) on error. */
Philipp Maier87bd9be2017-08-22 16:35:41 +0200139int mgcp_parse_header(struct mgcp_parse_data *pdata, char *data)
140{
141 int i = 0;
142 char *elem, *save = NULL;
143
144 /*! This function will parse the header part of the received
Philipp Maier8dc35972021-07-14 11:20:16 +0200145 * MGCP message. The parsing results are stored in pdata. */
Philipp Maier87bd9be2017-08-22 16:35:41 +0200146
147 OSMO_ASSERT(data);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200148
149 for (elem = strtok_r(data, " ", &save); elem;
150 elem = strtok_r(NULL, " ", &save)) {
151 switch (i) {
152 case 0:
153 pdata->trans = elem;
154 break;
155 case 1:
Philipp Maier8dc35972021-07-14 11:20:16 +0200156 pdata->epname = elem;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200157 break;
158 case 2:
Pau Espin Pedrol9a345922019-06-26 13:06:30 +0200159 if (strcasecmp("MGCP", elem)) {
Philipp Maier87bd9be2017-08-22 16:35:41 +0200160 LOGP(DLMGCP, LOGL_ERROR,
161 "MGCP header parsing error\n");
Harald Welteabbb6b92017-12-28 13:13:50 +0100162 return -510;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200163 }
164 break;
165 case 3:
Philipp Maier8dc35972021-07-14 11:20:16 +0200166 if (strcmp("1.0", elem))
Harald Welteabbb6b92017-12-28 13:13:50 +0100167 return -528;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200168 break;
169 }
170 i++;
171 }
172
173 if (i != 4) {
174 LOGP(DLMGCP, LOGL_ERROR, "MGCP status line too short.\n");
Harald Welteabbb6b92017-12-28 13:13:50 +0100175 return -510;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200176 }
177
178 return 0;
179}
180
181/*! Extract OSMUX CID from an MGCP parameter line (string).
182 * \param[in] line single parameter line from the MGCP message
Pau Espin Pedrol2b896172019-04-24 13:47:23 +0200183 * \returns OSMUX CID, -1 wildcard, -2 on error */
Philipp Maier87bd9be2017-08-22 16:35:41 +0200184int mgcp_parse_osmux_cid(const char *line)
185{
186 int osmux_cid;
187
Pau Espin Pedrol2b896172019-04-24 13:47:23 +0200188
Pau Espin Pedrolc1bf4692019-05-14 16:23:24 +0200189 if (strcasecmp(line + 2, "Osmux: *") == 0) {
Pau Espin Pedrol2b896172019-04-24 13:47:23 +0200190 LOGP(DLMGCP, LOGL_DEBUG, "Parsed wilcard Osmux CID\n");
191 return -1;
192 }
193
Pau Espin Pedrolc1bf4692019-05-14 16:23:24 +0200194 if (sscanf(line + 2 + 7, "%u", &osmux_cid) != 1) {
Pau Espin Pedrolef6304e2019-04-23 13:24:37 +0200195 LOGP(DLMGCP, LOGL_ERROR, "Failed parsing Osmux in MGCP msg line: %s\n",
196 line);
Pau Espin Pedrol2b896172019-04-24 13:47:23 +0200197 return -2;
Pau Espin Pedrolef6304e2019-04-23 13:24:37 +0200198 }
Philipp Maier87bd9be2017-08-22 16:35:41 +0200199
200 if (osmux_cid > OSMUX_CID_MAX) {
201 LOGP(DLMGCP, LOGL_ERROR, "Osmux ID too large: %u > %u\n",
202 osmux_cid, OSMUX_CID_MAX);
Pau Espin Pedrol2b896172019-04-24 13:47:23 +0200203 return -2;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200204 }
205 LOGP(DLMGCP, LOGL_DEBUG, "bsc-nat offered Osmux CID %u\n", osmux_cid);
206
207 return osmux_cid;
208}
209
210/*! Check MGCP parameter line (string) for plausibility.
211 * \param[in] endp pointer to endpoint (only used for log output)
212 * \param[in] line single parameter line from the MGCP message
213 * \returns 1 when line seems plausible, 0 on error */
214int mgcp_check_param(const struct mgcp_endpoint *endp, const char *line)
215{
216 const size_t line_len = strlen(line);
217 if (line[0] != '\0' && line_len < 2) {
218 LOGP(DLMGCP, LOGL_ERROR,
Philipp Maierc66ab2c2020-06-02 20:55:34 +0200219 "Wrong MGCP option format: '%s' on %s\n",
220 line, endp->name);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200221 return 0;
222 }
223
224 /* FIXME: A couple more checks wouldn't hurt... */
225
226 return 1;
227}
228
229/*! Check if the specified callid seems plausible.
230 * \param[in] endp pointer to endpoint
231 * \param{in] callid to verify
Pau Espin Pedrol06624e12020-09-21 12:18:52 +0200232 * \returns 0 when callid seems plausible, -1 on error */
Philipp Maier87bd9be2017-08-22 16:35:41 +0200233int mgcp_verify_call_id(struct mgcp_endpoint *endp, const char *callid)
234{
235 /*! This function compares the supplied callid with the called that is
236 * stored in the endpoint structure. */
237
238 if (!endp)
239 return -1;
Neels Hofmeyre6d8e912018-08-23 16:36:48 +0200240
241 /* Accept any CallID for "X-Osmo-IGN: C" */
242 if (endp->x_osmo_ign & MGCP_X_OSMO_IGN_CALLID)
243 return 0;
244
Philipp Maier87bd9be2017-08-22 16:35:41 +0200245 if (!callid)
246 return -1;
247 if (!endp->callid)
248 return -1;
249
250 if (strcmp(endp->callid, callid) != 0) {
Pau Espin Pedrol3239f622019-04-24 18:47:46 +0200251 LOGPENDP(endp, DLMGCP, LOGL_ERROR,
252 "CallIDs mismatch: '%s' != '%s'\n",
253 endp->callid, callid);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200254 return -1;
255 }
256
257 return 0;
258}
259
260/*! Check if the specified connection id seems plausible.
261 * \param[in] endp pointer to endpoint
262 * \param{in] connection id to verify
Neels Hofmeyreb72ff02018-09-03 23:00:07 +0200263 * \returns 0 when connection id is valid and exists, an RFC3435 error code on error.
Neels Hofmeyr8a91d2c2018-09-03 22:51:30 +0200264 */
Philipp Maier01d24a32017-11-21 17:26:09 +0100265int mgcp_verify_ci(struct mgcp_endpoint *endp, const char *conn_id)
Philipp Maier87bd9be2017-08-22 16:35:41 +0200266{
Neels Hofmeyreb72ff02018-09-03 23:00:07 +0200267 /* For invalid conn_ids, return 510 "The transaction could not be executed, because some
268 * unspecified protocol error was detected." */
269
Philipp Maier01d24a32017-11-21 17:26:09 +0100270 /* Check for null identifiers */
271 if (!conn_id) {
Pau Espin Pedrol3239f622019-04-24 18:47:46 +0200272 LOGPENDP(endp, DLMGCP, LOGL_ERROR,
273 "invalid ConnectionIdentifier (missing)\n");
Neels Hofmeyreb72ff02018-09-03 23:00:07 +0200274 return 510;
Philipp Maier01d24a32017-11-21 17:26:09 +0100275 }
Philipp Maier87bd9be2017-08-22 16:35:41 +0200276
Philipp Maier01d24a32017-11-21 17:26:09 +0100277 /* Check for empty connection identifiers */
278 if (strlen(conn_id) == 0) {
Pau Espin Pedrol3239f622019-04-24 18:47:46 +0200279 LOGPENDP(endp, DLMGCP, LOGL_ERROR,
280 "invalid ConnectionIdentifier (empty)\n");
Neels Hofmeyreb72ff02018-09-03 23:00:07 +0200281 return 510;
Philipp Maier01d24a32017-11-21 17:26:09 +0100282 }
Philipp Maier87bd9be2017-08-22 16:35:41 +0200283
Philipp Maier01d24a32017-11-21 17:26:09 +0100284 /* Check for over long connection identifiers */
Neels Hofmeyr5336f572018-09-03 22:05:48 +0200285 if (strlen(conn_id) > (MGCP_CONN_ID_MAXLEN-1)) {
Pau Espin Pedrol3239f622019-04-24 18:47:46 +0200286 LOGPENDP(endp, DLMGCP, LOGL_ERROR,
287 "invalid ConnectionIdentifier (too long: %zu > %d) 0x%s\n",
288 strlen(conn_id), MGCP_CONN_ID_MAXLEN-1, conn_id);
Neels Hofmeyreb72ff02018-09-03 23:00:07 +0200289 return 510;
Philipp Maier01d24a32017-11-21 17:26:09 +0100290 }
291
292 /* Check if connection exists */
293 if (mgcp_conn_get(endp, conn_id))
Philipp Maier87bd9be2017-08-22 16:35:41 +0200294 return 0;
295
Pau Espin Pedrol3239f622019-04-24 18:47:46 +0200296 LOGPENDP(endp, DLMGCP, LOGL_ERROR,
297 "no connection found under ConnectionIdentifier 0x%s\n", conn_id);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200298
Neels Hofmeyreb72ff02018-09-03 23:00:07 +0200299 /* When the conn_id was not found, return error code 515 "The transaction refers to an incorrect
300 * connection-id (may have been already deleted)." */
301 return 515;
Philipp Maier87bd9be2017-08-22 16:35:41 +0200302}
303
304/*! Extract individual lines from MCGP message.
305 * \param[in] str MGCP message string, consisting of multiple lines
306 * \param{in] saveptr pointer to next line in str
307 * \returns line, NULL when done */
308char *mgcp_strline(char *str, char **saveptr)
309{
310 char *result;
311
312 /*! The function must be called with *str set to the input string
313 * for the first line. After that saveptr will be initalized.
314 * all consecutive lines are extracted by calling the function
315 * with str set to NULL. When done, the function will return NULL
316 * to indicate that all lines have been parsed. */
317
318 if (str)
319 *saveptr = str;
320
321 result = *saveptr;
322
323 if (*saveptr != NULL) {
324 *saveptr = strpbrk(*saveptr, "\r\n");
325
326 if (*saveptr != NULL) {
327 char *eos = *saveptr;
328
329 if ((*saveptr)[0] == '\r' && (*saveptr)[1] == '\n')
330 (*saveptr)++;
331 (*saveptr)++;
332 if ((*saveptr)[0] == '\0')
333 *saveptr = NULL;
334
335 *eos = '\0';
336 }
337 }
338
339 return result;
340}