blob: 9fd99677afe35f537d784c7a6a61f6d4f4d29cb3 [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 Freytherab223352013-04-22 09:07:39 +020046#include <openbsc/bsc_nat_callstats.h>
Holger Hans Peter Freytherc2b31ed2010-07-31 05:17:17 +080047#include <openbsc/bsc_nat_sccp.h>
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080048#include <openbsc/gsm_data.h>
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080049#include <openbsc/debug.h>
Holger Hans Peter Freyther19c530c2010-10-13 23:52:01 +020050#include <openbsc/ipaccess.h>
Holger Hans Peter Freyther241e1302010-03-31 09:16:56 +020051#include <openbsc/mgcp.h>
52#include <openbsc/mgcp_internal.h>
Pablo Neira Ayusob769f3c2014-08-27 17:02:52 +020053#include <openbsc/osmux.h>
54
Harald Welteba874b82014-08-20 23:47:15 +020055#include <osmocom/ctrl/control_cmd.h>
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080056
Harald Welted5db12c2010-08-03 15:11:51 +020057#include <osmocom/sccp/sccp.h>
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +080058
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010059#include <osmocom/core/talloc.h>
Harald Welted36ff762011-03-23 18:26:56 +010060#include <osmocom/gsm/gsm0808.h>
61#include <osmocom/gsm/protocol/gsm_08_08.h>
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +020062
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +080063#include <netinet/in.h>
64#include <arpa/inet.h>
65
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +020066#include <errno.h>
67#include <unistd.h>
68
Holger Hans Peter Freytherc3271872012-11-05 14:54:56 +010069static void send_direct(struct bsc_nat *nat, struct msgb *output)
Holger Hans Peter Freyther77956aa2012-11-05 13:52:53 +010070{
71 if (osmo_wqueue_enqueue(&nat->mgcp_cfg->gw_fd, output) != 0) {
72 LOGP(DMGCP, LOGL_ERROR, "Failed to queue MGCP msg.\n");
73 msgb_free(output);
74 }
75}
76
Holger Hans Peter Freytherc3271872012-11-05 14:54:56 +010077static void mgcp_queue_for_call_agent(struct bsc_nat *nat, struct msgb *output)
78{
79 if (nat->mgcp_ipa)
80 bsc_nat_send_mgcp_to_msc(nat, output);
81 else
82 send_direct(nat, output);
83}
84
Holger Hans Peter Freyther9ec030d2011-02-27 11:04:27 +010085int bsc_mgcp_nr_multiplexes(int max_endpoints)
86{
87 int div = max_endpoints / 32;
88
89 if ((max_endpoints % 32) != 0)
90 div += 1;
91
92 return div;
93}
94
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +010095static int bsc_init_endps_if_needed(struct bsc_connection *con)
96{
Holger Hans Peter Freyther9ec030d2011-02-27 11:04:27 +010097 int multiplexes;
98
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +010099 /* we have done that */
100 if (con->_endpoint_status)
101 return 0;
102
103 /* we have no config... */
104 if (!con->cfg)
105 return -1;
106
Holger Hans Peter Freyther9ec030d2011-02-27 11:04:27 +0100107 multiplexes = bsc_mgcp_nr_multiplexes(con->cfg->max_endpoints);
108 con->number_multiplexes = multiplexes;
109 con->max_endpoints = con->cfg->max_endpoints;
110 con->_endpoint_status = talloc_zero_array(con, char, 32 * multiplexes + 1);
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +0100111 return con->_endpoint_status == NULL;
112}
113
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200114static int bsc_assign_endpoint(struct bsc_connection *bsc, struct nat_sccp_connection *con)
Holger Hans Peter Freyther45fd07d2010-08-28 18:22:14 +0800115{
Holger Hans Peter Freythera9e93312011-02-26 11:38:00 +0100116 int multiplex;
117 int timeslot;
Holger Hans Peter Freyther9ec030d2011-02-27 11:04:27 +0100118 const int number_endpoints = bsc->max_endpoints;
Holger Hans Peter Freyther45fd07d2010-08-28 18:22:14 +0800119 int i;
120
Holger Hans Peter Freythera9e93312011-02-26 11:38:00 +0100121 mgcp_endpoint_to_timeslot(bsc->last_endpoint, &multiplex, &timeslot);
122 timeslot += 1;
123
124 for (i = 0; i < number_endpoints; ++i) {
125 int endpoint;
126
127 /* Wrap around timeslots */
128 if (timeslot == 0)
129 timeslot = 1;
130
131 if (timeslot == 0x1f) {
132 timeslot = 1;
133 multiplex += 1;
134 }
135
136 /* Wrap around the multiplex */
137 if (multiplex >= bsc->number_multiplexes)
138 multiplex = 0;
139
140 endpoint = mgcp_timeslot_to_endpoint(multiplex, timeslot);
Holger Hans Peter Freyther45fd07d2010-08-28 18:22:14 +0800141
Holger Hans Peter Freyther9ec030d2011-02-27 11:04:27 +0100142 /* Now check if we are allowed to assign this one */
143 if (endpoint >= bsc->max_endpoints) {
144 multiplex = 0;
145 timeslot = 1;
146 endpoint = mgcp_timeslot_to_endpoint(multiplex, timeslot);
147 }
148
149
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +0100150 if (bsc->_endpoint_status[endpoint] == 0) {
151 bsc->_endpoint_status[endpoint] = 1;
Holger Hans Peter Freyther45fd07d2010-08-28 18:22:14 +0800152 con->bsc_endp = endpoint;
153 bsc->last_endpoint = endpoint;
154 return 0;
155 }
Holger Hans Peter Freythera9e93312011-02-26 11:38:00 +0100156
157 timeslot += 1;
Holger Hans Peter Freyther45fd07d2010-08-28 18:22:14 +0800158 }
159
160 return -1;
161}
162
163static uint16_t create_cic(int endpoint)
164{
165 int timeslot, multiplex;
166
167 mgcp_endpoint_to_timeslot(endpoint, &multiplex, &timeslot);
168 return (multiplex << 5) | (timeslot & 0x1f);
169}
170
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200171int bsc_mgcp_assign_patch(struct nat_sccp_connection *con, struct msgb *msg)
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800172{
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200173 struct nat_sccp_connection *mcon;
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800174 struct tlv_parsed tp;
Holger Hans Peter Freythere2c15202010-07-23 19:09:21 +0800175 uint16_t cic;
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800176 uint8_t timeslot;
177 uint8_t multiplex;
Holger Hans Peter Freyther14069772010-11-04 17:14:41 +0100178 unsigned int endp;
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800179
180 if (!msg->l3h) {
181 LOGP(DNAT, LOGL_ERROR, "Assignment message should have l3h pointer.\n");
182 return -1;
183 }
184
185 if (msgb_l3len(msg) < 3) {
186 LOGP(DNAT, LOGL_ERROR, "Assignment message has not enough space for GSM0808.\n");
187 return -1;
188 }
189
190 tlv_parse(&tp, gsm0808_att_tlvdef(), msg->l3h + 3, msgb_l3len(msg) - 3, 0, 0);
191 if (!TLVP_PRESENT(&tp, GSM0808_IE_CIRCUIT_IDENTITY_CODE)) {
192 LOGP(DNAT, LOGL_ERROR, "Circuit identity code not found in assignment message.\n");
193 return -1;
194 }
195
Daniel Willmann8a485f02014-06-27 17:05:47 +0200196 cic = ntohs(tlvp_val16_unal(&tp, GSM0808_IE_CIRCUIT_IDENTITY_CODE));
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800197 timeslot = cic & 0x1f;
198 multiplex = (cic & ~0x1f) >> 5;
199
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800200
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800201 endp = mgcp_timeslot_to_endpoint(multiplex, timeslot);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800202
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100203 if (endp >= con->bsc->nat->mgcp_cfg->trunk.number_endpoints) {
Holger Hans Peter Freyther14069772010-11-04 17:14:41 +0100204 LOGP(DNAT, LOGL_ERROR,
205 "MSC attempted to assign bad endpoint 0x%x\n",
206 endp);
207 return -1;
208 }
209
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800210 /* find stale connections using that endpoint */
211 llist_for_each_entry(mcon, &con->bsc->nat->sccp_connections, list_entry) {
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800212 if (mcon->msc_endp == endp) {
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800213 LOGP(DNAT, LOGL_ERROR,
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800214 "Endpoint %d was assigned to 0x%x and now 0x%x\n",
215 endp,
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800216 sccp_src_ref_to_int(&mcon->patched_ref),
217 sccp_src_ref_to_int(&con->patched_ref));
218 bsc_mgcp_dlcx(mcon);
219 }
220 }
221
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800222 con->msc_endp = endp;
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +0100223 if (bsc_init_endps_if_needed(con->bsc) != 0)
224 return -1;
Holger Hans Peter Freyther45fd07d2010-08-28 18:22:14 +0800225 if (bsc_assign_endpoint(con->bsc, con) != 0)
226 return -1;
227
228 /*
229 * now patch the message for the new CIC...
230 * still assumed to be one multiplex only
231 */
232 cic = htons(create_cic(con->bsc_endp));
233 memcpy((uint8_t *) TLVP_VAL(&tp, GSM0808_IE_CIRCUIT_IDENTITY_CODE),
234 &cic, sizeof(cic));
235
Holger Hans Peter Freyther465313e2010-06-15 18:49:53 +0800236 return 0;
237}
238
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800239static void bsc_mgcp_free_endpoint(struct bsc_nat *nat, int i)
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200240{
241 if (nat->bsc_endpoints[i].transaction_id) {
242 talloc_free(nat->bsc_endpoints[i].transaction_id);
243 nat->bsc_endpoints[i].transaction_id = NULL;
244 }
245
Holger Hans Peter Freyther5b2726e2010-08-06 09:05:05 +0800246 nat->bsc_endpoints[i].transaction_state = 0;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200247 nat->bsc_endpoints[i].bsc = NULL;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200248}
249
Holger Hans Peter Freyther241e1302010-03-31 09:16:56 +0200250void bsc_mgcp_free_endpoints(struct bsc_nat *nat)
251{
252 int i;
253
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100254 for (i = 1; i < nat->mgcp_cfg->trunk.number_endpoints; ++i){
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200255 bsc_mgcp_free_endpoint(nat, i);
Holger Hans Peter Freythercb6ad702014-07-22 15:00:52 +0200256 mgcp_release_endp(&nat->mgcp_cfg->trunk.endpoints[i]);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800257 }
Holger Hans Peter Freyther241e1302010-03-31 09:16:56 +0200258}
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200259
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800260/* send a MDCX where we do not want a response */
Holger Hans Peter Freyther601180f2010-08-29 23:40:33 +0800261static void bsc_mgcp_send_mdcx(struct bsc_connection *bsc, int port, struct mgcp_endpoint *endp)
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800262{
263 char buf[2096];
264 int len;
265
266 len = snprintf(buf, sizeof(buf),
Pablo Neira Ayusob769f3c2014-08-27 17:02:52 +0200267 "MDCX 23 %x@mgw MGCP 1.0\r\n"
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800268 "Z: noanswer\r\n"
269 "\r\n"
270 "c=IN IP4 %s\r\n"
271 "m=audio %d RTP/AVP 255\r\n",
Holger Hans Peter Freythere6ed0092015-08-20 14:58:19 +0200272 port, mgcp_bts_src_addr(endp),
Holger Hans Peter Freyther58ff2192010-08-05 03:08:35 +0800273 endp->bts_end.local_port);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800274 if (len < 0) {
Holger Hans Peter Freyther74568912012-09-14 15:51:43 +0200275 LOGP(DMGCP, LOGL_ERROR, "snprintf for MDCX failed.\n");
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800276 return;
277 }
Holger Hans Peter Freytherd38aa452010-08-30 11:58:49 +0800278
Holger Hans Peter Freyther6de9d0b2012-10-30 16:32:19 +0100279 bsc_write_mgcp(bsc, (uint8_t *) buf, len);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800280}
281
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200282static void bsc_mgcp_send_dlcx(struct bsc_connection *bsc, int endpoint, int trans)
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800283{
284 char buf[2096];
285 int len;
286
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200287 /*
288 * The following is a bit of a spec violation. According to the
289 * MGCP grammar the transaction id is are upto 9 digits but we
290 * prefix it with an alpha numeric value so we can easily recognize
291 * it as a response.
292 */
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800293 len = snprintf(buf, sizeof(buf),
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200294 "DLCX nat-%u %x@mgw MGCP 1.0\r\n",
295 trans, endpoint);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800296 if (len < 0) {
297 LOGP(DMGCP, LOGL_ERROR, "snprintf for DLCX failed.\n");
298 return;
299 }
300
Holger Hans Peter Freytherdbd16fe2010-07-23 19:08:55 +0800301 bsc_write_mgcp(bsc, (uint8_t *) buf, len);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800302}
303
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200304void bsc_mgcp_init(struct nat_sccp_connection *con)
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800305{
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800306 con->msc_endp = -1;
307 con->bsc_endp = -1;
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800308}
309
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200310/**
311 * This code will remember the network side of the audio statistics and
312 * once the internal DLCX response arrives this can be combined with the
313 * the BSC side and forwarded as a trap.
314 */
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200315static void remember_pending_dlcx(struct nat_sccp_connection *con, uint32_t transaction)
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200316{
317 struct bsc_nat_call_stats *stats;
318 struct bsc_connection *bsc = con->bsc;
319 struct mgcp_endpoint *endp;
320
321 stats = talloc_zero(bsc, struct bsc_nat_call_stats);
322 if (!stats) {
323 LOGP(DNAT, LOGL_NOTICE,
324 "Failed to allocate statistics for endpoint 0x%x\n",
325 con->msc_endp);
326 return;
327 }
328
329 /* take the endpoint here */
330 endp = &bsc->nat->mgcp_cfg->trunk.endpoints[con->msc_endp];
331
332 stats->remote_ref = con->remote_ref;
333 stats->src_ref = con->patched_ref;
334
335 stats->ci = endp->ci;
336 stats->bts_rtp_port = endp->bts_end.rtp_port;
337 stats->bts_addr = endp->bts_end.addr;
338 stats->net_rtp_port = endp->net_end.rtp_port;
339 stats->net_addr = endp->net_end.addr;
340
341 stats->net_ps = endp->net_end.packets;
342 stats->net_os = endp->net_end.octets;
343 stats->bts_pr = endp->bts_end.packets;
344 stats->bts_or = endp->bts_end.octets;
345 mgcp_state_calc_loss(&endp->bts_state, &endp->bts_end,
346 &stats->bts_expected, &stats->bts_loss);
347 stats->bts_jitter = mgcp_state_calc_jitter(&endp->bts_state);
348
349 stats->trans_id = transaction;
350 stats->msc_endpoint = con->msc_endp;
351
Holger Hans Peter Freyther7c831ec2012-11-12 18:36:00 +0100352 /*
353 * Too many pending requests.. let's remove the first two items.
354 */
355 if (!llist_empty(&bsc->pending_dlcx) &&
356 bsc->pending_dlcx_count >= bsc->cfg->max_endpoints * 3) {
357 struct bsc_nat_call_stats *tmp;
358 LOGP(DNAT, LOGL_ERROR,
359 "Too many(%d) pending DLCX responses on BSC: %d\n",
360 bsc->pending_dlcx_count, bsc->cfg->nr);
361 bsc->pending_dlcx_count -= 1;
362 tmp = (struct bsc_nat_call_stats *) bsc->pending_dlcx.next;
363 llist_del(&tmp->entry);
364 talloc_free(tmp);
365 }
366
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200367 bsc->pending_dlcx_count += 1;
368 llist_add_tail(&stats->entry, &bsc->pending_dlcx);
369}
370
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200371void bsc_mgcp_dlcx(struct nat_sccp_connection *con)
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800372{
373 /* send a DLCX down the stream */
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +0100374 if (con->bsc_endp != -1 && con->bsc->_endpoint_status) {
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200375 LOGP(DNAT, LOGL_NOTICE,
Holger Hans Peter Freyther931ad6a2012-11-12 18:00:25 +0100376 "Endpoint 0x%x was allocated for bsc: %d. Freeing it.\n",
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200377 con->bsc_endp, con->bsc->cfg->nr);
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +0100378 if (con->bsc->_endpoint_status[con->bsc_endp] != 1)
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800379 LOGP(DNAT, LOGL_ERROR, "Endpoint 0x%x was not in use\n", con->bsc_endp);
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200380 remember_pending_dlcx(con, con->bsc->next_transaction);
Holger Hans Peter Freythered500e32011-02-25 17:09:07 +0100381 con->bsc->_endpoint_status[con->bsc_endp] = 0;
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200382 bsc_mgcp_send_dlcx(con->bsc, con->bsc_endp, con->bsc->next_transaction++);
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800383 bsc_mgcp_free_endpoint(con->bsc->nat, con->msc_endp);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800384 }
385
386 bsc_mgcp_init(con);
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200387
388}
389
390/*
391 * Search for the pending request
392 */
393static void handle_dlcx_response(struct bsc_connection *bsc, struct msgb *msg,
394 int code, const char *transaction)
395{
396 uint32_t trans_id = UINT32_MAX;
397 uint32_t b_ps, b_os, n_pr, n_or, jitter;
398 int loss;
399 struct bsc_nat_call_stats *tmp, *stat = NULL;
400 struct ctrl_cmd *cmd;
401
402 /* parse the transaction identifier */
403 int rc = sscanf(transaction, "nat-%u", &trans_id);
404 if (rc != 1) {
405 LOGP(DNAT, LOGL_ERROR, "Can not parse transaction id: '%s'\n",
406 transaction);
407 return;
408 }
409
410 /* find the answer for the request we made */
411 llist_for_each_entry(tmp, &bsc->pending_dlcx, entry) {
412 if (trans_id != tmp->trans_id)
413 continue;
414
415 stat = tmp;
416 break;
417 }
418
419 if (!stat) {
420 LOGP(DNAT, LOGL_ERROR,
421 "Can not find transaction for: %u\n", trans_id);
422 return;
423 }
424
425 /* attempt to parse the data now */
426 rc = mgcp_parse_stats(msg, &b_ps, &b_os, &n_pr, &n_or, &loss, &jitter);
427 if (rc != 0)
428 LOGP(DNAT, LOGL_ERROR,
429 "Can not parse connection statistics: %d\n", rc);
430
431 /* send a trap now */
432 cmd = ctrl_cmd_create(bsc, CTRL_TYPE_TRAP);
433 if (!cmd) {
434 LOGP(DNAT, LOGL_ERROR,
435 "Creating a ctrl cmd failed.\n");
436 goto free_stat;
437 }
438
439 cmd->id = "0";
Holger Hans Peter Freytherac04d8d2012-11-13 21:54:36 +0100440 cmd->variable = talloc_asprintf(cmd, "net.0.bsc.%d.call_stats.v2",
441 bsc->cfg->nr);
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200442 cmd->reply = talloc_asprintf(cmd,
Holger Hans Peter Freytherac04d8d2012-11-13 21:54:36 +0100443 "mg_ip_addr=%s,mg_port=%d,",
444 inet_ntoa(stat->net_addr),
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200445 stat->net_rtp_port);
446 cmd->reply = talloc_asprintf_append(cmd->reply,
447 "endpoint_ip_addr=%s,endpoint_port=%d,",
448 inet_ntoa(stat->bts_addr),
449 stat->bts_rtp_port);
450 cmd->reply = talloc_asprintf_append(cmd->reply,
451 "nat_pkt_in=%u,nat_pkt_out=%u,"
452 "nat_bytes_in=%u,nat_bytes_out=%u,"
453 "nat_jitter=%u,nat_pkt_lost=%d,",
454 stat->bts_pr, stat->net_ps,
455 stat->bts_or, stat->net_os,
456 stat->bts_jitter, stat->bts_loss);
457 cmd->reply = talloc_asprintf_append(cmd->reply,
458 "bsc_pkt_in=%u,bsc_pkt_out=%u,"
459 "bsc_bytes_in=%u,bsc_bytes_out=%u,"
Holger Hans Peter Freyther7d7054e2012-11-12 19:05:16 +0100460 "bsc_jitter=%u,bsc_pkt_lost=%d,",
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200461 n_pr, b_ps,
462 n_or, b_os,
463 jitter, loss);
Holger Hans Peter Freyther7d7054e2012-11-12 19:05:16 +0100464 cmd->reply = talloc_asprintf_append(cmd->reply,
465 "sccp_src_ref=%u,sccp_dst_ref=%u",
466 sccp_src_ref_to_int(&stat->src_ref),
467 sccp_src_ref_to_int(&stat->remote_ref));
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200468
469 /* send it and be done */
470 ctrl_cmd_send_to_all(bsc->nat->ctrl, cmd);
471 talloc_free(cmd);
472
473free_stat:
474 bsc->pending_dlcx_count -= 1;
475 llist_del(&stat->entry);
476 talloc_free(stat);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800477}
478
479
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200480struct nat_sccp_connection *bsc_mgcp_find_con(struct bsc_nat *nat, int endpoint)
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200481{
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200482 struct nat_sccp_connection *con = NULL;
483 struct nat_sccp_connection *sccp;
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200484
485 llist_for_each_entry(sccp, &nat->sccp_connections, list_entry) {
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800486 if (sccp->msc_endp == -1)
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200487 continue;
Holger Hans Peter Freytherf4b34392010-08-28 16:08:39 +0800488 if (sccp->msc_endp != endpoint)
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200489 continue;
490
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800491 con = sccp;
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200492 }
493
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800494 if (con)
495 return con;
Holger Hans Peter Freythereb52e892010-04-18 02:14:45 +0800496
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200497 LOGP(DMGCP, LOGL_ERROR,
498 "Failed to find the connection for endpoint: 0x%x\n", endpoint);
Holger Hans Peter Freytherfc9bd232010-04-01 03:55:27 +0200499 return NULL;
500}
501
Holger Hans Peter Freyther20626dd2015-10-02 18:15:18 +0200502static int nat_osmux_only(struct mgcp_config *mgcp_cfg, struct bsc_config *bsc_cfg)
503{
504 if (mgcp_cfg->osmux == OSMUX_USAGE_ONLY)
505 return 1;
506 if (bsc_cfg->osmux == OSMUX_USAGE_ONLY)
507 return 1;
508 return 0;
509}
510
Holger Hans Peter Freythercb3c2c92012-10-24 21:53:07 +0200511static 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 +0200512{
513 struct bsc_nat *nat;
514 struct bsc_endpoint *bsc_endp;
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200515 struct nat_sccp_connection *sccp;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200516 struct mgcp_endpoint *mgcp_endp;
517 struct msgb *bsc_msg;
518
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100519 nat = tcfg->cfg->data;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200520 bsc_endp = &nat->bsc_endpoints[endpoint];
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100521 mgcp_endp = &nat->mgcp_cfg->trunk.endpoints[endpoint];
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200522
Holger Hans Peter Freytherfef76122010-04-24 21:05:18 +0800523 if (bsc_endp->transaction_id) {
524 LOGP(DMGCP, LOGL_ERROR, "Endpoint 0x%x had pending transaction: '%s'\n",
525 endpoint, bsc_endp->transaction_id);
526 talloc_free(bsc_endp->transaction_id);
527 bsc_endp->transaction_id = NULL;
Holger Hans Peter Freyther5b2726e2010-08-06 09:05:05 +0800528 bsc_endp->transaction_state = 0;
Holger Hans Peter Freytherfef76122010-04-24 21:05:18 +0800529 }
530 bsc_endp->bsc = NULL;
531
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800532 sccp = bsc_mgcp_find_con(nat, endpoint);
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200533
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800534 if (!sccp) {
Holger Hans Peter Freyther3d194d92010-04-24 21:02:01 +0800535 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 +0200536
537 switch (state) {
538 case MGCP_ENDP_CRCX:
539 return MGCP_POLICY_REJECT;
540 break;
541 case MGCP_ENDP_DLCX:
542 return MGCP_POLICY_CONT;
543 break;
544 case MGCP_ENDP_MDCX:
545 return MGCP_POLICY_CONT;
546 break;
547 default:
548 LOGP(DMGCP, LOGL_FATAL, "Unhandled state: %d\n", state);
549 return MGCP_POLICY_CONT;
550 break;
551 }
552 }
553
Pablo Neira Ayusob769f3c2014-08-27 17:02:52 +0200554 /* Allocate a Osmux circuit ID */
Holger Hans Peter Freyther20626dd2015-10-02 18:15:18 +0200555 if (state == MGCP_ENDP_CRCX) {
556 if (nat->mgcp_cfg->osmux && sccp->bsc->cfg->osmux) {
Holger Hans Peter Freyther1afe7c72015-10-04 11:11:11 +0200557 osmux_allocate_cid(mgcp_endp);
558 if (mgcp_endp->osmux.allocated_cid < 0 &&
559 nat_osmux_only(nat->mgcp_cfg, sccp->bsc->cfg)) {
Holger Hans Peter Freyther20626dd2015-10-02 18:15:18 +0200560 LOGP(DMGCP, LOGL_ERROR,
561 "Rejecting usage of endpoint\n");
562 return MGCP_POLICY_REJECT;
563 }
564 }
565 }
Pablo Neira Ayusob769f3c2014-08-27 17:02:52 +0200566
Holger Hans Peter Freytherdd16b422010-04-07 09:53:54 +0200567 /* we need to generate a new and patched message */
Jacob Erlbeck3dff27d2013-11-29 13:43:48 +0100568 bsc_msg = bsc_mgcp_rewrite((char *) nat->mgcp_msg, nat->mgcp_length,
Holger Hans Peter Freythere6ed0092015-08-20 14:58:19 +0200569 sccp->bsc_endp, mgcp_bts_src_addr(mgcp_endp),
Holger Hans Peter Freyther1afe7c72015-10-04 11:11:11 +0200570 mgcp_endp->bts_end.local_port,
571 mgcp_endp->osmux.allocated_cid,
Holger Hans Peter Freyther7f100c92015-04-23 20:25:17 -0400572 &mgcp_endp->net_end.codec.payload_type,
573 nat->sdp_ensure_amr_mode_set);
Holger Hans Peter Freytherdd16b422010-04-07 09:53:54 +0200574 if (!bsc_msg) {
575 LOGP(DMGCP, LOGL_ERROR, "Failed to patch the msg.\n");
576 return MGCP_POLICY_CONT;
577 }
578
579
Holger Hans Peter Freytherb3e0a032010-04-04 18:11:49 +0200580 bsc_endp->transaction_id = talloc_strdup(nat, transaction_id);
Holger Hans Peter Freyther5b2726e2010-08-06 09:05:05 +0800581 bsc_endp->transaction_state = state;
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800582 bsc_endp->bsc = sccp->bsc;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200583
584 /* we need to update some bits */
585 if (state == MGCP_ENDP_CRCX) {
586 struct sockaddr_in sock;
Pablo Neira Ayusocab6e752014-02-05 18:56:17 +0100587
Pablo Neira Ayusob769f3c2014-08-27 17:02:52 +0200588 /* Annotate the allocated Osmux CID until the bsc confirms that
589 * it agrees to use Osmux for this voice flow.
590 */
Holger Hans Peter Freyther1afe7c72015-10-04 11:11:11 +0200591 if (mgcp_endp->osmux.allocated_cid >= 0 &&
Pablo Neira Ayusob769f3c2014-08-27 17:02:52 +0200592 mgcp_endp->osmux.state != OSMUX_STATE_ENABLED) {
593 mgcp_endp->osmux.state = OSMUX_STATE_ACTIVATING;
Holger Hans Peter Freyther1afe7c72015-10-04 11:11:11 +0200594 mgcp_endp->osmux.cid = mgcp_endp->osmux.allocated_cid;
Pablo Neira Ayusocab6e752014-02-05 18:56:17 +0100595 }
596
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200597 socklen_t len = sizeof(sock);
Holger Hans Peter Freyther08a1b162010-04-18 02:26:16 +0800598 if (getpeername(sccp->bsc->write_queue.bfd.fd, (struct sockaddr *) &sock, &len) != 0) {
Holger Hans Peter Freyther92febd32010-04-06 11:17:07 +0200599 LOGP(DMGCP, LOGL_ERROR, "Can not get the peername...%d/%s\n",
600 errno, strerror(errno));
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200601 } else {
Holger Hans Peter Freythera17d7012010-08-05 01:34:51 +0800602 mgcp_endp->bts_end.addr = sock.sin_addr;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200603 }
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200604
Holger Hans Peter Freythere66cac32010-08-05 01:50:44 +0800605 /* send the message and a fake MDCX to force sending of a dummy packet */
Holger Hans Peter Freyther368a0a72011-01-07 16:54:46 +0100606 bsc_write(sccp->bsc, bsc_msg, IPAC_PROTO_MGCP_OLD);
Holger Hans Peter Freyther601180f2010-08-29 23:40:33 +0800607 bsc_mgcp_send_mdcx(sccp->bsc, sccp->bsc_endp, mgcp_endp);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800608 return MGCP_POLICY_DEFER;
609 } else if (state == MGCP_ENDP_DLCX) {
610 /* we will free the endpoint now and send a DLCX to the BSC */
Holger Hans Peter Freyther3a347f02010-05-01 10:31:53 +0800611 msgb_free(bsc_msg);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800612 bsc_mgcp_dlcx(sccp);
Pablo Neira Ayusob769f3c2014-08-27 17:02:52 +0200613
614 /* libmgcp clears the MGCP endpoint for us */
615 if (mgcp_endp->osmux.state == OSMUX_STATE_ENABLED)
Holger Hans Peter Freyther1afe7c72015-10-04 11:11:11 +0200616 osmux_release_cid(mgcp_endp);
Pablo Neira Ayusob769f3c2014-08-27 17:02:52 +0200617
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800618 return MGCP_POLICY_CONT;
619 } else {
Holger Hans Peter Freyther368a0a72011-01-07 16:54:46 +0100620 bsc_write(sccp->bsc, bsc_msg, IPAC_PROTO_MGCP_OLD);
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800621 return MGCP_POLICY_DEFER;
622 }
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +0200623}
624
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200625/*
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800626 * We do have a failure, free data downstream..
627 */
628static void free_chan_downstream(struct mgcp_endpoint *endp, struct bsc_endpoint *bsc_endp,
629 struct bsc_connection *bsc)
630{
Holger Hans Peter Freytherc021fbe2010-08-28 16:46:27 +0800631 LOGP(DMGCP, LOGL_ERROR, "No CI, freeing endpoint 0x%x in state %d\n",
632 ENDPOINT_NUMBER(endp), bsc_endp->transaction_state);
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800633
Holger Hans Peter Freytherc021fbe2010-08-28 16:46:27 +0800634 /* if a CRCX failed... send a DLCX down the stream */
635 if (bsc_endp->transaction_state == MGCP_ENDP_CRCX) {
Holger Hans Peter Freytherc279e392013-04-16 09:53:13 +0200636 struct nat_sccp_connection *con;
Holger Hans Peter Freytherc021fbe2010-08-28 16:46:27 +0800637 con = bsc_mgcp_find_con(bsc->nat, ENDPOINT_NUMBER(endp));
638 if (!con) {
639 LOGP(DMGCP, LOGL_ERROR,
640 "No SCCP connection for endp 0x%x\n",
641 ENDPOINT_NUMBER(endp));
642 } else {
643 if (con->bsc == bsc) {
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200644 bsc_mgcp_send_dlcx(bsc, con->bsc_endp, con->bsc->next_transaction++);
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800645 } else {
Holger Hans Peter Freytherc021fbe2010-08-28 16:46:27 +0800646 LOGP(DMGCP, LOGL_ERROR,
647 "Endpoint belongs to a different BSC\n");
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800648 }
649 }
Holger Hans Peter Freytherc021fbe2010-08-28 16:46:27 +0800650 }
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800651
Holger Hans Peter Freytherc021fbe2010-08-28 16:46:27 +0800652 bsc_mgcp_free_endpoint(bsc->nat, ENDPOINT_NUMBER(endp));
Holger Hans Peter Freythercb6ad702014-07-22 15:00:52 +0200653 mgcp_release_endp(endp);
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800654}
655
Pablo Neira Ayusob769f3c2014-08-27 17:02:52 +0200656static void bsc_mgcp_osmux_confirm(struct mgcp_endpoint *endp, const char *str)
657{
658 unsigned int osmux_cid;
659 char *res;
660
661 res = strstr(str, "X-Osmux: ");
662 if (!res) {
663 LOGP(DMGCP, LOGL_INFO,
664 "BSC doesn't want to use Osmux, failing back to RTP\n");
665 goto err;
666 }
667
668 if (sscanf(res, "X-Osmux: %u", &osmux_cid) != 1) {
669 LOGP(DMGCP, LOGL_ERROR, "Failed to parse Osmux CID '%s'\n",
670 str);
671 goto err;
672 }
673
674 if (endp->osmux.cid != osmux_cid) {
Pablo Neira Ayusoa1efcc22014-08-28 14:48:47 +0200675 LOGP(DMGCP, LOGL_ERROR,
Pablo Neira Ayusob769f3c2014-08-27 17:02:52 +0200676 "BSC sent us wrong CID %u, we expected %u",
677 osmux_cid, endp->osmux.cid);
678 goto err;
679 }
680
681 LOGP(DMGCP, LOGL_NOTICE, "bsc accepted to use Osmux (cid=%u)\n",
682 osmux_cid);
683 return;
684err:
Holger Hans Peter Freyther1afe7c72015-10-04 11:11:11 +0200685 osmux_release_cid(endp);
Pablo Neira Ayusob769f3c2014-08-27 17:02:52 +0200686 endp->osmux.state = OSMUX_STATE_DISABLED;
687}
688
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800689/*
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200690 * We have received a msg from the BSC. We will see if we know
691 * this transaction and if it belongs to the BSC. Then we will
692 * need to patch the content to point to the local network and we
693 * need to update the I: that was assigned by the BSS.
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200694 *
695 * Only responses to CRCX and DLCX should arrive here. The DLCX
696 * needs to be handled specially to combine the two statistics.
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200697 */
698void bsc_mgcp_forward(struct bsc_connection *bsc, struct msgb *msg)
699{
700 struct msgb *output;
701 struct bsc_endpoint *bsc_endp = NULL;
702 struct mgcp_endpoint *endp = NULL;
Holger Hans Peter Freytherd2dd6e82010-04-06 11:06:11 +0200703 int i, code;
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200704 char transaction_id[60];
705
706 /* Some assumption that our buffer is big enough.. and null terminate */
707 if (msgb_l2len(msg) > 2000) {
708 LOGP(DMGCP, LOGL_ERROR, "MGCP message too long.\n");
709 return;
710 }
711
712 msg->l2h[msgb_l2len(msg)] = '\0';
713
714 if (bsc_mgcp_parse_response((const char *) msg->l2h, &code, transaction_id) != 0) {
715 LOGP(DMGCP, LOGL_ERROR, "Failed to parse response code.\n");
716 return;
717 }
718
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100719 for (i = 1; i < bsc->nat->mgcp_cfg->trunk.number_endpoints; ++i) {
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200720 if (bsc->nat->bsc_endpoints[i].bsc != bsc)
721 continue;
Holger Hans Peter Freyther3f7c7d02010-04-05 18:00:05 +0200722 /* no one listening? a bug? */
723 if (!bsc->nat->bsc_endpoints[i].transaction_id)
724 continue;
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200725 if (strcmp(transaction_id, bsc->nat->bsc_endpoints[i].transaction_id) != 0)
726 continue;
727
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +0100728 endp = &bsc->nat->mgcp_cfg->trunk.endpoints[i];
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200729 bsc_endp = &bsc->nat->bsc_endpoints[i];
730 break;
731 }
732
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200733 if (!bsc_endp && strncmp("nat-", transaction_id, 4) == 0) {
734 handle_dlcx_response(bsc, msg, code, transaction_id);
735 return;
736 }
737
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200738 if (!bsc_endp) {
Holger Hans Peter Freytherb9ac37d2010-04-05 17:58:52 +0200739 LOGP(DMGCP, LOGL_ERROR, "Could not find active endpoint: %s for msg: '%s'\n",
740 transaction_id, (const char *) msg->l2h);
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200741 return;
742 }
743
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +0800744 endp->ci = bsc_mgcp_extract_ci((const char *) msg->l2h);
Holger Hans Peter Freytherb84b5f62010-08-06 08:34:46 +0800745 if (endp->ci == CI_UNUSED) {
Holger Hans Peter Freyther7d476012010-08-06 19:16:34 +0800746 free_chan_downstream(endp, bsc_endp, bsc);
Holger Hans Peter Freytherb84b5f62010-08-06 08:34:46 +0800747 return;
748 }
Holger Hans Peter Freytherdd16b422010-04-07 09:53:54 +0200749
Pablo Neira Ayusob769f3c2014-08-27 17:02:52 +0200750 if (endp->osmux.state == OSMUX_STATE_ACTIVATING)
751 bsc_mgcp_osmux_confirm(endp, (const char *) msg->l2h);
752
Holger Hans Peter Freyther20626dd2015-10-02 18:15:18 +0200753 /* If we require osmux and it is disabled.. fail */
754 if (nat_osmux_only(bsc->nat->mgcp_cfg, bsc->cfg) &&
755 endp->osmux.state == OSMUX_STATE_DISABLED) {
756 LOGP(DMGCP, LOGL_ERROR,
757 "Failed to activate osmux endpoint 0x%x\n",
758 ENDPOINT_NUMBER(endp));
759 free_chan_downstream(endp, bsc_endp, bsc);
760 return;
761 }
762
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200763 /* free some stuff */
764 talloc_free(bsc_endp->transaction_id);
765 bsc_endp->transaction_id = NULL;
Holger Hans Peter Freyther5b2726e2010-08-06 09:05:05 +0800766 bsc_endp->transaction_state = 0;
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200767
Holger Hans Peter Freytherdd16b422010-04-07 09:53:54 +0200768 /*
769 * rewrite the information. In case the endpoint was deleted
770 * there should be nothing for us to rewrite so putting endp->rtp_port
771 * with the value of 0 should be no problem.
772 */
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800773 output = bsc_mgcp_rewrite((char * ) msg->l2h, msgb_l2len(msg), -1,
Holger Hans Peter Freythere6ed0092015-08-20 14:58:19 +0200774 mgcp_net_src_addr(endp),
Pablo Neira Ayusob769f3c2014-08-27 17:02:52 +0200775 endp->net_end.local_port, -1,
Holger Hans Peter Freyther7f100c92015-04-23 20:25:17 -0400776 &endp->bts_end.codec.payload_type,
777 bsc->nat->sdp_ensure_amr_mode_set);
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200778 if (!output) {
779 LOGP(DMGCP, LOGL_ERROR, "Failed to rewrite MGCP msg.\n");
780 return;
781 }
782
Holger Hans Peter Freyther77956aa2012-11-05 13:52:53 +0100783 mgcp_queue_for_call_agent(bsc->nat, output);
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200784}
785
786int bsc_mgcp_parse_response(const char *str, int *code, char transaction[60])
787{
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200788 int rc;
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200789 /* we want to parse two strings */
Holger Hans Peter Freyther462b7d72012-10-24 21:53:40 +0200790 rc = sscanf(str, "%3d %59s\n", code, transaction) != 2;
791 transaction[59] = '\0';
792 return rc;
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200793}
794
Holger Hans Peter Freyther46340132010-08-06 08:26:54 +0800795uint32_t bsc_mgcp_extract_ci(const char *str)
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200796{
Holger Hans Peter Freyther46340132010-08-06 08:26:54 +0800797 unsigned int ci;
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200798 char *res = strstr(str, "I: ");
Holger Hans Peter Freyther9c31cfc2010-08-06 08:19:05 +0800799 if (!res) {
800 LOGP(DMGCP, LOGL_ERROR, "No CI in msg '%s'\n", str);
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200801 return CI_UNUSED;
Holger Hans Peter Freyther9c31cfc2010-08-06 08:19:05 +0800802 }
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200803
Holger Hans Peter Freyther46340132010-08-06 08:26:54 +0800804 if (sscanf(res, "I: %u", &ci) != 1) {
Holger Hans Peter Freyther9c31cfc2010-08-06 08:19:05 +0800805 LOGP(DMGCP, LOGL_ERROR, "Failed to parse CI in msg '%s'\n", str);
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200806 return CI_UNUSED;
Holger Hans Peter Freyther9c31cfc2010-08-06 08:19:05 +0800807 }
808
Holger Hans Peter Freyther3c3bce12010-04-01 10:16:28 +0200809 return ci;
810}
811
Holger Hans Peter Freyther9592c452012-01-17 15:58:48 +0100812/**
813 * Create a new MGCPCommand based on the input and endpoint from a message
814 */
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800815static void patch_mgcp(struct msgb *output, const char *op, const char *tok,
Pablo Neira Ayusob769f3c2014-08-27 17:02:52 +0200816 int endp, int len, int cr, int osmux_cid)
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200817{
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800818 int slen;
819 int ret;
820 char buf[40];
Holger Hans Peter Freyther69621272015-10-08 16:58:13 +0200821 char osmux_extension[strlen("\nX-Osmux: 255") + 1];
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800822
823 buf[0] = buf[39] = '\0';
824 ret = sscanf(tok, "%*s %s", buf);
Holger Hans Peter Freyther9592c452012-01-17 15:58:48 +0100825 if (ret != 1) {
826 LOGP(DMGCP, LOGL_ERROR,
827 "Failed to find Endpoint in: %s\n", tok);
828 return;
829 }
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800830
Pablo Neira Ayusob769f3c2014-08-27 17:02:52 +0200831 if (osmux_cid >= 0)
Holger Hans Peter Freyther69621272015-10-08 16:58:13 +0200832 sprintf(osmux_extension, "\nX-Osmux: %u", osmux_cid & 0xff);
Pablo Neira Ayusob769f3c2014-08-27 17:02:52 +0200833 else
834 osmux_extension[0] = '\0';
835
Pablo Neira Ayusocab6e752014-02-05 18:56:17 +0100836 slen = sprintf((char *) output->l3h, "%s %s %x@mgw MGCP 1.0%s%s",
Pablo Neira Ayusob769f3c2014-08-27 17:02:52 +0200837 op, buf, endp, osmux_extension, cr ? "\r\n" : "\n");
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800838 output->l3h = msgb_put(output, slen);
839}
840
841/* we need to replace some strings... */
Jacob Erlbeck3dff27d2013-11-29 13:43:48 +0100842struct msgb *bsc_mgcp_rewrite(char *input, int length, int endpoint,
Pablo Neira Ayusob769f3c2014-08-27 17:02:52 +0200843 const char *ip, int port, int osmux_cid,
Holger Hans Peter Freythere9f7c992015-08-13 18:31:09 +0200844 int *first_payload_type, int ensure_mode_set)
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800845{
Holger Hans Peter Freyther3dfe8a12012-11-07 11:36:58 +0100846 static const char crcx_str[] = "CRCX ";
847 static const char dlcx_str[] = "DLCX ";
848 static const char mdcx_str[] = "MDCX ";
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800849
Holger Hans Peter Freyther3dfe8a12012-11-07 11:36:58 +0100850 static const char ip_str[] = "c=IN IP4 ";
851 static const char aud_str[] = "m=audio ";
852 static const char fmt_str[] = "a=fmtp:";
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200853
854 char buf[128];
855 char *running, *token;
856 struct msgb *output;
857
Holger Hans Peter Freythere2f34d52012-11-06 13:16:26 +0100858 /* keep state to add the a=fmtp line */
859 int found_fmtp = 0;
860 int payload = -1;
861 int cr = 1;
862
863 if (length > 4096 - 256) {
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200864 LOGP(DMGCP, LOGL_ERROR, "Input is too long.\n");
865 return NULL;
866 }
867
868 output = msgb_alloc_headroom(4096, 128, "MGCP rewritten");
869 if (!output) {
870 LOGP(DMGCP, LOGL_ERROR, "Failed to allocate new MGCP msg.\n");
871 return NULL;
872 }
873
Holger Hans Peter Freyther8d200652010-04-04 18:09:10 +0200874 running = input;
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200875 output->l2h = output->data;
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800876 output->l3h = output->l2h;
Holger Hans Peter Freyther9e5300a2010-04-04 19:34:44 +0200877 for (token = strsep(&running, "\n"); running; token = strsep(&running, "\n")) {
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200878 int len = strlen(token);
Holger Hans Peter Freythere2f34d52012-11-06 13:16:26 +0100879 cr = len > 0 && token[len - 1] == '\r';
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200880
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800881 if (strncmp(crcx_str, token, (sizeof crcx_str) - 1) == 0) {
Pablo Neira Ayusob769f3c2014-08-27 17:02:52 +0200882 patch_mgcp(output, "CRCX", token, endpoint, len, cr, osmux_cid);
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800883 } else if (strncmp(dlcx_str, token, (sizeof dlcx_str) - 1) == 0) {
Pablo Neira Ayusob769f3c2014-08-27 17:02:52 +0200884 patch_mgcp(output, "DLCX", token, endpoint, len, cr, -1);
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800885 } else if (strncmp(mdcx_str, token, (sizeof mdcx_str) - 1) == 0) {
Pablo Neira Ayusob769f3c2014-08-27 17:02:52 +0200886 patch_mgcp(output, "MDCX", token, endpoint, len, cr, -1);
Holger Hans Peter Freytherf7c86c52010-08-30 13:44:32 +0800887 } else if (strncmp(ip_str, token, (sizeof ip_str) - 1) == 0) {
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200888 output->l3h = msgb_put(output, strlen(ip_str));
889 memcpy(output->l3h, ip_str, strlen(ip_str));
890 output->l3h = msgb_put(output, strlen(ip));
891 memcpy(output->l3h, ip, strlen(ip));
Holger Hans Peter Freyther9e5300a2010-04-04 19:34:44 +0200892
893 if (cr) {
894 output->l3h = msgb_put(output, 2);
895 output->l3h[0] = '\r';
896 output->l3h[1] = '\n';
897 } else {
898 output->l3h = msgb_put(output, 1);
899 output->l3h[0] = '\n';
900 }
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200901 } else if (strncmp(aud_str, token, (sizeof aud_str) - 1) == 0) {
Holger Hans Peter Freythere9f7c992015-08-13 18:31:09 +0200902 int offset;
903 if (sscanf(token, "m=audio %*d RTP/AVP %n%d", &offset, &payload) != 1) {
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200904 LOGP(DMGCP, LOGL_ERROR, "Could not parsed audio line.\n");
905 msgb_free(output);
906 return NULL;
907 }
908
Holger Hans Peter Freythere9f7c992015-08-13 18:31:09 +0200909 snprintf(buf, sizeof(buf)-1, "m=audio %d RTP/AVP %s\n",
910 port, &token[offset]);
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200911 buf[sizeof(buf)-1] = '\0';
912
913 output->l3h = msgb_put(output, strlen(buf));
914 memcpy(output->l3h, buf, strlen(buf));
Holger Hans Peter Freythere2f34d52012-11-06 13:16:26 +0100915 } else if (strncmp(fmt_str, token, (sizeof fmt_str) - 1) == 0) {
916 found_fmtp = 1;
917 goto copy;
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200918 } else {
Holger Hans Peter Freythere2f34d52012-11-06 13:16:26 +0100919copy:
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200920 output->l3h = msgb_put(output, len + 1);
921 memcpy(output->l3h, token, len);
922 output->l3h[len] = '\n';
923 }
924 }
925
Holger Hans Peter Freythere2f34d52012-11-06 13:16:26 +0100926 /*
927 * the above code made sure that we have 128 bytes lefts. So we can
928 * safely append another line.
929 */
Holger Hans Peter Freyther7f100c92015-04-23 20:25:17 -0400930 if (ensure_mode_set && !found_fmtp && payload != -1) {
Holger Hans Peter Freythere2f34d52012-11-06 13:16:26 +0100931 snprintf(buf, sizeof(buf) - 1, "a=fmtp:%d mode-set=2%s",
932 payload, cr ? "\r\n" : "\n");
933 buf[sizeof(buf) - 1] = '\0';
934 output->l3h = msgb_put(output, strlen(buf));
935 memcpy(output->l3h, buf, strlen(buf));
936 }
937
Holger Hans Peter Freythere9f7c992015-08-13 18:31:09 +0200938 if (payload != -1 && first_payload_type)
939 *first_payload_type = payload;
Jacob Erlbeck3dff27d2013-11-29 13:43:48 +0100940
Holger Hans Peter Freyther76c83542010-04-01 06:48:52 +0200941 return output;
942}
943
Holger Hans Peter Freytherc3271872012-11-05 14:54:56 +0100944/*
945 * This comes from the MSC and we will now parse it. The caller needs
946 * to free the msgb.
947 */
948void bsc_nat_handle_mgcp(struct bsc_nat *nat, struct msgb *msg)
949{
950 struct msgb *resp;
951
952 if (!nat->mgcp_ipa) {
953 LOGP(DMGCP, LOGL_ERROR, "MGCP message not allowed on IPA.\n");
954 return;
955 }
956
957 if (msgb_l2len(msg) > sizeof(nat->mgcp_msg) - 1) {
958 LOGP(DMGCP, LOGL_ERROR, "MGCP msg too big for handling.\n");
959 return;
960 }
961
962 memcpy(nat->mgcp_msg, msg->l2h, msgb_l2len(msg));
963 nat->mgcp_length = msgb_l2len(msg);
964 nat->mgcp_msg[nat->mgcp_length] = '\0';
965
966 /* now handle the message */
967 resp = mgcp_handle_message(nat->mgcp_cfg, msg);
968
969 /* we do have a direct answer... e.g. AUEP */
970 if (resp)
971 mgcp_queue_for_call_agent(nat, resp);
972
973 return;
974}
975
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200976static int mgcp_do_read(struct osmo_fd *fd)
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200977{
978 struct bsc_nat *nat;
979 struct msgb *msg, *resp;
980 int rc;
981
Holger Hans Peter Freyther8d200652010-04-04 18:09:10 +0200982 nat = fd->data;
983
984 rc = read(fd->fd, nat->mgcp_msg, sizeof(nat->mgcp_msg) - 1);
985 if (rc <= 0) {
986 LOGP(DMGCP, LOGL_ERROR, "Failed to read errno: %d\n", errno);
987 return -1;
988 }
989
990 nat->mgcp_msg[rc] = '\0';
991 nat->mgcp_length = rc;
992
993 msg = msgb_alloc(sizeof(nat->mgcp_msg), "MGCP GW Read");
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200994 if (!msg) {
995 LOGP(DMGCP, LOGL_ERROR, "Failed to create buffer.\n");
996 return -1;
997 }
998
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +0200999 msg->l2h = msgb_put(msg, rc);
Holger Hans Peter Freyther8d200652010-04-04 18:09:10 +02001000 memcpy(msg->l2h, nat->mgcp_msg, msgb_l2len(msg));
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001001 resp = mgcp_handle_message(nat->mgcp_cfg, msg);
1002 msgb_free(msg);
1003
1004 /* we do have a direct answer... e.g. AUEP */
Holger Hans Peter Freyther77956aa2012-11-05 13:52:53 +01001005 if (resp)
1006 mgcp_queue_for_call_agent(nat, resp);
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001007
1008 return 0;
1009}
1010
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +02001011static int mgcp_do_write(struct osmo_fd *bfd, struct msgb *msg)
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001012{
1013 int rc;
1014
1015 rc = write(bfd->fd, msg->data, msg->len);
1016
1017 if (rc != msg->len) {
1018 LOGP(DMGCP, LOGL_ERROR, "Failed to write msg to MGCP CallAgent.\n");
1019 return -1;
1020 }
1021
1022 return rc;
1023}
1024
Holger Hans Peter Freytherc3271872012-11-05 14:54:56 +01001025static int init_mgcp_socket(struct bsc_nat *nat, struct mgcp_config *cfg)
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001026{
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001027 struct sockaddr_in addr;
Holger Hans Peter Freytherc3271872012-11-05 14:54:56 +01001028 int on;
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +02001029
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +08001030 cfg->gw_fd.bfd.fd = socket(AF_INET, SOCK_DGRAM, 0);
1031 if (cfg->gw_fd.bfd.fd < 0) {
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001032 LOGP(DMGCP, LOGL_ERROR, "Failed to create MGCP socket. errno: %d\n", errno);
1033 return -1;
1034 }
1035
1036 on = 1;
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +08001037 setsockopt(cfg->gw_fd.bfd.fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001038
Holger Hans Peter Freyther9bec10e2013-07-05 07:48:04 +02001039 memset(&addr, 0, sizeof(addr));
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001040 addr.sin_family = AF_INET;
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +08001041 addr.sin_port = htons(cfg->source_port);
1042 inet_aton(cfg->source_addr, &addr.sin_addr);
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001043
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +08001044 if (bind(cfg->gw_fd.bfd.fd, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
Holger Hans Peter Freytherd000c272011-03-29 17:12:07 +02001045 LOGP(DMGCP, LOGL_ERROR, "Failed to bind on %s:%d errno: %d\n",
1046 cfg->source_addr, cfg->source_port, errno);
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +08001047 close(cfg->gw_fd.bfd.fd);
1048 cfg->gw_fd.bfd.fd = -1;
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001049 return -1;
1050 }
1051
1052 addr.sin_port = htons(2727);
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +08001053 inet_aton(cfg->call_agent_addr, &addr.sin_addr);
1054 if (connect(cfg->gw_fd.bfd.fd, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001055 LOGP(DMGCP, LOGL_ERROR, "Failed to connect to: '%s'. errno: %d\n",
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +08001056 cfg->call_agent_addr, errno);
1057 close(cfg->gw_fd.bfd.fd);
1058 cfg->gw_fd.bfd.fd = -1;
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001059 return -1;
1060 }
1061
Pablo Neira Ayusoe1273b12011-05-06 12:09:47 +02001062 osmo_wqueue_init(&cfg->gw_fd, 10);
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +08001063 cfg->gw_fd.bfd.when = BSC_FD_READ;
1064 cfg->gw_fd.bfd.data = nat;
1065 cfg->gw_fd.read_cb = mgcp_do_read;
1066 cfg->gw_fd.write_cb = mgcp_do_write;
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001067
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +02001068 if (osmo_fd_register(&cfg->gw_fd.bfd) != 0) {
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001069 LOGP(DMGCP, LOGL_ERROR, "Failed to register MGCP fd.\n");
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +08001070 close(cfg->gw_fd.bfd.fd);
1071 cfg->gw_fd.bfd.fd = -1;
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001072 return -1;
1073 }
1074
Holger Hans Peter Freytherc3271872012-11-05 14:54:56 +01001075 return 0;
1076}
1077
1078int bsc_mgcp_nat_init(struct bsc_nat *nat)
1079{
1080 struct mgcp_config *cfg = nat->mgcp_cfg;
1081
1082 if (!cfg->call_agent_addr) {
1083 LOGP(DMGCP, LOGL_ERROR, "The BSC nat requires the call agent ip to be set.\n");
1084 return -1;
1085 }
1086
1087 if (cfg->bts_ip) {
1088 LOGP(DMGCP, LOGL_ERROR, "Do not set the BTS ip for the nat.\n");
1089 return -1;
1090 }
1091
1092 /* initialize the MGCP socket */
1093 if (!nat->mgcp_ipa) {
1094 int rc = init_mgcp_socket(nat, cfg);
1095 if (rc != 0)
1096 return rc;
1097 }
1098
1099
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +02001100 /* some more MGCP config handling */
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +08001101 cfg->data = nat;
1102 cfg->policy_cb = bsc_mgcp_policy_cb;
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +01001103 cfg->trunk.force_realloc = 1;
Holger Hans Peter Freytherd5e6c232010-08-05 10:08:36 +00001104
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +08001105 if (cfg->bts_ip)
1106 talloc_free(cfg->bts_ip);
1107 cfg->bts_ip = "";
Holger Hans Peter Freytherd5e6c232010-08-05 10:08:36 +00001108
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +02001109 nat->bsc_endpoints = talloc_zero_array(nat,
1110 struct bsc_endpoint,
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +01001111 cfg->trunk.number_endpoints + 1);
Holger Hans Peter Freyther3c792142010-09-19 04:34:04 +08001112 if (!nat->bsc_endpoints) {
1113 LOGP(DMGCP, LOGL_ERROR, "Failed to allocate nat endpoints\n");
Holger Hans Peter Freyther249d69a2010-09-18 21:13:54 +08001114 close(cfg->gw_fd.bfd.fd);
1115 cfg->gw_fd.bfd.fd = -1;
Holger Hans Peter Freyther3c792142010-09-19 04:34:04 +08001116 return -1;
1117 }
Holger Hans Peter Freythera0df82d2010-04-01 08:21:33 +02001118
Holger Hans Peter Freytherf2eedff2010-09-19 04:36:07 +08001119 if (mgcp_reset_transcoder(cfg) < 0) {
1120 LOGP(DMGCP, LOGL_ERROR, "Failed to send packet to the transcoder.\n");
1121 talloc_free(nat->bsc_endpoints);
1122 nat->bsc_endpoints = NULL;
1123 close(cfg->gw_fd.bfd.fd);
1124 cfg->gw_fd.bfd.fd = -1;
1125 return -1;
1126 }
1127
Holger Hans Peter Freythera7f80182010-03-31 13:02:22 +02001128 return 0;
1129}
Holger Hans Peter Freyther26a43892010-04-05 23:09:27 +02001130
1131void bsc_mgcp_clear_endpoints_for(struct bsc_connection *bsc)
1132{
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +08001133 struct rate_ctr *ctr = NULL;
Holger Hans Peter Freyther26a43892010-04-05 23:09:27 +02001134 int i;
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +08001135
1136 if (bsc->cfg)
1137 ctr = &bsc->cfg->stats.ctrg->ctr[BCFG_CTR_DROPPED_CALLS];
1138
Holger Hans Peter Freyther88ad7722011-02-28 00:56:17 +01001139 for (i = 1; i < bsc->nat->mgcp_cfg->trunk.number_endpoints; ++i) {
Holger Hans Peter Freyther26a43892010-04-05 23:09:27 +02001140 struct bsc_endpoint *bsc_endp = &bsc->nat->bsc_endpoints[i];
1141
1142 if (bsc_endp->bsc != bsc)
1143 continue;
1144
Holger Hans Peter Freyther8330c1c2010-06-17 18:29:42 +08001145 if (ctr)
1146 rate_ctr_inc(ctr);
1147
Holger Hans Peter Freyther7b7eef62010-04-22 12:08:17 +08001148 bsc_mgcp_free_endpoint(bsc->nat, i);
Holger Hans Peter Freythercb6ad702014-07-22 15:00:52 +02001149 mgcp_release_endp(&bsc->nat->mgcp_cfg->trunk.endpoints[i]);
Holger Hans Peter Freyther26a43892010-04-05 23:09:27 +02001150 }
1151}