blob: bd47f8c42db62b2a219c9cef267f4026a7d421a6 [file] [log] [blame]
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +01001/* A Media Gateway Control Protocol Media Gateway: RFC 3435 */
2/* The protocol implementation */
3
4/*
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +01005 * (C) 2009-2010 by Holger Hans Peter Freyther <zecke@selfish.org>
6 * (C) 2009-2010 by On-Waves
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +01007 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 *
23 */
24
25#include <ctype.h>
26#include <stdio.h>
27#include <stdlib.h>
28#include <string.h>
29#include <time.h>
30#include <limits.h>
31#include <unistd.h>
32
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +010033#include <openbsc/debug.h>
34#include <openbsc/msgb.h>
35#include <openbsc/talloc.h>
36#include <openbsc/gsm_data.h>
37#include <openbsc/select.h>
38#include <openbsc/mgcp.h>
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +010039#include <openbsc/mgcp_internal.h>
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +010040
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +010041enum mgcp_connection_mode {
42 MGCP_CONN_NONE = 0,
43 MGCP_CONN_RECV_ONLY = 1,
44 MGCP_CONN_SEND_ONLY = 2,
45 MGCP_CONN_RECV_SEND = MGCP_CONN_RECV_ONLY | MGCP_CONN_SEND_ONLY,
46};
47
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +010048/**
49 * Macro for tokenizing MGCP messages and SDP in one go.
50 *
51 */
52#define MSG_TOKENIZE_START \
53 line_start = 0; \
54 for (i = 0; i < msgb_l3len(msg); ++i) { \
55 /* we have a line end */ \
56 if (msg->l3h[i] == '\n') { \
57 /* skip the first line */ \
58 if (line_start == 0) { \
59 line_start = i + 1; \
60 continue; \
61 } \
62 \
63 /* check if we have a proper param */ \
64 if (i - line_start == 1 && msg->l3h[line_start] == '\r') { \
65 } else if (i - line_start > 2 \
66 && islower(msg->l3h[line_start]) \
67 && msg->l3h[line_start + 1] == '=') { \
68 } else if (i - line_start < 3 \
69 || msg->l3h[line_start + 1] != ':' \
70 || msg->l3h[line_start + 2] != ' ') \
71 goto error; \
72 \
73 msg->l3h[i] = '\0'; \
74 if (msg->l3h[i-1] == '\r') \
75 msg->l3h[i-1] = '\0';
76
77#define MSG_TOKENIZE_END \
78 line_start = i + 1; \
79 } \
80 }
81
82
83struct mgcp_msg_ptr {
84 unsigned int start;
85 unsigned int length;
86};
87
88struct mgcp_request {
89 char *name;
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +010090 struct msgb *(*handle_request) (struct mgcp_config *cfg, struct msgb *msg);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +010091 char *debug_name;
92};
93
94#define MGCP_REQUEST(NAME, REQ, DEBUG_NAME) \
95 { .name = NAME, .handle_request = REQ, .debug_name = DEBUG_NAME },
96
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +010097static struct msgb *handle_audit_endpoint(struct mgcp_config *cfg, struct msgb *msg);
98static struct msgb *handle_create_con(struct mgcp_config *cfg, struct msgb *msg);
99static struct msgb *handle_delete_con(struct mgcp_config *cfg, struct msgb *msg);
100static struct msgb *handle_modify_con(struct mgcp_config *cfg, struct msgb *msg);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100101
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100102static int generate_call_id(struct mgcp_config *cfg)
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100103{
104 int i;
105
106 /* use the call id */
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100107 ++cfg->last_call_id;
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100108
109 /* handle wrap around */
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100110 if (cfg->last_call_id == CI_UNUSED)
111 ++cfg->last_call_id;
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100112
113 /* callstack can only be of size number_of_endpoints */
114 /* verify that the call id is free, e.g. in case of overrun */
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100115 for (i = 1; i < cfg->number_endpoints; ++i)
116 if (cfg->endpoints[i].ci == cfg->last_call_id)
117 return generate_call_id(cfg);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100118
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100119 return cfg->last_call_id;
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100120}
121
122/* FIXIME/TODO: need to have a list of pending transactions and check that */
123static unsigned int generate_transaction_id()
124{
125 return abs(rand());
126}
127
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100128/*
129 * array of function pointers for handling various
130 * messages. In the future this might be binary sorted
131 * for performance reasons.
132 */
133static const struct mgcp_request mgcp_requests [] = {
134 MGCP_REQUEST("AUEP", handle_audit_endpoint, "AuditEndpoint")
135 MGCP_REQUEST("CRCX", handle_create_con, "CreateConnection")
136 MGCP_REQUEST("DLCX", handle_delete_con, "DeleteConnection")
137 MGCP_REQUEST("MDCX", handle_modify_con, "ModifiyConnection")
138};
139
Holger Hans Peter Freyther62e836c2010-02-03 11:03:45 +0100140static struct msgb *mgcp_msgb_alloc(void)
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100141{
Holger Hans Peter Freyther62e836c2010-02-03 11:03:45 +0100142 struct msgb *msg;
143 msg = msgb_alloc_headroom(4096, 128, "MGCP msg");
144 if (!msg)
145 LOGP(DMGCP, LOGL_ERROR, "Failed to msgb for MGCP data.\n");
146
147 return msg;
148}
149
Holger Hans Peter Freyther6414a0c2010-02-21 10:50:46 +0100150struct msgb *mgcp_create_response_with_data(int code, const char *msg, const char *trans,
Holger Hans Peter Freyther62e836c2010-02-03 11:03:45 +0100151 const char *data)
152{
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100153 int len;
Holger Hans Peter Freyther62e836c2010-02-03 11:03:45 +0100154 struct msgb *res;
155
156 res = mgcp_msgb_alloc();
157 if (!res)
158 return NULL;
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100159
160 if (data) {
Holger Hans Peter Freyther62e836c2010-02-03 11:03:45 +0100161 len = snprintf((char *) res->data, 2048, "%d %s\n%s", code, trans, data);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100162 } else {
Holger Hans Peter Freyther62e836c2010-02-03 11:03:45 +0100163 len = snprintf((char *) res->data, 2048, "%d %s\n", code, trans);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100164 }
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100165
Holger Hans Peter Freyther62e836c2010-02-03 11:03:45 +0100166 res->l2h = msgb_put(res, len);
Holger Hans Peter Freyther63f2db22010-02-26 13:30:57 +0100167 LOGP(DMGCP, LOGL_DEBUG, "Sending response: code: %d for '%s'\n", code, res->l2h);
Holger Hans Peter Freyther62e836c2010-02-03 11:03:45 +0100168 return res;
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100169}
170
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100171static struct msgb *create_response(int code, const char *msg, const char *trans)
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100172{
Holger Hans Peter Freyther6414a0c2010-02-21 10:50:46 +0100173 return mgcp_create_response_with_data(code, msg, trans, NULL);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100174}
175
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100176static struct msgb *create_response_with_sdp(struct mgcp_endpoint *endp,
177 const char *msg, const char *trans_id)
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100178{
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100179 const char *addr = endp->cfg->local_ip;
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100180 char sdp_record[4096];
181
182 if (!addr)
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100183 addr = endp->cfg->source_addr;
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100184
185 snprintf(sdp_record, sizeof(sdp_record) - 1,
186 "I: %d\n\n"
187 "v=0\r\n"
188 "c=IN IP4 %s\r\n"
189 "m=audio %d RTP/AVP %d\r\n"
190 "a=rtpmap:%d %s\r\n",
191 endp->ci, addr, endp->rtp_port,
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100192 endp->cfg->audio_payload, endp->cfg->audio_payload,
193 endp->cfg->audio_name);
Holger Hans Peter Freyther6414a0c2010-02-21 10:50:46 +0100194 return mgcp_create_response_with_data(200, msg, trans_id, sdp_record);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100195}
196
197/* send a static record */
Holger Hans Peter Freyther62e836c2010-02-03 11:03:45 +0100198struct msgb *mgcp_create_rsip(void)
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100199{
Holger Hans Peter Freyther62e836c2010-02-03 11:03:45 +0100200 struct msgb *msg;
201 int len;
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100202
Holger Hans Peter Freyther62e836c2010-02-03 11:03:45 +0100203 msg = mgcp_msgb_alloc();
204 if (!msg)
205 return NULL;
206
207 len = snprintf((char *) msg->data, 2048,
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100208 "RSIP %u *@mgw MGCP 1.0\n"
209 "RM: restart\n", generate_transaction_id());
Holger Hans Peter Freyther62e836c2010-02-03 11:03:45 +0100210 msg->l2h = msgb_put(msg, len);
211 return msg;
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100212}
213
214/*
215 * handle incoming messages:
216 * - this can be a command (four letters, space, transaction id)
217 * - or a response (three numbers, space, transaction id)
218 */
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100219struct msgb *mgcp_handle_message(struct mgcp_config *cfg, struct msgb *msg)
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100220{
221 int code;
Holger Hans Peter Freyther62e836c2010-02-03 11:03:45 +0100222 struct msgb *resp = NULL;
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100223
224 if (msg->len < 4) {
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100225 LOGP(DMGCP, LOGL_ERROR, "mgs too short: %d\n", msg->len);
Holger Hans Peter Freyther62e836c2010-02-03 11:03:45 +0100226 return NULL;
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100227 }
228
229 /* attempt to treat it as a response */
230 if (sscanf((const char *)&msg->data[0], "%3d %*s", &code) == 1) {
Holger Hans Peter Freyther63f2db22010-02-26 13:30:57 +0100231 LOGP(DMGCP, LOGL_DEBUG, "Response: Code: %d\n", code);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100232 } else {
233 int i, handled = 0;
234 msg->l3h = &msg->l2h[4];
235 for (i = 0; i < ARRAY_SIZE(mgcp_requests); ++i)
236 if (strncmp(mgcp_requests[i].name, (const char *) &msg->data[0], 4) == 0) {
237 handled = 1;
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100238 resp = mgcp_requests[i].handle_request(cfg, msg);
Holger Hans Peter Freyther62e836c2010-02-03 11:03:45 +0100239 break;
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100240 }
241 if (!handled) {
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100242 LOGP(DMGCP, LOGL_NOTICE, "MSG with type: '%.4s' not handled\n", &msg->data[0]);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100243 }
244 }
245
Holger Hans Peter Freyther62e836c2010-02-03 11:03:45 +0100246 return resp;
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100247}
248
249/* string tokenizer for the poor */
250static int find_msg_pointers(struct msgb *msg, struct mgcp_msg_ptr *ptrs, int ptrs_length)
251{
252 int i, found = 0;
253
254 int whitespace = 1;
255 for (i = 0; i < msgb_l3len(msg) && ptrs_length > 0; ++i) {
256 /* if we have a space we found an end */
257 if (msg->l3h[i] == ' ' || msg->l3h[i] == '\r' || msg->l3h[i] == '\n') {
258 if (!whitespace) {
259 ++found;
260 whitespace = 1;
261 ptrs->length = i - ptrs->start - 1;
262 ++ptrs;
263 --ptrs_length;
264 } else {
265 /* skip any number of whitespace */
266 }
267
268 /* line end... stop */
269 if (msg->l3h[i] == '\r' || msg->l3h[i] == '\n')
270 break;
271 } else if (msg->l3h[i] == '\r' || msg->l3h[i] == '\n') {
272 /* line end, be done */
273 break;
274 } else if (whitespace) {
275 whitespace = 0;
276 ptrs->start = i;
277 }
278 }
279
280 if (ptrs_length == 0)
281 return -1;
282 return found;
283}
284
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100285static struct mgcp_endpoint *find_endpoint(struct mgcp_config *cfg, const char *mgcp)
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100286{
287 char *endptr = NULL;
288 unsigned int gw = INT_MAX;
289
290 gw = strtoul(mgcp, &endptr, 16);
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100291 if (gw == 0 || gw >= cfg->number_endpoints || strcmp(endptr, "@mgw") != 0) {
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100292 LOGP(DMGCP, LOGL_ERROR, "Not able to find endpoint: '%s'\n", mgcp);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100293 return NULL;
294 }
295
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100296 return &cfg->endpoints[gw];
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100297}
298
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100299static int analyze_header(struct mgcp_config *cfg, struct msgb *msg,
300 struct mgcp_msg_ptr *ptr, int size,
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100301 const char **transaction_id, struct mgcp_endpoint **endp)
302{
303 int found;
304
Holger Hans Peter Freythera820c5f2010-02-26 13:32:55 +0100305 *transaction_id = "000000";
306
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100307 if (size < 3) {
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100308 LOGP(DMGCP, LOGL_ERROR, "Not enough space in ptr\n");
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100309 return -1;
310 }
311
312 found = find_msg_pointers(msg, ptr, size);
313
Holger Hans Peter Freythera820c5f2010-02-26 13:32:55 +0100314 if (found <= 3) {
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100315 LOGP(DMGCP, LOGL_ERROR, "Gateway: Not enough params. Found: %d\n", found);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100316 return -1;
317 }
318
319 /*
320 * replace the space with \0. the main method gurantess that
321 * we still have + 1 for null termination
322 */
323 msg->l3h[ptr[3].start + ptr[3].length + 1] = '\0';
324 msg->l3h[ptr[2].start + ptr[2].length + 1] = '\0';
325 msg->l3h[ptr[1].start + ptr[1].length + 1] = '\0';
326 msg->l3h[ptr[0].start + ptr[0].length + 1] = '\0';
327
328 if (strncmp("1.0", (const char *)&msg->l3h[ptr[3].start], 3) != 0
329 || strncmp("MGCP", (const char *)&msg->l3h[ptr[2].start], 4) != 0) {
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100330 LOGP(DMGCP, LOGL_ERROR, "Wrong MGCP version. Not handling: '%s' '%s'\n",
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100331 (const char *)&msg->l3h[ptr[3].start],
332 (const char *)&msg->l3h[ptr[2].start]);
333 return -1;
334 }
335
336 *transaction_id = (const char *)&msg->l3h[ptr[0].start];
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100337 *endp = find_endpoint(cfg, (const char *)&msg->l3h[ptr[1].start]);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100338 return *endp == NULL;
339}
340
341static int verify_call_id(const struct mgcp_endpoint *endp,
342 const char *callid)
343{
344 if (strcmp(endp->callid, callid) != 0) {
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100345 LOGP(DMGCP, LOGL_ERROR, "CallIDs does not match on 0x%x. '%s' != '%s'\n",
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100346 ENDPOINT_NUMBER(endp), endp->callid, callid);
347 return -1;
348 }
349
350 return 0;
351}
352
353static int verify_ci(const struct mgcp_endpoint *endp,
354 const char *ci)
355{
356 if (atoi(ci) != endp->ci) {
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100357 LOGP(DMGCP, LOGL_ERROR, "ConnectionIdentifiers do not match on 0x%x. %d != %s\n",
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100358 ENDPOINT_NUMBER(endp), endp->ci, ci);
359 return -1;
360 }
361
362 return 0;
363}
364
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100365static struct msgb *handle_audit_endpoint(struct mgcp_config *cfg, struct msgb *msg)
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100366{
367 struct mgcp_msg_ptr data_ptrs[6];
368 int found, response;
369 const char *trans_id;
370 struct mgcp_endpoint *endp;
371
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100372 found = analyze_header(cfg, msg, data_ptrs, ARRAY_SIZE(data_ptrs), &trans_id, &endp);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100373 if (found != 0)
374 response = 500;
375 else
376 response = 200;
377
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100378 return create_response(response, "AUEP", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100379}
380
381static int parse_conn_mode(const char* msg, int *conn_mode)
382{
383 int ret = 0;
384 if (strcmp(msg, "recvonly") == 0)
385 *conn_mode = MGCP_CONN_RECV_ONLY;
386 else if (strcmp(msg, "sendrecv") == 0)
387 *conn_mode = MGCP_CONN_RECV_SEND;
388 else {
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100389 LOGP(DMGCP, LOGL_ERROR, "Unknown connection mode: '%s'\n", msg);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100390 ret = -1;
391 }
392
393 return ret;
394}
395
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100396static struct msgb *handle_create_con(struct mgcp_config *cfg, struct msgb *msg)
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100397{
398 struct mgcp_msg_ptr data_ptrs[6];
399 int found, i, line_start;
400 const char *trans_id;
401 struct mgcp_endpoint *endp;
402 int error_code = 500;
Holger Hans Peter Freyther1b0ea972010-02-21 11:11:04 +0100403 int port;
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100404
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100405 found = analyze_header(cfg, msg, data_ptrs, ARRAY_SIZE(data_ptrs), &trans_id, &endp);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100406 if (found != 0)
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100407 return create_response(500, "CRCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100408
409 if (endp->ci != CI_UNUSED) {
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100410 LOGP(DMGCP, LOGL_ERROR, "Endpoint is already used. 0x%x\n", ENDPOINT_NUMBER(endp));
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100411 return create_response(500, "CRCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100412 }
413
414 /* parse CallID C: and LocalParameters L: */
415 MSG_TOKENIZE_START
416 switch (msg->l3h[line_start]) {
417 case 'L':
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100418 endp->local_options = talloc_strdup(cfg->endpoints,
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100419 (const char *)&msg->l3h[line_start + 3]);
420 break;
421 case 'C':
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100422 endp->callid = talloc_strdup(cfg->endpoints,
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100423 (const char *)&msg->l3h[line_start + 3]);
424 break;
425 case 'M':
426 if (parse_conn_mode((const char *)&msg->l3h[line_start + 3],
427 &endp->conn_mode) != 0) {
428 error_code = 517;
429 goto error2;
430 }
431 break;
432 default:
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100433 LOGP(DMGCP, LOGL_NOTICE, "Unhandled option: '%c'/%d on 0x%x\n",
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100434 msg->l3h[line_start], msg->l3h[line_start],
435 ENDPOINT_NUMBER(endp));
436 break;
437 }
438 MSG_TOKENIZE_END
439
440 /* initialize */
441 endp->net_rtp = endp->net_rtcp = endp->bts_rtp = endp->bts_rtcp = 0;
442
443 /* set to zero until we get the info */
444 memset(&endp->remote, 0, sizeof(endp->remote));
445
446 /* bind to the port now */
Holger Hans Peter Freyther1b0ea972010-02-21 11:11:04 +0100447 port = rtp_calculate_port(ENDPOINT_NUMBER(endp), cfg->rtp_base_port);
448 if (cfg->early_bind)
449 endp->rtp_port = port;
450 else if (mgcp_bind_rtp_port(endp, port) != 0)
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100451 goto error2;
452
453 /* assign a local call identifier or fail */
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100454 endp->ci = generate_call_id(cfg);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100455 if (endp->ci == CI_UNUSED)
456 goto error2;
457
Holger Hans Peter Freytherfe86d3c2010-02-26 13:37:05 +0100458 /* policy CB */
459 if (cfg->policy_cb) {
460 switch (cfg->policy_cb(cfg, ENDPOINT_NUMBER(endp), MGCP_ENDP_CRCX, trans_id)) {
461 case MGCP_POLICY_REJECT:
462 LOGP(DMGCP, LOGL_NOTICE, "CRCX rejected by policy on 0x%x\n",
463 ENDPOINT_NUMBER(endp));
464 mgcp_free_endp(endp);
465 return create_response(500, "CRCX", trans_id);
466 break;
467 case MGCP_POLICY_DEFER:
468 /* stop processing */
469 return NULL;
470 break;
471 case MGCP_POLICY_CONT:
472 /* just continue */
473 break;
474 }
475 }
476
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100477 LOGP(DMGCP, LOGL_NOTICE, "Creating endpoint on: 0x%x CI: %u port: %u\n",
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100478 ENDPOINT_NUMBER(endp), endp->ci, endp->rtp_port);
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100479 if (cfg->change_cb)
480 cfg->change_cb(cfg, ENDPOINT_NUMBER(endp), MGCP_ENDP_CRCX, endp->rtp_port);
Holger Hans Peter Freyther77f7afe2010-02-03 09:54:43 +0100481
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100482 return create_response_with_sdp(endp, "CRCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100483error:
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100484 LOGP(DMGCP, LOGL_ERROR, "Malformed line: %s on 0x%x with: line_start: %d %d\n",
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100485 hexdump(msg->l3h, msgb_l3len(msg)),
486 ENDPOINT_NUMBER(endp), line_start, i);
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100487 return create_response(error_code, "CRCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100488
489error2:
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100490 LOGP(DMGCP, LOGL_NOTICE, "Resource error on 0x%x\n", ENDPOINT_NUMBER(endp));
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100491 return create_response(error_code, "CRCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100492}
493
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100494static struct msgb *handle_modify_con(struct mgcp_config *cfg, struct msgb *msg)
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100495{
496 struct mgcp_msg_ptr data_ptrs[6];
497 int found, i, line_start;
498 const char *trans_id;
499 struct mgcp_endpoint *endp;
500 int error_code = 500;
501
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100502 found = analyze_header(cfg, msg, data_ptrs, ARRAY_SIZE(data_ptrs), &trans_id, &endp);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100503 if (found != 0)
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100504 return create_response(error_code, "MDCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100505
506 if (endp->ci == CI_UNUSED) {
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100507 LOGP(DMGCP, LOGL_ERROR, "Endpoint is not holding a connection. 0x%x\n", ENDPOINT_NUMBER(endp));
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100508 return create_response(error_code, "MDCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100509 }
510
511 MSG_TOKENIZE_START
512 switch (msg->l3h[line_start]) {
513 case 'C': {
514 if (verify_call_id(endp, (const char *)&msg->l3h[line_start + 3]) != 0)
515 goto error3;
516 break;
517 }
518 case 'I': {
519 if (verify_ci(endp, (const char *)&msg->l3h[line_start + 3]) != 0)
520 goto error3;
521 break;
522 }
523 case 'L':
524 /* skip */
525 break;
526 case 'M':
527 if (parse_conn_mode((const char *)&msg->l3h[line_start + 3],
528 &endp->conn_mode) != 0) {
529 error_code = 517;
530 goto error3;
531 }
532 break;
533 case '\0':
534 /* SDP file begins */
535 break;
536 case 'a':
537 case 'o':
538 case 's':
539 case 't':
540 case 'v':
541 /* skip these SDP attributes */
542 break;
543 case 'm': {
544 int port;
545 const char *param = (const char *)&msg->l3h[line_start];
546
547 if (sscanf(param, "m=audio %d RTP/AVP %*d", &port) == 1) {
548 endp->net_rtp = htons(port);
549 endp->net_rtcp = htons(port + 1);
550 }
551 break;
552 }
553 case 'c': {
554 char ipv4[16];
555 const char *param = (const char *)&msg->l3h[line_start];
556
557 if (sscanf(param, "c=IN IP4 %15s", ipv4) == 1) {
558 inet_aton(ipv4, &endp->remote);
559 }
560 break;
561 }
562 default:
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100563 LOGP(DMGCP, LOGL_NOTICE, "Unhandled option: '%c'/%d on 0x%x\n",
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100564 msg->l3h[line_start], msg->l3h[line_start],
565 ENDPOINT_NUMBER(endp));
566 break;
567 }
568 MSG_TOKENIZE_END
569
Holger Hans Peter Freytherfe86d3c2010-02-26 13:37:05 +0100570 /* policy CB */
571 if (cfg->policy_cb) {
572 switch (cfg->policy_cb(cfg, ENDPOINT_NUMBER(endp), MGCP_ENDP_MDCX, trans_id)) {
573 case MGCP_POLICY_REJECT:
574 LOGP(DMGCP, LOGL_NOTICE, "MDCX rejected by policy on 0x%x\n",
575 ENDPOINT_NUMBER(endp));
576 return create_response(500, "MDCX", trans_id);
577 break;
578 case MGCP_POLICY_DEFER:
579 /* stop processing */
580 return NULL;
581 break;
582 case MGCP_POLICY_CONT:
583 /* just continue */
584 break;
585 }
586 }
587
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100588 /* modify */
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100589 LOGP(DMGCP, LOGL_NOTICE, "Modified endpoint on: 0x%x Server: %s:%u\n",
Holger Hans Peter Freyther63f2db22010-02-26 13:30:57 +0100590 ENDPOINT_NUMBER(endp), inet_ntoa(endp->remote), ntohs(endp->net_rtp));
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100591 if (cfg->change_cb)
592 cfg->change_cb(cfg, ENDPOINT_NUMBER(endp), MGCP_ENDP_MDCX, endp->rtp_port);
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100593 return create_response_with_sdp(endp, "MDCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100594
595error:
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100596 LOGP(DMGCP, LOGL_ERROR, "Malformed line: %s on 0x%x with: line_start: %d %d %d\n",
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100597 hexdump(msg->l3h, msgb_l3len(msg)),
598 ENDPOINT_NUMBER(endp), line_start, i, msg->l3h[line_start]);
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100599 return create_response(error_code, "MDCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100600
601error3:
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100602 return create_response(error_code, "MDCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100603}
604
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100605static struct msgb *handle_delete_con(struct mgcp_config *cfg, struct msgb *msg)
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100606{
607 struct mgcp_msg_ptr data_ptrs[6];
608 int found, i, line_start;
609 const char *trans_id;
610 struct mgcp_endpoint *endp;
611 int error_code = 500;
612
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100613 found = analyze_header(cfg, msg, data_ptrs, ARRAY_SIZE(data_ptrs), &trans_id, &endp);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100614 if (found != 0)
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100615 return create_response(error_code, "DLCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100616
617 if (endp->ci == CI_UNUSED) {
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100618 LOGP(DMGCP, LOGL_ERROR, "Endpoint is not used. 0x%x\n", ENDPOINT_NUMBER(endp));
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100619 return create_response(error_code, "DLCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100620 }
621
622 MSG_TOKENIZE_START
623 switch (msg->l3h[line_start]) {
624 case 'C': {
625 if (verify_call_id(endp, (const char *)&msg->l3h[line_start + 3]) != 0)
626 goto error3;
627 break;
628 }
629 case 'I': {
630 if (verify_ci(endp, (const char *)&msg->l3h[line_start + 3]) != 0)
631 goto error3;
632 break;
633 }
634 default:
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100635 LOGP(DMGCP, LOGL_NOTICE, "Unhandled option: '%c'/%d on 0x%x\n",
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100636 msg->l3h[line_start], msg->l3h[line_start],
637 ENDPOINT_NUMBER(endp));
638 break;
639 }
640 MSG_TOKENIZE_END
641
Holger Hans Peter Freytherfe86d3c2010-02-26 13:37:05 +0100642 /* policy CB */
643 if (cfg->policy_cb) {
644 switch (cfg->policy_cb(cfg, ENDPOINT_NUMBER(endp), MGCP_ENDP_DLCX, trans_id)) {
645 case MGCP_POLICY_REJECT:
646 LOGP(DMGCP, LOGL_NOTICE, "DLCX rejected by policy on 0x%x\n",
647 ENDPOINT_NUMBER(endp));
648 return create_response(500, "DLCX", trans_id);
649 break;
650 case MGCP_POLICY_DEFER:
651 /* stop processing */
652 return NULL;
653 break;
654 case MGCP_POLICY_CONT:
655 /* just continue */
656 break;
657 }
658 }
659
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100660 /* free the connection */
Holger Hans Peter Freyther154b9552010-02-26 13:27:51 +0100661 mgcp_free_endp(endp);
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100662 if (cfg->change_cb)
663 cfg->change_cb(cfg, ENDPOINT_NUMBER(endp), MGCP_ENDP_DLCX, endp->rtp_port);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100664
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100665 return create_response(250, "DLCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100666
667error:
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100668 LOGP(DMGCP, LOGL_ERROR, "Malformed line: %s on 0x%x with: line_start: %d %d\n",
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100669 hexdump(msg->l3h, msgb_l3len(msg)),
670 ENDPOINT_NUMBER(endp), line_start, i);
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100671 return create_response(error_code, "DLCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100672
673error3:
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100674 return create_response(error_code, "DLCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100675}
676
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100677struct mgcp_config *mgcp_config_alloc(void)
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100678{
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100679 struct mgcp_config *cfg;
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100680
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100681 cfg = talloc_zero(NULL, struct mgcp_config);
682 if (!cfg) {
683 LOGP(DMGCP, LOGL_FATAL, "Failed to allocate config.\n");
684 return NULL;
685 }
686
687 cfg->source_port = 2427;
688 cfg->source_addr = talloc_strdup(cfg, "0.0.0.0");
689 cfg->audio_name = talloc_strdup(cfg, "GSM-EFR/8000");
690 cfg->audio_payload = 97;
691 cfg->rtp_base_port = RTP_PORT_DEFAULT;
692
693 return cfg;
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100694}
695
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100696int mgcp_endpoints_allocate(struct mgcp_config *cfg)
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100697{
698 int i;
699
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100700 /* Initialize all endpoints */
701 cfg->endpoints = _talloc_zero_array(cfg,
702 sizeof(struct mgcp_endpoint),
703 cfg->number_endpoints, "endpoints");
704 if (!cfg->endpoints)
705 return -1;
706
707 for (i = 0; i < cfg->number_endpoints; ++i) {
708 cfg->endpoints[i].local_rtp.fd = -1;
709 cfg->endpoints[i].local_rtcp.fd = -1;
710 cfg->endpoints[i].ci = CI_UNUSED;
711 cfg->endpoints[i].cfg = cfg;
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100712 }
713
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100714 return 0;
715}
Holger Hans Peter Freyther154b9552010-02-26 13:27:51 +0100716
717void mgcp_free_endp(struct mgcp_endpoint *endp)
718{
719 LOGP(DMGCP, LOGL_NOTICE, "Deleting endpoint on: 0x%x\n", ENDPOINT_NUMBER(endp));
720 endp->ci= CI_UNUSED;
721
722 if (endp->callid) {
723 talloc_free(endp->callid);
724 endp->callid = NULL;
725 }
726
727 if (endp->local_options) {
728 talloc_free(endp->local_options);
729 endp->callid = NULL;
730 }
731
732 if (!endp->cfg->early_bind) {
733 bsc_unregister_fd(&endp->local_rtp);
734 bsc_unregister_fd(&endp->local_rtcp);
735 }
736
737 endp->net_rtp = endp->net_rtcp = endp->bts_rtp = endp->bts_rtcp = 0;
738 endp->net_payload_type = endp->bts_payload_type = -1;
739}