blob: e97f1f411a14addb64392cfbb3660318797d9929 [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 Freytheref6bb252010-02-26 13:41:22 +0100192 endp->bts_payload_type, endp->bts_payload_type,
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100193 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 Freytheref6bb252010-02-26 13:41:22 +0100458 endp->bts_payload_type = cfg->audio_payload;
459
Holger Hans Peter Freytherfe86d3c2010-02-26 13:37:05 +0100460 /* policy CB */
461 if (cfg->policy_cb) {
462 switch (cfg->policy_cb(cfg, ENDPOINT_NUMBER(endp), MGCP_ENDP_CRCX, trans_id)) {
463 case MGCP_POLICY_REJECT:
464 LOGP(DMGCP, LOGL_NOTICE, "CRCX rejected by policy on 0x%x\n",
465 ENDPOINT_NUMBER(endp));
466 mgcp_free_endp(endp);
467 return create_response(500, "CRCX", trans_id);
468 break;
469 case MGCP_POLICY_DEFER:
470 /* stop processing */
471 return NULL;
472 break;
473 case MGCP_POLICY_CONT:
474 /* just continue */
475 break;
476 }
477 }
478
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100479 LOGP(DMGCP, LOGL_NOTICE, "Creating endpoint on: 0x%x CI: %u port: %u\n",
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100480 ENDPOINT_NUMBER(endp), endp->ci, endp->rtp_port);
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100481 if (cfg->change_cb)
482 cfg->change_cb(cfg, ENDPOINT_NUMBER(endp), MGCP_ENDP_CRCX, endp->rtp_port);
Holger Hans Peter Freyther77f7afe2010-02-03 09:54:43 +0100483
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100484 return create_response_with_sdp(endp, "CRCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100485error:
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100486 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 +0100487 hexdump(msg->l3h, msgb_l3len(msg)),
488 ENDPOINT_NUMBER(endp), line_start, i);
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100489 return create_response(error_code, "CRCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100490
491error2:
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100492 LOGP(DMGCP, LOGL_NOTICE, "Resource error on 0x%x\n", ENDPOINT_NUMBER(endp));
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100493 return create_response(error_code, "CRCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100494}
495
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100496static struct msgb *handle_modify_con(struct mgcp_config *cfg, struct msgb *msg)
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100497{
498 struct mgcp_msg_ptr data_ptrs[6];
499 int found, i, line_start;
500 const char *trans_id;
501 struct mgcp_endpoint *endp;
502 int error_code = 500;
503
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100504 found = analyze_header(cfg, msg, data_ptrs, ARRAY_SIZE(data_ptrs), &trans_id, &endp);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100505 if (found != 0)
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100506 return create_response(error_code, "MDCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100507
508 if (endp->ci == CI_UNUSED) {
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100509 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 +0100510 return create_response(error_code, "MDCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100511 }
512
513 MSG_TOKENIZE_START
514 switch (msg->l3h[line_start]) {
515 case 'C': {
516 if (verify_call_id(endp, (const char *)&msg->l3h[line_start + 3]) != 0)
517 goto error3;
518 break;
519 }
520 case 'I': {
521 if (verify_ci(endp, (const char *)&msg->l3h[line_start + 3]) != 0)
522 goto error3;
523 break;
524 }
525 case 'L':
526 /* skip */
527 break;
528 case 'M':
529 if (parse_conn_mode((const char *)&msg->l3h[line_start + 3],
530 &endp->conn_mode) != 0) {
531 error_code = 517;
532 goto error3;
533 }
534 break;
535 case '\0':
536 /* SDP file begins */
537 break;
538 case 'a':
539 case 'o':
540 case 's':
541 case 't':
542 case 'v':
543 /* skip these SDP attributes */
544 break;
545 case 'm': {
546 int port;
Holger Hans Peter Freytheref6bb252010-02-26 13:41:22 +0100547 int payload;
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100548 const char *param = (const char *)&msg->l3h[line_start];
549
Holger Hans Peter Freytheref6bb252010-02-26 13:41:22 +0100550 if (sscanf(param, "m=audio %d RTP/AVP %d", &port, &payload) == 2) {
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100551 endp->net_rtp = htons(port);
552 endp->net_rtcp = htons(port + 1);
Holger Hans Peter Freytheref6bb252010-02-26 13:41:22 +0100553 endp->net_payload_type = payload;
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100554 }
555 break;
556 }
557 case 'c': {
558 char ipv4[16];
559 const char *param = (const char *)&msg->l3h[line_start];
560
561 if (sscanf(param, "c=IN IP4 %15s", ipv4) == 1) {
562 inet_aton(ipv4, &endp->remote);
563 }
564 break;
565 }
566 default:
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100567 LOGP(DMGCP, LOGL_NOTICE, "Unhandled option: '%c'/%d on 0x%x\n",
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100568 msg->l3h[line_start], msg->l3h[line_start],
569 ENDPOINT_NUMBER(endp));
570 break;
571 }
572 MSG_TOKENIZE_END
573
Holger Hans Peter Freytherfe86d3c2010-02-26 13:37:05 +0100574 /* policy CB */
575 if (cfg->policy_cb) {
576 switch (cfg->policy_cb(cfg, ENDPOINT_NUMBER(endp), MGCP_ENDP_MDCX, trans_id)) {
577 case MGCP_POLICY_REJECT:
578 LOGP(DMGCP, LOGL_NOTICE, "MDCX rejected by policy on 0x%x\n",
579 ENDPOINT_NUMBER(endp));
580 return create_response(500, "MDCX", trans_id);
581 break;
582 case MGCP_POLICY_DEFER:
583 /* stop processing */
584 return NULL;
585 break;
586 case MGCP_POLICY_CONT:
587 /* just continue */
588 break;
589 }
590 }
591
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100592 /* modify */
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100593 LOGP(DMGCP, LOGL_NOTICE, "Modified endpoint on: 0x%x Server: %s:%u\n",
Holger Hans Peter Freyther63f2db22010-02-26 13:30:57 +0100594 ENDPOINT_NUMBER(endp), inet_ntoa(endp->remote), ntohs(endp->net_rtp));
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100595 if (cfg->change_cb)
596 cfg->change_cb(cfg, ENDPOINT_NUMBER(endp), MGCP_ENDP_MDCX, endp->rtp_port);
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100597 return create_response_with_sdp(endp, "MDCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100598
599error:
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100600 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 +0100601 hexdump(msg->l3h, msgb_l3len(msg)),
602 ENDPOINT_NUMBER(endp), line_start, i, msg->l3h[line_start]);
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100603 return create_response(error_code, "MDCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100604
605error3:
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100606 return create_response(error_code, "MDCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100607}
608
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100609static struct msgb *handle_delete_con(struct mgcp_config *cfg, struct msgb *msg)
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100610{
611 struct mgcp_msg_ptr data_ptrs[6];
612 int found, i, line_start;
613 const char *trans_id;
614 struct mgcp_endpoint *endp;
615 int error_code = 500;
616
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100617 found = analyze_header(cfg, msg, data_ptrs, ARRAY_SIZE(data_ptrs), &trans_id, &endp);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100618 if (found != 0)
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 if (endp->ci == CI_UNUSED) {
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100622 LOGP(DMGCP, LOGL_ERROR, "Endpoint is not used. 0x%x\n", ENDPOINT_NUMBER(endp));
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100623 return create_response(error_code, "DLCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100624 }
625
626 MSG_TOKENIZE_START
627 switch (msg->l3h[line_start]) {
628 case 'C': {
629 if (verify_call_id(endp, (const char *)&msg->l3h[line_start + 3]) != 0)
630 goto error3;
631 break;
632 }
633 case 'I': {
634 if (verify_ci(endp, (const char *)&msg->l3h[line_start + 3]) != 0)
635 goto error3;
636 break;
637 }
638 default:
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100639 LOGP(DMGCP, LOGL_NOTICE, "Unhandled option: '%c'/%d on 0x%x\n",
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100640 msg->l3h[line_start], msg->l3h[line_start],
641 ENDPOINT_NUMBER(endp));
642 break;
643 }
644 MSG_TOKENIZE_END
645
Holger Hans Peter Freytherfe86d3c2010-02-26 13:37:05 +0100646 /* policy CB */
647 if (cfg->policy_cb) {
648 switch (cfg->policy_cb(cfg, ENDPOINT_NUMBER(endp), MGCP_ENDP_DLCX, trans_id)) {
649 case MGCP_POLICY_REJECT:
650 LOGP(DMGCP, LOGL_NOTICE, "DLCX rejected by policy on 0x%x\n",
651 ENDPOINT_NUMBER(endp));
652 return create_response(500, "DLCX", trans_id);
653 break;
654 case MGCP_POLICY_DEFER:
655 /* stop processing */
656 return NULL;
657 break;
658 case MGCP_POLICY_CONT:
659 /* just continue */
660 break;
661 }
662 }
663
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100664 /* free the connection */
Holger Hans Peter Freyther154b9552010-02-26 13:27:51 +0100665 mgcp_free_endp(endp);
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100666 if (cfg->change_cb)
667 cfg->change_cb(cfg, ENDPOINT_NUMBER(endp), MGCP_ENDP_DLCX, endp->rtp_port);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100668
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100669 return create_response(250, "DLCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100670
671error:
Holger Hans Peter Freyther2ada71d2010-02-03 09:13:10 +0100672 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 +0100673 hexdump(msg->l3h, msgb_l3len(msg)),
674 ENDPOINT_NUMBER(endp), line_start, i);
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100675 return create_response(error_code, "DLCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100676
677error3:
Holger Hans Peter Freyther8d188ed2010-02-21 01:44:08 +0100678 return create_response(error_code, "DLCX", trans_id);
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100679}
680
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100681struct mgcp_config *mgcp_config_alloc(void)
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100682{
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100683 struct mgcp_config *cfg;
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100684
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100685 cfg = talloc_zero(NULL, struct mgcp_config);
686 if (!cfg) {
687 LOGP(DMGCP, LOGL_FATAL, "Failed to allocate config.\n");
688 return NULL;
689 }
690
691 cfg->source_port = 2427;
692 cfg->source_addr = talloc_strdup(cfg, "0.0.0.0");
693 cfg->audio_name = talloc_strdup(cfg, "GSM-EFR/8000");
694 cfg->audio_payload = 97;
695 cfg->rtp_base_port = RTP_PORT_DEFAULT;
696
697 return cfg;
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100698}
699
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100700int mgcp_endpoints_allocate(struct mgcp_config *cfg)
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100701{
702 int i;
703
Holger Hans Peter Freyther7bdc6372010-02-20 21:21:02 +0100704 /* Initialize all endpoints */
705 cfg->endpoints = _talloc_zero_array(cfg,
706 sizeof(struct mgcp_endpoint),
707 cfg->number_endpoints, "endpoints");
708 if (!cfg->endpoints)
709 return -1;
710
711 for (i = 0; i < cfg->number_endpoints; ++i) {
712 cfg->endpoints[i].local_rtp.fd = -1;
713 cfg->endpoints[i].local_rtcp.fd = -1;
714 cfg->endpoints[i].ci = CI_UNUSED;
715 cfg->endpoints[i].cfg = cfg;
Holger Hans Peter Freytheref6bb252010-02-26 13:41:22 +0100716 cfg->endpoints[i].net_payload_type = -1;
717 cfg->endpoints[i].bts_payload_type = -1;
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100718 }
719
Holger Hans Peter Freythere0955022010-02-03 08:50:33 +0100720 return 0;
721}
Holger Hans Peter Freyther154b9552010-02-26 13:27:51 +0100722
723void mgcp_free_endp(struct mgcp_endpoint *endp)
724{
725 LOGP(DMGCP, LOGL_NOTICE, "Deleting endpoint on: 0x%x\n", ENDPOINT_NUMBER(endp));
726 endp->ci= CI_UNUSED;
727
728 if (endp->callid) {
729 talloc_free(endp->callid);
730 endp->callid = NULL;
731 }
732
733 if (endp->local_options) {
734 talloc_free(endp->local_options);
735 endp->callid = NULL;
736 }
737
738 if (!endp->cfg->early_bind) {
739 bsc_unregister_fd(&endp->local_rtp);
740 bsc_unregister_fd(&endp->local_rtcp);
741 }
742
743 endp->net_rtp = endp->net_rtcp = endp->bts_rtp = endp->bts_rtcp = 0;
744 endp->net_payload_type = endp->bts_payload_type = -1;
745}