blob: d6174df4839686ce322d0b54710104e12d4564e3 [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
184/* Search the endpoint pool for the endpoint that had been selected via the
185 * MGCP message (helper function for mgcp_analyze_header()) */
186static struct mgcp_endpoint *find_endpoint(struct mgcp_config *cfg,
187 const char *mgcp)
188{
189 char *endptr = NULL;
190 unsigned int gw = INT_MAX;
191
192 if (strncmp(mgcp, "ds/e1", 5) == 0)
193 return find_e1_endpoint(cfg, mgcp);
194
Harald Welte33eafe02017-12-28 03:15:27 +0100195 gw = strtoul(mgcp, &endptr, 16);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200196 if (gw > 0 && gw < cfg->trunk.number_endpoints && endptr[0] == '@')
197 return &cfg->trunk.endpoints[gw];
198
199 LOGP(DLMGCP, LOGL_ERROR, "Not able to find the endpoint: '%s'\n", mgcp);
200 return NULL;
201}
202
203/*! Analyze and parse the the hader of an MGCP messeage string.
204 * \param[out] pdata caller provided memory to store the parsing results
205 * \param[in] data mgcp message string
206 * \returns when the status line was complete and transaction_id and
207 * endp out parameters are set, -1 on error */
208int mgcp_parse_header(struct mgcp_parse_data *pdata, char *data)
209{
210 int i = 0;
211 char *elem, *save = NULL;
212
213 /*! This function will parse the header part of the received
214 * MGCP message. The parsing results are stored in pdata.
215 * The function will also automatically search the pool with
216 * available endpoints in order to find an endpoint that matches
217 * the endpoint string in in the header */
218
219 OSMO_ASSERT(data);
220 pdata->trans = "000000";
221
222 for (elem = strtok_r(data, " ", &save); elem;
223 elem = strtok_r(NULL, " ", &save)) {
224 switch (i) {
225 case 0:
226 pdata->trans = elem;
227 break;
228 case 1:
229 pdata->endp = find_endpoint(pdata->cfg, elem);
230 if (!pdata->endp) {
231 LOGP(DLMGCP, LOGL_ERROR,
232 "Unable to find Endpoint `%s'\n", elem);
233 return -1;
234 }
235 break;
236 case 2:
237 if (strcmp("MGCP", elem)) {
238 LOGP(DLMGCP, LOGL_ERROR,
239 "MGCP header parsing error\n");
240 return -1;
241 }
242 break;
243 case 3:
244 if (strcmp("1.0", elem)) {
245 LOGP(DLMGCP, LOGL_ERROR, "MGCP version `%s' "
246 "not supported\n", elem);
247 return -1;
248 }
249 break;
250 }
251 i++;
252 }
253
254 if (i != 4) {
255 LOGP(DLMGCP, LOGL_ERROR, "MGCP status line too short.\n");
256 pdata->trans = "000000";
257 pdata->endp = NULL;
258 return -1;
259 }
260
261 return 0;
262}
263
264/*! Extract OSMUX CID from an MGCP parameter line (string).
265 * \param[in] line single parameter line from the MGCP message
266 * \returns OSMUX CID, -1 on error */
267int mgcp_parse_osmux_cid(const char *line)
268{
269 int osmux_cid;
270
271 if (sscanf(line + 2, "Osmux: %u", &osmux_cid) != 1)
272 return -1;
273
274 if (osmux_cid > OSMUX_CID_MAX) {
275 LOGP(DLMGCP, LOGL_ERROR, "Osmux ID too large: %u > %u\n",
276 osmux_cid, OSMUX_CID_MAX);
277 return -1;
278 }
279 LOGP(DLMGCP, LOGL_DEBUG, "bsc-nat offered Osmux CID %u\n", osmux_cid);
280
281 return osmux_cid;
282}
283
284/*! Check MGCP parameter line (string) for plausibility.
285 * \param[in] endp pointer to endpoint (only used for log output)
286 * \param[in] line single parameter line from the MGCP message
287 * \returns 1 when line seems plausible, 0 on error */
288int mgcp_check_param(const struct mgcp_endpoint *endp, const char *line)
289{
290 const size_t line_len = strlen(line);
291 if (line[0] != '\0' && line_len < 2) {
292 LOGP(DLMGCP, LOGL_ERROR,
293 "Wrong MGCP option format: '%s' on 0x%x\n",
294 line, ENDPOINT_NUMBER(endp));
295 return 0;
296 }
297
298 /* FIXME: A couple more checks wouldn't hurt... */
299
300 return 1;
301}
302
303/*! Check if the specified callid seems plausible.
304 * \param[in] endp pointer to endpoint
305 * \param{in] callid to verify
306 * \returns 1 when callid seems plausible, 0 on error */
307int mgcp_verify_call_id(struct mgcp_endpoint *endp, const char *callid)
308{
309 /*! This function compares the supplied callid with the called that is
310 * stored in the endpoint structure. */
311
312 if (!endp)
313 return -1;
314 if (!callid)
315 return -1;
316 if (!endp->callid)
317 return -1;
318
319 if (strcmp(endp->callid, callid) != 0) {
320 LOGP(DLMGCP, LOGL_ERROR,
Philipp Maier230e4fc2017-11-28 09:38:45 +0100321 "endpoint:0x%x CallIDs does not match '%s' != '%s'\n",
Philipp Maier87bd9be2017-08-22 16:35:41 +0200322 ENDPOINT_NUMBER(endp), endp->callid, callid);
323 return -1;
324 }
325
326 return 0;
327}
328
329/*! Check if the specified connection id seems plausible.
330 * \param[in] endp pointer to endpoint
331 * \param{in] connection id to verify
332 * \returns 1 when connection id seems plausible, 0 on error */
Philipp Maier01d24a32017-11-21 17:26:09 +0100333int mgcp_verify_ci(struct mgcp_endpoint *endp, const char *conn_id)
Philipp Maier87bd9be2017-08-22 16:35:41 +0200334{
Philipp Maier01d24a32017-11-21 17:26:09 +0100335 /* Check for null identifiers */
336 if (!conn_id) {
337 LOGP(DLMGCP, LOGL_ERROR,
Philipp Maier230e4fc2017-11-28 09:38:45 +0100338 "endpoint:0x%x invalid ConnectionIdentifier (missing)\n",
Philipp Maier01d24a32017-11-21 17:26:09 +0100339 ENDPOINT_NUMBER(endp));
Philipp Maier87bd9be2017-08-22 16:35:41 +0200340 return -1;
Philipp Maier01d24a32017-11-21 17:26:09 +0100341 }
Philipp Maier87bd9be2017-08-22 16:35:41 +0200342
Philipp Maier01d24a32017-11-21 17:26:09 +0100343 /* Check for empty connection identifiers */
344 if (strlen(conn_id) == 0) {
345 LOGP(DLMGCP, LOGL_ERROR,
Philipp Maier230e4fc2017-11-28 09:38:45 +0100346 "endpoint:0x%x invalid ConnectionIdentifier (empty)\n",
Philipp Maier01d24a32017-11-21 17:26:09 +0100347 ENDPOINT_NUMBER(endp));
348 return -1;
349 }
Philipp Maier87bd9be2017-08-22 16:35:41 +0200350
Philipp Maier01d24a32017-11-21 17:26:09 +0100351 /* Check for over long connection identifiers */
352 if (strlen(conn_id) > MGCP_CONN_ID_LENGTH) {
353 LOGP(DLMGCP, LOGL_ERROR,
Philipp Maier230e4fc2017-11-28 09:38:45 +0100354 "endpoint:0x%x invalid ConnectionIdentifier (too long) 0x%s\n",
Philipp Maier01d24a32017-11-21 17:26:09 +0100355 ENDPOINT_NUMBER(endp), conn_id);
356 return -1;
357 }
358
359 /* Check if connection exists */
360 if (mgcp_conn_get(endp, conn_id))
Philipp Maier87bd9be2017-08-22 16:35:41 +0200361 return 0;
362
363 LOGP(DLMGCP, LOGL_ERROR,
Philipp Maier230e4fc2017-11-28 09:38:45 +0100364 "endpoint:0x%x no connection found under ConnectionIdentifier 0x%s\n",
Philipp Maier01d24a32017-11-21 17:26:09 +0100365 ENDPOINT_NUMBER(endp), conn_id);
Philipp Maier87bd9be2017-08-22 16:35:41 +0200366
367 return -1;
368}
369
370/*! Extract individual lines from MCGP message.
371 * \param[in] str MGCP message string, consisting of multiple lines
372 * \param{in] saveptr pointer to next line in str
373 * \returns line, NULL when done */
374char *mgcp_strline(char *str, char **saveptr)
375{
376 char *result;
377
378 /*! The function must be called with *str set to the input string
379 * for the first line. After that saveptr will be initalized.
380 * all consecutive lines are extracted by calling the function
381 * with str set to NULL. When done, the function will return NULL
382 * to indicate that all lines have been parsed. */
383
384 if (str)
385 *saveptr = str;
386
387 result = *saveptr;
388
389 if (*saveptr != NULL) {
390 *saveptr = strpbrk(*saveptr, "\r\n");
391
392 if (*saveptr != NULL) {
393 char *eos = *saveptr;
394
395 if ((*saveptr)[0] == '\r' && (*saveptr)[1] == '\n')
396 (*saveptr)++;
397 (*saveptr)++;
398 if ((*saveptr)[0] == '\0')
399 *saveptr = NULL;
400
401 *eos = '\0';
402 }
403 }
404
405 return result;
406}