blob: a29e9d70d2ffcbccef81a400138fe7ef695b86b3 [file] [log] [blame]
Holger Hans Peter Freyther07fc0972012-10-24 21:52:16 +02001/**
2 * This file contains helper routines for MGCP Gateway handling.
3 *
4 * The first thing to remember is that each BSC has its own namespace/range
5 * of endpoints. Whenever a BSSMAP ASSIGNMENT REQUEST is received this code
6 * will be called to select an endpoint on the BSC. The mapping from original
7 * multiplex/timeslot to BSC multiplex'/timeslot' will be stored.
8 *
9 * The second part is to take messages on the public MGCP GW interface
10 * and forward them to the right BSC. This requires the MSC to first
11 * assign the timeslot. This assumption has been true so far. We are using
12 * the policy_cb of the MGCP protocol code to decide if the request should
13 * be immediately answered or delayed. An extension "Z: noanswer" is used
14 * to request the BSC to not respond. This is saving some bytes of bandwidth
15 * and as we are using TCP to forward the message we know it will arrive.
16 * The mgcp_do_read method reads these messages and hands them to the protocol
17 * parsing code which will call the mentioned policy_cb. The bsc_mgcp_forward
18 * method is used on the way back from the BSC to the network.
19 *
20 * The third part is to patch messages forwarded to the BSC. This includes
21 * the endpoint number, the ports to be used inside the SDP file and maybe
22 * some other bits.
23 *
24 */
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080025/*
Holger Hans Peter Freyther07fc0972012-10-24 21:52:16 +020026 * (C) 2010-2012 by Holger Hans Peter Freyther <zecke@selfish.org>
27 * (C) 2010-2012 by On-Waves
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080028 * All Rights Reserved
29 *
30 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +010031 * it under the terms of the GNU Affero General Public License as published by
32 * the Free Software Foundation; either version 3 of the License, or
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080033 * (at your option) any later version.
34 *
35 * This program is distributed in the hope that it will be useful,
36 * but WITHOUT ANY WARRANTY; without even the implied warranty of
37 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010038 * GNU Affero General Public License for more details.
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080039 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010040 * You should have received a copy of the GNU Affero General Public License
41 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080042 *
43 */
44
45#include <openbsc/bsc_nat.h>
Holger Hans Peter Freytherc2b31ed2010-07-31 05:17:17 +080046#include <openbsc/bsc_nat_sccp.h>
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080047#include <openbsc/gsm_data.h>
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080048#include <openbsc/debug.h>
Holger Hans Peter Freyther19c530c2010-10-13 23:52:01 +020049#include <openbsc/ipaccess.h>
Holger Hans Peter Freyther241e1302010-03-31 09:16:56 +020050#include <openbsc/mgcp.h>
51#include <openbsc/mgcp_internal.h>
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +020052#include <openbsc/control_cmd.h>
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080053
Harald Welted5db12c2010-08-03 15:11:51 +020054#include <osmocom/sccp/sccp.h>
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +080055
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010056#include <osmocom/core/talloc.h>
Harald Welted36ff762011-03-23 18:26:56 +010057#include <osmocom/gsm/gsm0808.h>
58#include <osmocom/gsm/protocol/gsm_08_08.h>
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +020059
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080060#include <netinet/in.h>
61#include <arpa/inet.h>
62
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +020063#include <errno.h>
64#include <unistd.h>
65
Holger Hans Peter Freytherc3271872012-11-05 14:54:56 +010066static void send_direct(struct bsc_nat *nat, struct msgb *output)
Holger Hans Peter Freyther77956aa2012-11-05 13:52:53 +010067{
68 if (osmo_wqueue_enqueue(&nat->mgcp_cfg->gw_fd, output) != 0) {
69 LOGP(DMGCP, LOGL_ERROR, "Failed to queue MGCP msg.\n");
70 msgb_free(output);
71 }
72}
73
Holger Hans Peter Freytherc3271872012-11-05 14:54:56 +010074static void mgcp_queue_for_call_agent(struct bsc_nat *nat, struct msgb *output)
75{
76 if (nat->mgcp_ipa)
77 bsc_nat_send_mgcp_to_msc(nat, output);
78 else
79 send_direct(nat, output);
80}
81
Holger Hans Peter Freyther9ec030d2011-02-27 11:04:27 +010082int bsc_mgcp_nr_multiplexes(int max_endpoints)
83{
84 int div = max_endpoints / 32;
85
86 if ((max_endpoints % 32) != 0)
87 div += 1;
88
89 return div;
90}
91
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +010092static int bsc_init_endps_if_needed(struct bsc_connection *con)
93{
Holger Hans Peter Freyther9ec030d2011-02-27 11:04:27 +010094 int multiplexes;
95
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +010096 /* we have done that */
97 if (con->_endpoint_status)
98 return 0;
99
100 /* we have no config... */
101 if (!con->cfg)
102 return -1;
103
Holger Hans Peter Freyther9ec030d2011-02-27 11:04:27 +0100104 multiplexes = bsc_mgcp_nr_multiplexes(con->cfg->max_endpoints);
105 con->number_multiplexes = multiplexes;
106 con->max_endpoints = con->cfg->max_endpoints;
107 con->_endpoint_status = talloc_zero_array(con, char, 32 * multiplexes + 1);
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +0100108 return con->_endpoint_status == NULL;
109}
110
Holger Hans Peter Freyther45fd07d2010-08-28 18:22:14 +0800111static int bsc_assign_endpoint(struct bsc_connection *bsc, struct sccp_connections *con)
112{
Holger Hans Peter Freythera9e93312011-02-26 11:38:00 +0100113 int multiplex;
114 int timeslot;
Holger Hans Peter Freyther9ec030d2011-02-27 11:04:27 +0100115 const int number_endpoints = bsc->max_endpoints;
Holger Hans Peter Freyther45fd07d2010-08-28 18:22:14 +0800116 int i;
117
Holger Hans Peter Freythera9e93312011-02-26 11:38:00 +0100118 mgcp_endpoint_to_timeslot(bsc->last_endpoint, &multiplex, &timeslot);
119 timeslot += 1;
120
121 for (i = 0; i < number_endpoints; ++i) {
122 int endpoint;
123
124 /* Wrap around timeslots */
125 if (timeslot == 0)
126 timeslot = 1;
127
128 if (timeslot == 0x1f) {
129 timeslot = 1;
130 multiplex += 1;
131 }
132
133 /* Wrap around the multiplex */
134 if (multiplex >= bsc->number_multiplexes)
135 multiplex = 0;
136
137 endpoint = mgcp_timeslot_to_endpoint(multiplex, timeslot);
Holger Hans Peter Freyther45fd07d2010-08-28 18:22:14 +0800138
Holger Hans Peter Freyther9ec030d2011-02-27 11:04:27 +0100139 /* Now check if we are allowed to assign this one */
140 if (endpoint >= bsc->max_endpoints) {
141 multiplex = 0;
142 timeslot = 1;
143 endpoint = mgcp_timeslot_to_endpoint(multiplex, timeslot);
144 }
145
146
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +0100147 if (bsc->_endpoint_status[endpoint] == 0) {
148 bsc->_endpoint_status[endpoint] = 1;
Holger Hans Peter Freyther45fd07d2010-08-28 18:22:14 +0800149 con->bsc_endp = endpoint;
150 bsc->last_endpoint = endpoint;
151 return 0;
152 }
Holger Hans Peter Freythera9e93312011-02-26 11:38:00 +0100153
154 timeslot += 1;
Holger Hans Peter Freyther45fd07d2010-08-28 18:22:14 +0800155 }
156
157 return -1;
158}
159
160static uint16_t create_cic(int endpoint)
161{
162 int timeslot, multiplex;
163
164 mgcp_endpoint_to_timeslot(endpoint, &multiplex, &timeslot);
165 return (multiplex << 5) | (timeslot & 0x1f);
166}
167
168int bsc_mgcp_assign_patch(struct sccp_connections *con, struct msgb *msg)
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800169{
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800170 struct sccp_connections *mcon;
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800171 struct tlv_parsed tp;
Holger Hans Peter Freythere2c15202010-07-23 19:09:21 +0800172 uint16_t cic;
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800173 uint8_t timeslot;
174 uint8_t multiplex;
Holger Hans Peter Freyther14069772010-11-04 17:14:41 +0100175 unsigned int endp;
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800176
177 if (!msg->l3h) {
178 LOGP(DNAT, LOGL_ERROR, "Assignment message should have l3h pointer.\n");
179 return -1;
180 }
181
182 if (msgb_l3len(msg) < 3) {
183 LOGP(DNAT, LOGL_ERROR, "Assignment message has not enough space for GSM0808.\n");
184 return -1;
185 }
186
187 tlv_parse(&tp, gsm0808_att_tlvdef(), msg->l3h + 3, msgb_l3len(msg) - 3, 0, 0);
188 if (!TLVP_PRESENT(&tp, GSM0808_IE_CIRCUIT_IDENTITY_CODE)) {
189 LOGP(DNAT, LOGL_ERROR, "Circuit identity code not found in assignment message.\n");
190 return -1;
191 }
192
Holger Hans Peter Freythere2c15202010-07-23 19:09:21 +0800193 cic = ntohs(*(uint16_t *)TLVP_VAL(&tp, GSM0808_IE_CIRCUIT_IDENTITY_CODE));
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800194 timeslot = cic & 0x1f;
195 multiplex = (cic & ~0x1f) >> 5;
196
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800197
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800198 endp = mgcp_timeslot_to_endpoint(multiplex, timeslot);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800199
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100200 if (endp >= con->bsc->nat->mgcp_cfg->trunk.number_endpoints) {
Holger Hans Peter Freyther14069772010-11-04 17:14:41 +0100201 LOGP(DNAT, LOGL_ERROR,
202 "MSC attempted to assign bad endpoint 0x%x\n",
203 endp);
204 return -1;
205 }
206
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800207 /* find stale connections using that endpoint */
208 llist_for_each_entry(mcon, &con->bsc->nat->sccp_connections, list_entry) {
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800209 if (mcon->msc_endp == endp) {
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800210 LOGP(DNAT, LOGL_ERROR,
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800211 "Endpoint %d was assigned to 0x%x and now 0x%x\n",
212 endp,
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800213 sccp_src_ref_to_int(&mcon->patched_ref),
214 sccp_src_ref_to_int(&con->patched_ref));
215 bsc_mgcp_dlcx(mcon);
216 }
217 }
218
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800219 con->msc_endp = endp;
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +0100220 if (bsc_init_endps_if_needed(con->bsc) != 0)
221 return -1;
Holger Hans Peter Freyther45fd07d2010-08-28 18:22:14 +0800222 if (bsc_assign_endpoint(con->bsc, con) != 0)
223 return -1;
224
225 /*
226 * now patch the message for the new CIC...
227 * still assumed to be one multiplex only
228 */
229 cic = htons(create_cic(con->bsc_endp));
230 memcpy((uint8_t *) TLVP_VAL(&tp, GSM0808_IE_CIRCUIT_IDENTITY_CODE),
231 &cic, sizeof(cic));
232
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800233 return 0;
234}
235
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800236static void bsc_mgcp_free_endpoint(struct bsc_nat *nat, int i)
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200237{
238 if (nat->bsc_endpoints[i].transaction_id) {
239 talloc_free(nat->bsc_endpoints[i].transaction_id);
240 nat->bsc_endpoints[i].transaction_id = NULL;
241 }
242
Holger Hans Peter Freyther5b2726e2010-08-06 09:05:05 +0800243 nat->bsc_endpoints[i].transaction_state = 0;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200244 nat->bsc_endpoints[i].bsc = NULL;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200245}
246
Holger Hans Peter Freyther241e1302010-03-31 09:16:56 +0200247void bsc_mgcp_free_endpoints(struct bsc_nat *nat)
248{
249 int i;
250
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100251 for (i = 1; i < nat->mgcp_cfg->trunk.number_endpoints; ++i){
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200252 bsc_mgcp_free_endpoint(nat, i);
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100253 mgcp_free_endp(&nat->mgcp_cfg->trunk.endpoints[i]);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800254 }
Holger Hans Peter Freyther241e1302010-03-31 09:16:56 +0200255}
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200256
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800257/* send a MDCX where we do not want a response */
Holger Hans Peter Freyther601180f2010-08-29 23:40:33 +0800258static void bsc_mgcp_send_mdcx(struct bsc_connection *bsc, int port, struct mgcp_endpoint *endp)
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800259{
260 char buf[2096];
261 int len;
262
263 len = snprintf(buf, sizeof(buf),
Holger Hans Peter Freytherf42f45b2010-04-22 13:06:24 +0800264 "MDCX 23 %x@mgw MGCP 1.0\r\n"
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800265 "Z: noanswer\r\n"
266 "\r\n"
267 "c=IN IP4 %s\r\n"
268 "m=audio %d RTP/AVP 255\r\n",
Holger Hans Peter Freyther601180f2010-08-29 23:40:33 +0800269 port,
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800270 bsc->nat->mgcp_cfg->source_addr,
Holger Hans Peter Freyther58ff2192010-08-05 03:08:35 +0800271 endp->bts_end.local_port);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800272 if (len < 0) {
Holger Hans Peter Freyther74568912012-09-14 15:51:43 +0200273 LOGP(DMGCP, LOGL_ERROR, "snprintf for MDCX failed.\n");
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800274 return;
275 }
Holger Hans Peter Freytherd38aa452010-08-30 11:58:49 +0800276
Holger Hans Peter Freyther6de9d0b2012-10-30 16:32:19 +0100277 bsc_write_mgcp(bsc, (uint8_t *) buf, len);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800278}
279
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200280static void bsc_mgcp_send_dlcx(struct bsc_connection *bsc, int endpoint, int trans)
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800281{
282 char buf[2096];
283 int len;
284
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200285 /*
286 * The following is a bit of a spec violation. According to the
287 * MGCP grammar the transaction id is are upto 9 digits but we
288 * prefix it with an alpha numeric value so we can easily recognize
289 * it as a response.
290 */
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800291 len = snprintf(buf, sizeof(buf),
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200292 "DLCX nat-%u %x@mgw MGCP 1.0\r\n",
293 trans, endpoint);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800294 if (len < 0) {
295 LOGP(DMGCP, LOGL_ERROR, "snprintf for DLCX failed.\n");
296 return;
297 }
298
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800299 bsc_write_mgcp(bsc, (uint8_t *) buf, len);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800300}
301
302void bsc_mgcp_init(struct sccp_connections *con)
303{
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800304 con->msc_endp = -1;
305 con->bsc_endp = -1;
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800306}
307
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200308/**
309 * This code will remember the network side of the audio statistics and
310 * once the internal DLCX response arrives this can be combined with the
311 * the BSC side and forwarded as a trap.
312 */
313static void remember_pending_dlcx(struct sccp_connections *con, uint32_t transaction)
314{
315 struct bsc_nat_call_stats *stats;
316 struct bsc_connection *bsc = con->bsc;
317 struct mgcp_endpoint *endp;
318
319 stats = talloc_zero(bsc, struct bsc_nat_call_stats);
320 if (!stats) {
321 LOGP(DNAT, LOGL_NOTICE,
322 "Failed to allocate statistics for endpoint 0x%x\n",
323 con->msc_endp);
324 return;
325 }
326
327 /* take the endpoint here */
328 endp = &bsc->nat->mgcp_cfg->trunk.endpoints[con->msc_endp];
329
330 stats->remote_ref = con->remote_ref;
331 stats->src_ref = con->patched_ref;
332
333 stats->ci = endp->ci;
334 stats->bts_rtp_port = endp->bts_end.rtp_port;
335 stats->bts_addr = endp->bts_end.addr;
336 stats->net_rtp_port = endp->net_end.rtp_port;
337 stats->net_addr = endp->net_end.addr;
338
339 stats->net_ps = endp->net_end.packets;
340 stats->net_os = endp->net_end.octets;
341 stats->bts_pr = endp->bts_end.packets;
342 stats->bts_or = endp->bts_end.octets;
343 mgcp_state_calc_loss(&endp->bts_state, &endp->bts_end,
344 &stats->bts_expected, &stats->bts_loss);
345 stats->bts_jitter = mgcp_state_calc_jitter(&endp->bts_state);
346
347 stats->trans_id = transaction;
348 stats->msc_endpoint = con->msc_endp;
349
350 bsc->pending_dlcx_count += 1;
351 llist_add_tail(&stats->entry, &bsc->pending_dlcx);
352}
353
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800354void bsc_mgcp_dlcx(struct sccp_connections *con)
355{
356 /* send a DLCX down the stream */
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +0100357 if (con->bsc_endp != -1 && con->bsc->_endpoint_status) {
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200358 LOGP(DNAT, LOGL_NOTICE,
359 "Endpoint 0x%x was still allocated on bsc: %d. Freeing it.\n",
360 con->bsc_endp, con->bsc->cfg->nr);
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +0100361 if (con->bsc->_endpoint_status[con->bsc_endp] != 1)
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800362 LOGP(DNAT, LOGL_ERROR, "Endpoint 0x%x was not in use\n", con->bsc_endp);
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200363 remember_pending_dlcx(con, con->bsc->next_transaction);
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +0100364 con->bsc->_endpoint_status[con->bsc_endp] = 0;
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200365 bsc_mgcp_send_dlcx(con->bsc, con->bsc_endp, con->bsc->next_transaction++);
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800366 bsc_mgcp_free_endpoint(con->bsc->nat, con->msc_endp);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800367 }
368
369 bsc_mgcp_init(con);
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200370
371}
372
373/*
374 * Search for the pending request
375 */
376static void handle_dlcx_response(struct bsc_connection *bsc, struct msgb *msg,
377 int code, const char *transaction)
378{
379 uint32_t trans_id = UINT32_MAX;
380 uint32_t b_ps, b_os, n_pr, n_or, jitter;
381 int loss;
382 struct bsc_nat_call_stats *tmp, *stat = NULL;
383 struct ctrl_cmd *cmd;
384
385 /* parse the transaction identifier */
386 int rc = sscanf(transaction, "nat-%u", &trans_id);
387 if (rc != 1) {
388 LOGP(DNAT, LOGL_ERROR, "Can not parse transaction id: '%s'\n",
389 transaction);
390 return;
391 }
392
393 /* find the answer for the request we made */
394 llist_for_each_entry(tmp, &bsc->pending_dlcx, entry) {
395 if (trans_id != tmp->trans_id)
396 continue;
397
398 stat = tmp;
399 break;
400 }
401
402 if (!stat) {
403 LOGP(DNAT, LOGL_ERROR,
404 "Can not find transaction for: %u\n", trans_id);
405 return;
406 }
407
408 /* attempt to parse the data now */
409 rc = mgcp_parse_stats(msg, &b_ps, &b_os, &n_pr, &n_or, &loss, &jitter);
410 if (rc != 0)
411 LOGP(DNAT, LOGL_ERROR,
412 "Can not parse connection statistics: %d\n", rc);
413
414 /* send a trap now */
415 cmd = ctrl_cmd_create(bsc, CTRL_TYPE_TRAP);
416 if (!cmd) {
417 LOGP(DNAT, LOGL_ERROR,
418 "Creating a ctrl cmd failed.\n");
419 goto free_stat;
420 }
421
422 cmd->id = "0";
423 cmd->variable = "nat.call_stats.v1";
424 cmd->reply = talloc_asprintf(cmd,
425 "bsc_id=%d,mg_ip_addr=%s,mg_port=%d,",
426 bsc->cfg->nr, inet_ntoa(stat->net_addr),
427 stat->net_rtp_port);
428 cmd->reply = talloc_asprintf_append(cmd->reply,
429 "endpoint_ip_addr=%s,endpoint_port=%d,",
430 inet_ntoa(stat->bts_addr),
431 stat->bts_rtp_port);
432 cmd->reply = talloc_asprintf_append(cmd->reply,
433 "nat_pkt_in=%u,nat_pkt_out=%u,"
434 "nat_bytes_in=%u,nat_bytes_out=%u,"
435 "nat_jitter=%u,nat_pkt_lost=%d,",
436 stat->bts_pr, stat->net_ps,
437 stat->bts_or, stat->net_os,
438 stat->bts_jitter, stat->bts_loss);
439 cmd->reply = talloc_asprintf_append(cmd->reply,
440 "bsc_pkt_in=%u,bsc_pkt_out=%u,"
441 "bsc_bytes_in=%u,bsc_bytes_out=%u,"
442 "bsc_jitter=%u,bsc_pkt_lost=%d",
443 n_pr, b_ps,
444 n_or, b_os,
445 jitter, loss);
446
447 /* send it and be done */
448 ctrl_cmd_send_to_all(bsc->nat->ctrl, cmd);
449 talloc_free(cmd);
450
451free_stat:
452 bsc->pending_dlcx_count -= 1;
453 llist_del(&stat->entry);
454 talloc_free(stat);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800455}
456
457
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800458struct sccp_connections *bsc_mgcp_find_con(struct bsc_nat *nat, int endpoint)
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200459{
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800460 struct sccp_connections *con = NULL;
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200461 struct sccp_connections *sccp;
462
463 llist_for_each_entry(sccp, &nat->sccp_connections, list_entry) {
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800464 if (sccp->msc_endp == -1)
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200465 continue;
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800466 if (sccp->msc_endp != endpoint)
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200467 continue;
468
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800469 con = sccp;
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200470 }
471
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800472 if (con)
473 return con;
Holger Hans Peter Freythereb52e892010-04-18 02:14:45 +0800474
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200475 LOGP(DMGCP, LOGL_ERROR,
476 "Failed to find the connection for endpoint: 0x%x\n", endpoint);
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200477 return NULL;
478}
479
Holger Hans Peter Freythercb3c2c92012-10-24 21:53:07 +0200480static int bsc_mgcp_policy_cb(struct mgcp_trunk_config *tcfg, int endpoint, int state, const char *transaction_id)
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200481{
482 struct bsc_nat *nat;
483 struct bsc_endpoint *bsc_endp;
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800484 struct sccp_connections *sccp;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200485 struct mgcp_endpoint *mgcp_endp;
486 struct msgb *bsc_msg;
487
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100488 nat = tcfg->cfg->data;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200489 bsc_endp = &nat->bsc_endpoints[endpoint];
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100490 mgcp_endp = &nat->mgcp_cfg->trunk.endpoints[endpoint];
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200491
Holger Hans Peter Freytherfef76122010-04-24 21:05:18 +0800492 if (bsc_endp->transaction_id) {
493 LOGP(DMGCP, LOGL_ERROR, "Endpoint 0x%x had pending transaction: '%s'\n",
494 endpoint, bsc_endp->transaction_id);
495 talloc_free(bsc_endp->transaction_id);
496 bsc_endp->transaction_id = NULL;
Holger Hans Peter Freyther5b2726e2010-08-06 09:05:05 +0800497 bsc_endp->transaction_state = 0;
Holger Hans Peter Freytherfef76122010-04-24 21:05:18 +0800498 }
499 bsc_endp->bsc = NULL;
500
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800501 sccp = bsc_mgcp_find_con(nat, endpoint);
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200502
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800503 if (!sccp) {
Holger Hans Peter Freyther3d194d92010-04-24 21:02:01 +0800504 LOGP(DMGCP, LOGL_ERROR, "Did not find BSC for change on endpoint: 0x%x state: %d\n", endpoint, state);
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200505
506 switch (state) {
507 case MGCP_ENDP_CRCX:
508 return MGCP_POLICY_REJECT;
509 break;
510 case MGCP_ENDP_DLCX:
511 return MGCP_POLICY_CONT;
512 break;
513 case MGCP_ENDP_MDCX:
514 return MGCP_POLICY_CONT;
515 break;
516 default:
517 LOGP(DMGCP, LOGL_FATAL, "Unhandled state: %d\n", state);
518 return MGCP_POLICY_CONT;
519 break;
520 }
521 }
522
Holger Hans Peter Freytherdd16b422010-04-07 09:53:54 +0200523 /* we need to generate a new and patched message */
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800524 bsc_msg = bsc_mgcp_rewrite((char *) nat->mgcp_msg, nat->mgcp_length, sccp->bsc_endp,
Holger Hans Peter Freyther58ff2192010-08-05 03:08:35 +0800525 nat->mgcp_cfg->source_addr, mgcp_endp->bts_end.local_port);
Holger Hans Peter Freytherdd16b422010-04-07 09:53:54 +0200526 if (!bsc_msg) {
527 LOGP(DMGCP, LOGL_ERROR, "Failed to patch the msg.\n");
528 return MGCP_POLICY_CONT;
529 }
530
531
Holger Hans Peter Freytherb3e0a032010-04-04 18:11:49 +0200532 bsc_endp->transaction_id = talloc_strdup(nat, transaction_id);
Holger Hans Peter Freyther5b2726e2010-08-06 09:05:05 +0800533 bsc_endp->transaction_state = state;
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800534 bsc_endp->bsc = sccp->bsc;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200535
536 /* we need to update some bits */
537 if (state == MGCP_ENDP_CRCX) {
538 struct sockaddr_in sock;
539 socklen_t len = sizeof(sock);
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800540 if (getpeername(sccp->bsc->write_queue.bfd.fd, (struct sockaddr *) &sock, &len) != 0) {
Holger Hans Peter Freyther92febd32010-04-06 11:17:07 +0200541 LOGP(DMGCP, LOGL_ERROR, "Can not get the peername...%d/%s\n",
542 errno, strerror(errno));
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200543 } else {
Holger Hans Peter Freythera17d7012010-08-05 01:34:51 +0800544 mgcp_endp->bts_end.addr = sock.sin_addr;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200545 }
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200546
Holger Hans Peter Freythere66cac32010-08-05 01:50:44 +0800547 /* send the message and a fake MDCX to force sending of a dummy packet */
Holger Hans Peter Freyther368a0a72011-01-07 16:54:46 +0100548 bsc_write(sccp->bsc, bsc_msg, IPAC_PROTO_MGCP_OLD);
Holger Hans Peter Freyther601180f2010-08-29 23:40:33 +0800549 bsc_mgcp_send_mdcx(sccp->bsc, sccp->bsc_endp, mgcp_endp);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800550 return MGCP_POLICY_DEFER;
551 } else if (state == MGCP_ENDP_DLCX) {
552 /* we will free the endpoint now and send a DLCX to the BSC */
Holger Hans Peter Freyther3a347f02010-05-01 10:31:53 +0800553 msgb_free(bsc_msg);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800554 bsc_mgcp_dlcx(sccp);
555 return MGCP_POLICY_CONT;
556 } else {
Holger Hans Peter Freyther368a0a72011-01-07 16:54:46 +0100557 bsc_write(sccp->bsc, bsc_msg, IPAC_PROTO_MGCP_OLD);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800558 return MGCP_POLICY_DEFER;
559 }
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200560}
561
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200562/*
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800563 * We do have a failure, free data downstream..
564 */
565static void free_chan_downstream(struct mgcp_endpoint *endp, struct bsc_endpoint *bsc_endp,
566 struct bsc_connection *bsc)
567{
Holger Hans Peter Freytherc021fbe2010-08-28 16:46:27 +0800568 LOGP(DMGCP, LOGL_ERROR, "No CI, freeing endpoint 0x%x in state %d\n",
569 ENDPOINT_NUMBER(endp), bsc_endp->transaction_state);
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800570
Holger Hans Peter Freytherc021fbe2010-08-28 16:46:27 +0800571 /* if a CRCX failed... send a DLCX down the stream */
572 if (bsc_endp->transaction_state == MGCP_ENDP_CRCX) {
573 struct sccp_connections *con;
574 con = bsc_mgcp_find_con(bsc->nat, ENDPOINT_NUMBER(endp));
575 if (!con) {
576 LOGP(DMGCP, LOGL_ERROR,
577 "No SCCP connection for endp 0x%x\n",
578 ENDPOINT_NUMBER(endp));
579 } else {
580 if (con->bsc == bsc) {
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200581 bsc_mgcp_send_dlcx(bsc, con->bsc_endp, con->bsc->next_transaction++);
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800582 } else {
Holger Hans Peter Freytherc021fbe2010-08-28 16:46:27 +0800583 LOGP(DMGCP, LOGL_ERROR,
584 "Endpoint belongs to a different BSC\n");
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800585 }
586 }
Holger Hans Peter Freytherc021fbe2010-08-28 16:46:27 +0800587 }
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800588
Holger Hans Peter Freytherc021fbe2010-08-28 16:46:27 +0800589 bsc_mgcp_free_endpoint(bsc->nat, ENDPOINT_NUMBER(endp));
590 mgcp_free_endp(endp);
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800591}
592
593/*
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200594 * We have received a msg from the BSC. We will see if we know
595 * this transaction and if it belongs to the BSC. Then we will
596 * need to patch the content to point to the local network and we
597 * need to update the I: that was assigned by the BSS.
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200598 *
599 * Only responses to CRCX and DLCX should arrive here. The DLCX
600 * needs to be handled specially to combine the two statistics.
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200601 */
602void bsc_mgcp_forward(struct bsc_connection *bsc, struct msgb *msg)
603{
604 struct msgb *output;
605 struct bsc_endpoint *bsc_endp = NULL;
606 struct mgcp_endpoint *endp = NULL;
Holger Hans Peter Freytherd2dd6e82010-04-06 11:06:11 +0200607 int i, code;
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200608 char transaction_id[60];
609
610 /* Some assumption that our buffer is big enough.. and null terminate */
611 if (msgb_l2len(msg) > 2000) {
612 LOGP(DMGCP, LOGL_ERROR, "MGCP message too long.\n");
613 return;
614 }
615
616 msg->l2h[msgb_l2len(msg)] = '\0';
617
618 if (bsc_mgcp_parse_response((const char *) msg->l2h, &code, transaction_id) != 0) {
619 LOGP(DMGCP, LOGL_ERROR, "Failed to parse response code.\n");
620 return;
621 }
622
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100623 for (i = 1; i < bsc->nat->mgcp_cfg->trunk.number_endpoints; ++i) {
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200624 if (bsc->nat->bsc_endpoints[i].bsc != bsc)
625 continue;
Holger Hans Peter Freyther3f7c7d02010-04-05 18:00:05 +0200626 /* no one listening? a bug? */
627 if (!bsc->nat->bsc_endpoints[i].transaction_id)
628 continue;
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200629 if (strcmp(transaction_id, bsc->nat->bsc_endpoints[i].transaction_id) != 0)
630 continue;
631
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100632 endp = &bsc->nat->mgcp_cfg->trunk.endpoints[i];
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200633 bsc_endp = &bsc->nat->bsc_endpoints[i];
634 break;
635 }
636
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200637 if (!bsc_endp && strncmp("nat-", transaction_id, 4) == 0) {
638 handle_dlcx_response(bsc, msg, code, transaction_id);
639 return;
640 }
641
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200642 if (!bsc_endp) {
Holger Hans Peter Freytherb9ac37d2010-04-05 17:58:52 +0200643 LOGP(DMGCP, LOGL_ERROR, "Could not find active endpoint: %s for msg: '%s'\n",
644 transaction_id, (const char *) msg->l2h);
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200645 return;
646 }
647
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800648 endp->ci = bsc_mgcp_extract_ci((const char *) msg->l2h);
Holger Hans Peter Freytherb84b5f62010-08-06 08:34:46 +0800649 if (endp->ci == CI_UNUSED) {
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800650 free_chan_downstream(endp, bsc_endp, bsc);
Holger Hans Peter Freytherb84b5f62010-08-06 08:34:46 +0800651 return;
652 }
Holger Hans Peter Freytherdd16b422010-04-07 09:53:54 +0200653
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200654 /* free some stuff */
655 talloc_free(bsc_endp->transaction_id);
656 bsc_endp->transaction_id = NULL;
Holger Hans Peter Freyther5b2726e2010-08-06 09:05:05 +0800657 bsc_endp->transaction_state = 0;
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200658
Holger Hans Peter Freytherdd16b422010-04-07 09:53:54 +0200659 /*
660 * rewrite the information. In case the endpoint was deleted
661 * there should be nothing for us to rewrite so putting endp->rtp_port
662 * with the value of 0 should be no problem.
663 */
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800664 output = bsc_mgcp_rewrite((char * ) msg->l2h, msgb_l2len(msg), -1,
Holger Hans Peter Freyther58ff2192010-08-05 03:08:35 +0800665 bsc->nat->mgcp_cfg->source_addr, endp->net_end.local_port);
Holger Hans Peter Freyther5cc94fb2010-04-05 22:56:49 +0200666
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200667 if (!output) {
668 LOGP(DMGCP, LOGL_ERROR, "Failed to rewrite MGCP msg.\n");
669 return;
670 }
671
Holger Hans Peter Freyther77956aa2012-11-05 13:52:53 +0100672 mgcp_queue_for_call_agent(bsc->nat, output);
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200673}
674
675int bsc_mgcp_parse_response(const char *str, int *code, char transaction[60])
676{
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200677 int rc;
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200678 /* we want to parse two strings */
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200679 rc = sscanf(str, "%3d %59s\n", code, transaction) != 2;
680 transaction[59] = '\0';
681 return rc;
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200682}
683
Holger Hans Peter Freyther46340132010-08-06 08:26:54 +0800684uint32_t bsc_mgcp_extract_ci(const char *str)
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200685{
Holger Hans Peter Freyther46340132010-08-06 08:26:54 +0800686 unsigned int ci;
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200687 char *res = strstr(str, "I: ");
Holger Hans Peter Freyther9c31cfc2010-08-06 08:19:05 +0800688 if (!res) {
689 LOGP(DMGCP, LOGL_ERROR, "No CI in msg '%s'\n", str);
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200690 return CI_UNUSED;
Holger Hans Peter Freyther9c31cfc2010-08-06 08:19:05 +0800691 }
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200692
Holger Hans Peter Freyther46340132010-08-06 08:26:54 +0800693 if (sscanf(res, "I: %u", &ci) != 1) {
Holger Hans Peter Freyther9c31cfc2010-08-06 08:19:05 +0800694 LOGP(DMGCP, LOGL_ERROR, "Failed to parse CI in msg '%s'\n", str);
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200695 return CI_UNUSED;
Holger Hans Peter Freyther9c31cfc2010-08-06 08:19:05 +0800696 }
697
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200698 return ci;
699}
700
Holger Hans Peter Freyther9592c452012-01-17 15:58:48 +0100701/**
702 * Create a new MGCPCommand based on the input and endpoint from a message
703 */
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800704static void patch_mgcp(struct msgb *output, const char *op, const char *tok,
705 int endp, int len, int cr)
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200706{
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800707 int slen;
708 int ret;
709 char buf[40];
710
711 buf[0] = buf[39] = '\0';
712 ret = sscanf(tok, "%*s %s", buf);
Holger Hans Peter Freyther9592c452012-01-17 15:58:48 +0100713 if (ret != 1) {
714 LOGP(DMGCP, LOGL_ERROR,
715 "Failed to find Endpoint in: %s\n", tok);
716 return;
717 }
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800718
719 slen = sprintf((char *) output->l3h, "%s %s %x@mgw MGCP 1.0%s",
720 op, buf, endp, cr ? "\r\n" : "\n");
721 output->l3h = msgb_put(output, slen);
722}
723
724/* we need to replace some strings... */
725struct msgb *bsc_mgcp_rewrite(char *input, int length, int endpoint, const char *ip, int port)
726{
Holger Hans Peter Freyther3dfe8a12012-11-07 11:36:58 +0100727 static const char crcx_str[] = "CRCX ";
728 static const char dlcx_str[] = "DLCX ";
729 static const char mdcx_str[] = "MDCX ";
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800730
Holger Hans Peter Freyther3dfe8a12012-11-07 11:36:58 +0100731 static const char ip_str[] = "c=IN IP4 ";
732 static const char aud_str[] = "m=audio ";
733 static const char fmt_str[] = "a=fmtp:";
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200734
735 char buf[128];
736 char *running, *token;
737 struct msgb *output;
738
Holger Hans Peter Freythere2f34d52012-11-06 13:16:26 +0100739 /* keep state to add the a=fmtp line */
740 int found_fmtp = 0;
741 int payload = -1;
742 int cr = 1;
743
744 if (length > 4096 - 256) {
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200745 LOGP(DMGCP, LOGL_ERROR, "Input is too long.\n");
746 return NULL;
747 }
748
749 output = msgb_alloc_headroom(4096, 128, "MGCP rewritten");
750 if (!output) {
751 LOGP(DMGCP, LOGL_ERROR, "Failed to allocate new MGCP msg.\n");
752 return NULL;
753 }
754
Holger Hans Peter Freyther8d200652010-04-04 18:09:10 +0200755 running = input;
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200756 output->l2h = output->data;
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800757 output->l3h = output->l2h;
Holger Hans Peter Freyther9e5300a2010-04-04 19:34:44 +0200758 for (token = strsep(&running, "\n"); running; token = strsep(&running, "\n")) {
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200759 int len = strlen(token);
Holger Hans Peter Freythere2f34d52012-11-06 13:16:26 +0100760 cr = len > 0 && token[len - 1] == '\r';
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200761
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800762 if (strncmp(crcx_str, token, (sizeof crcx_str) - 1) == 0) {
763 patch_mgcp(output, "CRCX", token, endpoint, len, cr);
764 } else if (strncmp(dlcx_str, token, (sizeof dlcx_str) - 1) == 0) {
765 patch_mgcp(output, "DLCX", token, endpoint, len, cr);
766 } else if (strncmp(mdcx_str, token, (sizeof mdcx_str) - 1) == 0) {
767 patch_mgcp(output, "MDCX", token, endpoint, len, cr);
768 } else if (strncmp(ip_str, token, (sizeof ip_str) - 1) == 0) {
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200769 output->l3h = msgb_put(output, strlen(ip_str));
770 memcpy(output->l3h, ip_str, strlen(ip_str));
771 output->l3h = msgb_put(output, strlen(ip));
772 memcpy(output->l3h, ip, strlen(ip));
Holger Hans Peter Freyther9e5300a2010-04-04 19:34:44 +0200773
774 if (cr) {
775 output->l3h = msgb_put(output, 2);
776 output->l3h[0] = '\r';
777 output->l3h[1] = '\n';
778 } else {
779 output->l3h = msgb_put(output, 1);
780 output->l3h[0] = '\n';
781 }
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200782 } else if (strncmp(aud_str, token, (sizeof aud_str) - 1) == 0) {
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200783 if (sscanf(token, "m=audio %*d RTP/AVP %d", &payload) != 1) {
784 LOGP(DMGCP, LOGL_ERROR, "Could not parsed audio line.\n");
785 msgb_free(output);
786 return NULL;
787 }
788
Holger Hans Peter Freyther9e5300a2010-04-04 19:34:44 +0200789 snprintf(buf, sizeof(buf)-1, "m=audio %d RTP/AVP %d%s",
790 port, payload, cr ? "\r\n" : "\n");
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200791 buf[sizeof(buf)-1] = '\0';
792
793 output->l3h = msgb_put(output, strlen(buf));
794 memcpy(output->l3h, buf, strlen(buf));
Holger Hans Peter Freythere2f34d52012-11-06 13:16:26 +0100795 } else if (strncmp(fmt_str, token, (sizeof fmt_str) - 1) == 0) {
796 found_fmtp = 1;
797 goto copy;
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200798 } else {
Holger Hans Peter Freythere2f34d52012-11-06 13:16:26 +0100799copy:
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200800 output->l3h = msgb_put(output, len + 1);
801 memcpy(output->l3h, token, len);
802 output->l3h[len] = '\n';
803 }
804 }
805
Holger Hans Peter Freythere2f34d52012-11-06 13:16:26 +0100806 /*
807 * the above code made sure that we have 128 bytes lefts. So we can
808 * safely append another line.
809 */
810 if (!found_fmtp && payload != -1) {
811 snprintf(buf, sizeof(buf) - 1, "a=fmtp:%d mode-set=2%s",
812 payload, cr ? "\r\n" : "\n");
813 buf[sizeof(buf) - 1] = '\0';
814 output->l3h = msgb_put(output, strlen(buf));
815 memcpy(output->l3h, buf, strlen(buf));
816 }
817
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200818 return output;
819}
820
Holger Hans Peter Freytherc3271872012-11-05 14:54:56 +0100821/*
822 * This comes from the MSC and we will now parse it. The caller needs
823 * to free the msgb.
824 */
825void bsc_nat_handle_mgcp(struct bsc_nat *nat, struct msgb *msg)
826{
827 struct msgb *resp;
828
829 if (!nat->mgcp_ipa) {
830 LOGP(DMGCP, LOGL_ERROR, "MGCP message not allowed on IPA.\n");
831 return;
832 }
833
834 if (msgb_l2len(msg) > sizeof(nat->mgcp_msg) - 1) {
835 LOGP(DMGCP, LOGL_ERROR, "MGCP msg too big for handling.\n");
836 return;
837 }
838
839 memcpy(nat->mgcp_msg, msg->l2h, msgb_l2len(msg));
840 nat->mgcp_length = msgb_l2len(msg);
841 nat->mgcp_msg[nat->mgcp_length] = '\0';
842
843 /* now handle the message */
844 resp = mgcp_handle_message(nat->mgcp_cfg, msg);
845
846 /* we do have a direct answer... e.g. AUEP */
847 if (resp)
848 mgcp_queue_for_call_agent(nat, resp);
849
850 return;
851}
852
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200853static int mgcp_do_read(struct osmo_fd *fd)
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200854{
855 struct bsc_nat *nat;
856 struct msgb *msg, *resp;
857 int rc;
858
Holger Hans Peter Freyther8d200652010-04-04 18:09:10 +0200859 nat = fd->data;
860
861 rc = read(fd->fd, nat->mgcp_msg, sizeof(nat->mgcp_msg) - 1);
862 if (rc <= 0) {
863 LOGP(DMGCP, LOGL_ERROR, "Failed to read errno: %d\n", errno);
864 return -1;
865 }
866
867 nat->mgcp_msg[rc] = '\0';
868 nat->mgcp_length = rc;
869
870 msg = msgb_alloc(sizeof(nat->mgcp_msg), "MGCP GW Read");
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200871 if (!msg) {
872 LOGP(DMGCP, LOGL_ERROR, "Failed to create buffer.\n");
873 return -1;
874 }
875
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200876 msg->l2h = msgb_put(msg, rc);
Holger Hans Peter Freyther8d200652010-04-04 18:09:10 +0200877 memcpy(msg->l2h, nat->mgcp_msg, msgb_l2len(msg));
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200878 resp = mgcp_handle_message(nat->mgcp_cfg, msg);
879 msgb_free(msg);
880
881 /* we do have a direct answer... e.g. AUEP */
Holger Hans Peter Freyther77956aa2012-11-05 13:52:53 +0100882 if (resp)
883 mgcp_queue_for_call_agent(nat, resp);
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200884
885 return 0;
886}
887
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200888static int mgcp_do_write(struct osmo_fd *bfd, struct msgb *msg)
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200889{
890 int rc;
891
892 rc = write(bfd->fd, msg->data, msg->len);
893
894 if (rc != msg->len) {
895 LOGP(DMGCP, LOGL_ERROR, "Failed to write msg to MGCP CallAgent.\n");
896 return -1;
897 }
898
899 return rc;
900}
901
Holger Hans Peter Freytherc3271872012-11-05 14:54:56 +0100902static int init_mgcp_socket(struct bsc_nat *nat, struct mgcp_config *cfg)
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200903{
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200904 struct sockaddr_in addr;
Holger Hans Peter Freytherc3271872012-11-05 14:54:56 +0100905 int on;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200906
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800907 cfg->gw_fd.bfd.fd = socket(AF_INET, SOCK_DGRAM, 0);
908 if (cfg->gw_fd.bfd.fd < 0) {
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200909 LOGP(DMGCP, LOGL_ERROR, "Failed to create MGCP socket. errno: %d\n", errno);
910 return -1;
911 }
912
913 on = 1;
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800914 setsockopt(cfg->gw_fd.bfd.fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200915
916 addr.sin_family = AF_INET;
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800917 addr.sin_port = htons(cfg->source_port);
918 inet_aton(cfg->source_addr, &addr.sin_addr);
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200919
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800920 if (bind(cfg->gw_fd.bfd.fd, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
Holger Hans Peter Freytherd000c272011-03-29 17:12:07 +0200921 LOGP(DMGCP, LOGL_ERROR, "Failed to bind on %s:%d errno: %d\n",
922 cfg->source_addr, cfg->source_port, errno);
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800923 close(cfg->gw_fd.bfd.fd);
924 cfg->gw_fd.bfd.fd = -1;
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200925 return -1;
926 }
927
928 addr.sin_port = htons(2727);
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800929 inet_aton(cfg->call_agent_addr, &addr.sin_addr);
930 if (connect(cfg->gw_fd.bfd.fd, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200931 LOGP(DMGCP, LOGL_ERROR, "Failed to connect to: '%s'. errno: %d\n",
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800932 cfg->call_agent_addr, errno);
933 close(cfg->gw_fd.bfd.fd);
934 cfg->gw_fd.bfd.fd = -1;
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200935 return -1;
936 }
937
Pablo Neira Ayusoe1273b12011-05-06 12:09:47 +0200938 osmo_wqueue_init(&cfg->gw_fd, 10);
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800939 cfg->gw_fd.bfd.when = BSC_FD_READ;
940 cfg->gw_fd.bfd.data = nat;
941 cfg->gw_fd.read_cb = mgcp_do_read;
942 cfg->gw_fd.write_cb = mgcp_do_write;
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200943
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200944 if (osmo_fd_register(&cfg->gw_fd.bfd) != 0) {
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200945 LOGP(DMGCP, LOGL_ERROR, "Failed to register MGCP fd.\n");
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800946 close(cfg->gw_fd.bfd.fd);
947 cfg->gw_fd.bfd.fd = -1;
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200948 return -1;
949 }
950
Holger Hans Peter Freytherc3271872012-11-05 14:54:56 +0100951 return 0;
952}
953
954int bsc_mgcp_nat_init(struct bsc_nat *nat)
955{
956 struct mgcp_config *cfg = nat->mgcp_cfg;
957
958 if (!cfg->call_agent_addr) {
959 LOGP(DMGCP, LOGL_ERROR, "The BSC nat requires the call agent ip to be set.\n");
960 return -1;
961 }
962
963 if (cfg->bts_ip) {
964 LOGP(DMGCP, LOGL_ERROR, "Do not set the BTS ip for the nat.\n");
965 return -1;
966 }
967
968 /* initialize the MGCP socket */
969 if (!nat->mgcp_ipa) {
970 int rc = init_mgcp_socket(nat, cfg);
971 if (rc != 0)
972 return rc;
973 }
974
975
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200976 /* some more MGCP config handling */
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800977 cfg->data = nat;
978 cfg->policy_cb = bsc_mgcp_policy_cb;
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100979 cfg->trunk.force_realloc = 1;
Holger Hans Peter Freytherd5e6c232010-08-05 10:08:36 +0000980
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800981 if (cfg->bts_ip)
982 talloc_free(cfg->bts_ip);
983 cfg->bts_ip = "";
Holger Hans Peter Freytherd5e6c232010-08-05 10:08:36 +0000984
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200985 nat->bsc_endpoints = talloc_zero_array(nat,
986 struct bsc_endpoint,
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100987 cfg->trunk.number_endpoints + 1);
Holger Hans Peter Freyther3c792142010-09-19 04:34:04 +0800988 if (!nat->bsc_endpoints) {
989 LOGP(DMGCP, LOGL_ERROR, "Failed to allocate nat endpoints\n");
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +0800990 close(cfg->gw_fd.bfd.fd);
991 cfg->gw_fd.bfd.fd = -1;
Holger Hans Peter Freyther3c792142010-09-19 04:34:04 +0800992 return -1;
993 }
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200994
Holger Hans Peter Freytherf2eedff2010-09-19 04:36:07 +0800995 if (mgcp_reset_transcoder(cfg) < 0) {
996 LOGP(DMGCP, LOGL_ERROR, "Failed to send packet to the transcoder.\n");
997 talloc_free(nat->bsc_endpoints);
998 nat->bsc_endpoints = NULL;
999 close(cfg->gw_fd.bfd.fd);
1000 cfg->gw_fd.bfd.fd = -1;
1001 return -1;
1002 }
1003
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001004 return 0;
1005}
Holger Hans Peter Freyther26a43892010-04-05 23:09:27 +02001006
1007void bsc_mgcp_clear_endpoints_for(struct bsc_connection *bsc)
1008{
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +08001009 struct rate_ctr *ctr = NULL;
Holger Hans Peter Freyther26a43892010-04-05 23:09:27 +02001010 int i;
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +08001011
1012 if (bsc->cfg)
1013 ctr = &bsc->cfg->stats.ctrg->ctr[BCFG_CTR_DROPPED_CALLS];
1014
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +01001015 for (i = 1; i < bsc->nat->mgcp_cfg->trunk.number_endpoints; ++i) {
Holger Hans Peter Freyther26a43892010-04-05 23:09:27 +02001016 struct bsc_endpoint *bsc_endp = &bsc->nat->bsc_endpoints[i];
1017
1018 if (bsc_endp->bsc != bsc)
1019 continue;
1020
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +08001021 if (ctr)
1022 rate_ctr_inc(ctr);
1023
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +08001024 bsc_mgcp_free_endpoint(bsc->nat, i);
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +01001025 mgcp_free_endp(&bsc->nat->mgcp_cfg->trunk.endpoints[i]);
Holger Hans Peter Freyther26a43892010-04-05 23:09:27 +02001026 }
1027}