blob: ab43b9efb927aa2bd6a451ce43da2ae738c602d5 [file] [log] [blame]
Harald Welte2ca7c312009-12-23 22:44:04 +01001/* OpenBSC Abis/IP proxy ip.access nanoBTS */
2
3/* (C) 2009 by Harald Welte <laforge@gnumonks.org>
Holger Hans Peter Freyther85531cc2010-10-06 20:37:09 +08004 * (C) 2010 by On-Waves
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08005 * (C) 2010 by Holger Hans Peter Freyther <zecke@selfish.org>
Harald Welte2ca7c312009-12-23 22:44:04 +01006 *
7 * All Rights Reserved
8 *
9 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +010010 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
Harald Welte2ca7c312009-12-23 22:44:04 +010012 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Harald Welte9af6ddf2011-01-01 15:25:50 +010017 * GNU Affero General Public License for more details.
Harald Welte2ca7c312009-12-23 22:44:04 +010018 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010019 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Harald Welte2ca7c312009-12-23 22:44:04 +010021 *
22 */
23
24#include <stdio.h>
25#include <unistd.h>
26#include <stdlib.h>
27#include <errno.h>
28#include <string.h>
29#include <signal.h>
30#include <time.h>
31#include <sys/fcntl.h>
Harald Welte2ca7c312009-12-23 22:44:04 +010032#include <sys/socket.h>
33#include <sys/ioctl.h>
34#include <arpa/inet.h>
35#include <netinet/in.h>
36
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +080037#define _GNU_SOURCE
38#include <getopt.h>
39
Harald Welte2ca7c312009-12-23 22:44:04 +010040#include <openbsc/gsm_data.h>
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +020041#include <osmocom/core/application.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010042#include <osmocom/core/select.h>
43#include <osmocom/gsm/tlv.h>
44#include <osmocom/core/msgb.h>
Harald Welte4a88a492014-08-20 23:46:40 +020045#include <osmocom/gsm/ipa.h>
Harald Welteeb623012014-08-18 22:33:12 +020046#include <osmocom/abis/ipa.h>
Harald Welte4a88a492014-08-20 23:46:40 +020047#include <osmocom/abis/ipaccess.h>
Harald Welte2ca7c312009-12-23 22:44:04 +010048#include <openbsc/debug.h>
49#include <openbsc/ipaccess.h>
Pablo Neira Ayusoda2f7692011-04-05 18:33:28 +020050#include <openbsc/socket.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010051#include <osmocom/core/talloc.h>
Harald Welte2ca7c312009-12-23 22:44:04 +010052
Harald Welte2ca7c312009-12-23 22:44:04 +010053/* one instance of an ip.access protocol proxy */
54struct ipa_proxy {
55 /* socket where we listen for incoming OML from BTS */
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +020056 struct osmo_fd oml_listen_fd;
Harald Welte2ca7c312009-12-23 22:44:04 +010057 /* socket where we listen for incoming RSL from BTS */
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +020058 struct osmo_fd rsl_listen_fd;
Harald Welte2ca7c312009-12-23 22:44:04 +010059 /* list of BTS's (struct ipa_bts_conn */
60 struct llist_head bts_list;
61 /* the BSC reconnect timer */
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +020062 struct osmo_timer_list reconn_timer;
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +080063 /* global GPRS NS data */
64 struct in_addr gprs_addr;
Holger Hans Peter Freyther4fe22cc2010-06-10 15:57:08 +080065 struct in_addr listen_addr;
Harald Welte2ca7c312009-12-23 22:44:04 +010066};
67
68/* global pointer to the proxy structure */
69static struct ipa_proxy *ipp;
70
71struct ipa_proxy_conn {
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +020072 struct osmo_fd fd;
Harald Welte2ca7c312009-12-23 22:44:04 +010073 struct llist_head tx_queue;
74 struct ipa_bts_conn *bts_conn;
75};
Harald Welte2ca7c312009-12-23 22:44:04 +010076#define MAX_TRX 4
77
78/* represents a particular BTS in our proxy */
79struct ipa_bts_conn {
80 /* list of BTS's (ipa_proxy->bts_list) */
81 struct llist_head list;
82 /* back pointer to the proxy which we belong to */
83 struct ipa_proxy *ipp;
84 /* the unit ID as determined by CCM */
85 struct {
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +020086 uint16_t site_id;
87 uint16_t bts_id;
Harald Welte2ca7c312009-12-23 22:44:04 +010088 } unit_id;
89
90 /* incoming connections from BTS */
91 struct ipa_proxy_conn *oml_conn;
92 struct ipa_proxy_conn *rsl_conn[MAX_TRX];
93
94 /* outgoing connections to BSC */
95 struct ipa_proxy_conn *bsc_oml_conn;
96 struct ipa_proxy_conn *bsc_rsl_conn[MAX_TRX];
97
98 /* UDP sockets for BTS and BSC injection */
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +020099 struct osmo_fd udp_bts_fd;
100 struct osmo_fd udp_bsc_fd;
Harald Welte2ca7c312009-12-23 22:44:04 +0100101
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800102 /* NS data */
103 struct in_addr bts_addr;
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200104 struct osmo_fd gprs_ns_fd;
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800105 int gprs_local_port;
Holger Hans Peter Freyther4fe22cc2010-06-10 15:57:08 +0800106 uint16_t gprs_orig_port;
107 uint32_t gprs_orig_ip;
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800108
Harald Welte36ac7752011-07-16 13:38:48 +0200109 char *id_tags[256];
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200110 uint8_t *id_resp;
Harald Welte2ca7c312009-12-23 22:44:04 +0100111 unsigned int id_resp_len;
112};
113
114enum ipp_fd_type {
115 OML_FROM_BTS = 1,
116 RSL_FROM_BTS = 2,
117 OML_TO_BSC = 3,
118 RSL_TO_BSC = 4,
119 UDP_TO_BTS = 5,
120 UDP_TO_BSC = 6,
121};
122
123/* some of the code against we link from OpenBSC needs this */
124void *tall_bsc_ctx;
125
126static char *listen_ipaddr;
127static char *bsc_ipaddr;
Holger Hans Peter Freyther6147c5d2010-06-09 16:20:39 +0800128static char *gprs_ns_ipaddr;
Harald Welte2ca7c312009-12-23 22:44:04 +0100129
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200130static int gprs_ns_cb(struct osmo_fd *bfd, unsigned int what);
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800131
Holger Hans Peter Freyther3dac8812010-06-09 14:39:22 +0800132#define PROXY_ALLOC_SIZE 1200
Harald Welte2ca7c312009-12-23 22:44:04 +0100133
Harald Welte2ca7c312009-12-23 22:44:04 +0100134static struct ipa_bts_conn *find_bts_by_unitid(struct ipa_proxy *ipp,
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200135 uint16_t site_id,
136 uint16_t bts_id)
Harald Welte2ca7c312009-12-23 22:44:04 +0100137{
138 struct ipa_bts_conn *ipbc;
139
140 llist_for_each_entry(ipbc, &ipp->bts_list, list) {
141 if (ipbc->unit_id.site_id == site_id &&
142 ipbc->unit_id.bts_id == bts_id)
143 return ipbc;
144 }
145
146 return NULL;
147}
148
149struct ipa_proxy_conn *alloc_conn(void)
150{
151 struct ipa_proxy_conn *ipc;
152
153 ipc = talloc_zero(tall_bsc_ctx, struct ipa_proxy_conn);
154 if (!ipc)
155 return NULL;
156
157 INIT_LLIST_HEAD(&ipc->tx_queue);
158
159 return ipc;
160}
161
162static int store_idtags(struct ipa_bts_conn *ipbc, struct tlv_parsed *tlvp)
163{
164 unsigned int i, len;
165
166 for (i = 0; i <= 0xff; i++) {
167 if (!TLVP_PRESENT(tlvp, i))
168 continue;
169
170 len = TLVP_LEN(tlvp, i);
171#if 0
172 if (!ipbc->id_tags[i])
173 ipbc->id_tags[i] = talloc_size(tall_bsc_ctx, len);
174 else
175#endif
Harald Weltea16ef3d2009-12-23 23:35:51 +0100176 ipbc->id_tags[i] = talloc_realloc_size(ipbc,
Harald Welte2ca7c312009-12-23 22:44:04 +0100177 ipbc->id_tags[i], len);
178 if (!ipbc->id_tags[i])
179 return -ENOMEM;
180
181 memset(ipbc->id_tags[i], 0, len);
182 //memcpy(ipbc->id_tags[i], TLVP_VAL(tlvp, i), len);
183 }
184 return 0;
185}
186
187
188static struct ipa_proxy_conn *connect_bsc(struct sockaddr_in *sa, int priv_nr, void *data);
189
190#define logp_ipbc_uid(ss, lvl, ipbc, trx_id) _logp_ipbc_uid(ss, lvl, __FILE__, __LINE__, ipbc, trx_id)
191
192static void _logp_ipbc_uid(unsigned int ss, unsigned int lvl, char *file, int line,
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200193 struct ipa_bts_conn *ipbc, uint8_t trx_id)
Harald Welte2ca7c312009-12-23 22:44:04 +0100194{
195 if (ipbc)
Harald Weltedc5062b2010-03-26 21:28:59 +0800196 logp2(ss, lvl, file, line, 0, "(%u/%u/%u) ", ipbc->unit_id.site_id,
Harald Welte2ca7c312009-12-23 22:44:04 +0100197 ipbc->unit_id.bts_id, trx_id);
198 else
Harald Weltedc5062b2010-03-26 21:28:59 +0800199 logp2(ss, lvl, file, line, 0, "unknown ");
Harald Welte2ca7c312009-12-23 22:44:04 +0100200}
201
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200202static int handle_udp_read(struct osmo_fd *bfd)
Harald Welte2ca7c312009-12-23 22:44:04 +0100203{
204 struct ipa_bts_conn *ipbc = bfd->data;
205 struct ipa_proxy_conn *other_conn = NULL;
206 struct msgb *msg = msgb_alloc(PROXY_ALLOC_SIZE, "Abis/IP UDP");
207 struct ipaccess_head *hh;
208 int ret;
209
210 /* with UDP sockets, we cannot read partial packets but have to read
211 * all of it in one go */
212 hh = (struct ipaccess_head *) msg->data;
213 ret = recv(bfd->fd, msg->data, msg->data_len, 0);
214 if (ret < 0) {
Harald Weltefb339572009-12-24 13:35:18 +0100215 if (errno != EAGAIN)
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200216 LOGP(DLINP, LOGL_ERROR, "recv error %s\n", strerror(errno));
Harald Welte2ca7c312009-12-23 22:44:04 +0100217 msgb_free(msg);
218 return ret;
219 }
220 if (ret == 0) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200221 DEBUGP(DLINP, "UDP peer disappeared, dead socket\n");
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200222 osmo_fd_unregister(bfd);
Harald Welte2ca7c312009-12-23 22:44:04 +0100223 close(bfd->fd);
224 bfd->fd = -1;
225 msgb_free(msg);
226 return -EIO;
227 }
228 if (ret < sizeof(*hh)) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200229 DEBUGP(DLINP, "could not even read header!?!\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100230 msgb_free(msg);
231 return -EIO;
232 }
233 msgb_put(msg, ret);
234 msg->l2h = msg->data + sizeof(*hh);
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200235 DEBUGP(DLMI, "UDP RX: %s\n", osmo_hexdump(msg->data, msg->len));
Harald Welte2ca7c312009-12-23 22:44:04 +0100236
237 if (hh->len != msg->len - sizeof(*hh)) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200238 DEBUGP(DLINP, "length (%u/%u) disagrees with header(%u)\n",
Harald Welte2ca7c312009-12-23 22:44:04 +0100239 msg->len, msg->len - 3, hh->len);
240 msgb_free(msg);
241 return -EIO;
242 }
243
244 switch (bfd->priv_nr & 0xff) {
245 case UDP_TO_BTS:
246 /* injection towards BTS */
247 switch (hh->proto) {
248 case IPAC_PROTO_RSL:
249 /* FIXME: what to do about TRX > 0 */
250 other_conn = ipbc->rsl_conn[0];
251 break;
252 default:
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200253 DEBUGP(DLINP, "Unknown protocol 0x%02x, sending to "
Harald Welte2ca7c312009-12-23 22:44:04 +0100254 "OML FD\n", hh->proto);
255 /* fall through */
256 case IPAC_PROTO_IPACCESS:
257 case IPAC_PROTO_OML:
258 other_conn = ipbc->oml_conn;
259 break;
260 }
261 break;
262 case UDP_TO_BSC:
263 /* injection towards BSC */
264 switch (hh->proto) {
265 case IPAC_PROTO_RSL:
266 /* FIXME: what to do about TRX > 0 */
267 other_conn = ipbc->bsc_rsl_conn[0];
268 break;
269 default:
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200270 DEBUGP(DLINP, "Unknown protocol 0x%02x, sending to "
Harald Welte2ca7c312009-12-23 22:44:04 +0100271 "OML FD\n", hh->proto);
Holger Hans Peter Freyther4e5f93c2014-06-12 11:32:25 +0200272 /* fall through */
Harald Welte2ca7c312009-12-23 22:44:04 +0100273 case IPAC_PROTO_IPACCESS:
274 case IPAC_PROTO_OML:
275 other_conn = ipbc->bsc_oml_conn;
276 break;
277 }
278 break;
279 default:
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200280 DEBUGP(DLINP, "Unknown filedescriptor priv_nr=%04x\n", bfd->priv_nr);
Harald Welte2ca7c312009-12-23 22:44:04 +0100281 break;
282 }
283
284 if (other_conn) {
285 /* enqueue the message for TX on the respective FD */
286 msgb_enqueue(&other_conn->tx_queue, msg);
287 other_conn->fd.when |= BSC_FD_WRITE;
288 } else
289 msgb_free(msg);
290
291 return 0;
292}
293
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200294static int handle_udp_write(struct osmo_fd *bfd)
Harald Welte2ca7c312009-12-23 22:44:04 +0100295{
296 /* not implemented yet */
297 bfd->when &= ~BSC_FD_WRITE;
298
299 return -EIO;
300}
301
302/* callback from select.c in case one of the fd's can be read/written */
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200303static int udp_fd_cb(struct osmo_fd *bfd, unsigned int what)
Harald Welte2ca7c312009-12-23 22:44:04 +0100304{
305 int rc = 0;
306
307 if (what & BSC_FD_READ)
308 rc = handle_udp_read(bfd);
309 if (what & BSC_FD_WRITE)
310 rc = handle_udp_write(bfd);
311
312 return rc;
313}
314
315
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200316static int ipbc_alloc_connect(struct ipa_proxy_conn *ipc, struct osmo_fd *bfd,
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200317 uint16_t site_id, uint16_t bts_id,
318 uint16_t trx_id, struct tlv_parsed *tlvp,
Harald Welte2ca7c312009-12-23 22:44:04 +0100319 struct msgb *msg)
320{
321 struct ipa_bts_conn *ipbc;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200322 uint16_t udp_port;
Harald Welte2ca7c312009-12-23 22:44:04 +0100323 int ret = 0;
324 struct sockaddr_in sin;
325
326 memset(&sin, 0, sizeof(sin));
327 sin.sin_family = AF_INET;
328 inet_aton(bsc_ipaddr, &sin.sin_addr);
329
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200330 DEBUGP(DLINP, "(%u/%u/%u) New BTS connection: ",
Harald Welte2ca7c312009-12-23 22:44:04 +0100331 site_id, bts_id, trx_id);
332
333 /* OML needs to be established before RSL */
334 if ((bfd->priv_nr & 0xff) != OML_FROM_BTS) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200335 DEBUGPC(DLINP, "Not a OML connection ?!?\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100336 return -EIO;
337 }
338
339 /* allocate new BTS connection data structure */
340 ipbc = talloc_zero(tall_bsc_ctx, struct ipa_bts_conn);
341 if (!ipbc) {
342 ret = -ENOMEM;
343 goto err_out;
344 }
345
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200346 DEBUGPC(DLINP, "Created BTS Conn data structure\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100347 ipbc->ipp = ipp;
348 ipbc->unit_id.site_id = site_id;
349 ipbc->unit_id.bts_id = bts_id;
350 ipbc->oml_conn = ipc;
351 ipc->bts_conn = ipbc;
352
353 /* store the content of the ID TAGS for later reference */
354 store_idtags(ipbc, tlvp);
355 ipbc->id_resp_len = msg->len;
356 ipbc->id_resp = talloc_size(tall_bsc_ctx, ipbc->id_resp_len);
357 memcpy(ipbc->id_resp, msg->data, ipbc->id_resp_len);
358
359 /* Create OML TCP connection towards BSC */
Harald Welte87ed5cd2009-12-23 22:47:53 +0100360 sin.sin_port = htons(IPA_TCP_PORT_OML);
Harald Welte2ca7c312009-12-23 22:44:04 +0100361 ipbc->bsc_oml_conn = connect_bsc(&sin, OML_TO_BSC, ipbc);
362 if (!ipbc->bsc_oml_conn) {
363 ret = -EIO;
364 goto err_bsc_conn;
365 }
366
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200367 DEBUGP(DLINP, "(%u/%u/%u) OML Connected to BSC\n",
Harald Welte2ca7c312009-12-23 22:44:04 +0100368 site_id, bts_id, trx_id);
369
370 /* Create UDP socket for BTS packet injection */
371 udp_port = 10000 + (site_id % 1000)*100 + (bts_id % 100);
Pablo Neira Ayusoda2f7692011-04-05 18:33:28 +0200372 ret = make_sock(&ipbc->udp_bts_fd, IPPROTO_UDP, INADDR_ANY, udp_port,
Harald Welte2ca7c312009-12-23 22:44:04 +0100373 UDP_TO_BTS, udp_fd_cb, ipbc);
374 if (ret < 0)
375 goto err_udp_bts;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200376 DEBUGP(DLINP, "(%u/%u/%u) Created UDP socket for injection "
Harald Welte2ca7c312009-12-23 22:44:04 +0100377 "towards BTS at port %u\n", site_id, bts_id, trx_id, udp_port);
378
379 /* Create UDP socket for BSC packet injection */
380 udp_port = 20000 + (site_id % 1000)*100 + (bts_id % 100);
Pablo Neira Ayusoda2f7692011-04-05 18:33:28 +0200381 ret = make_sock(&ipbc->udp_bsc_fd, IPPROTO_UDP, INADDR_ANY, udp_port,
Harald Welte2ca7c312009-12-23 22:44:04 +0100382 UDP_TO_BSC, udp_fd_cb, ipbc);
383 if (ret < 0)
384 goto err_udp_bsc;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200385 DEBUGP(DLINP, "(%u/%u/%u) Created UDP socket for injection "
Harald Welte2ca7c312009-12-23 22:44:04 +0100386 "towards BSC at port %u\n", site_id, bts_id, trx_id, udp_port);
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800387
388
389 /* GPRS NS related code */
390 if (gprs_ns_ipaddr) {
391 struct sockaddr_in sock;
392 socklen_t len = sizeof(sock);
Pablo Neira Ayuso7e737002011-04-11 16:33:17 +0200393 struct in_addr addr;
394 uint32_t ip;
395
396 inet_aton(listen_ipaddr, &addr);
397 ip = ntohl(addr.s_addr); /* make_sock() needs host byte order */
398 ret = make_sock(&ipbc->gprs_ns_fd, IPPROTO_UDP, ip, 0, 0,
399 gprs_ns_cb, ipbc);
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800400 if (ret < 0) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200401 LOGP(DLINP, LOGL_ERROR, "Creating the GPRS socket failed.\n");
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800402 goto err_udp_bsc;
403 }
404
405 ret = getsockname(ipbc->gprs_ns_fd.fd, (struct sockaddr* ) &sock, &len);
406 ipbc->gprs_local_port = ntohs(sock.sin_port);
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200407 LOGP(DLINP, LOGL_NOTICE,
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800408 "Created GPRS NS Socket. Listening on: %s:%d\n",
409 inet_ntoa(sock.sin_addr), ipbc->gprs_local_port);
410
411 ret = getpeername(bfd->fd, (struct sockaddr* ) &sock, &len);
412 ipbc->bts_addr = sock.sin_addr;
413 }
414
Harald Welte2ca7c312009-12-23 22:44:04 +0100415 llist_add(&ipbc->list, &ipp->bts_list);
416
417 return 0;
418
419err_udp_bsc:
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200420 osmo_fd_unregister(&ipbc->udp_bts_fd);
Harald Welte2ca7c312009-12-23 22:44:04 +0100421err_udp_bts:
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200422 osmo_fd_unregister(&ipbc->bsc_oml_conn->fd);
Harald Welte2ca7c312009-12-23 22:44:04 +0100423 close(ipbc->bsc_oml_conn->fd.fd);
424 talloc_free(ipbc->bsc_oml_conn);
425 ipbc->bsc_oml_conn = NULL;
426err_bsc_conn:
427 talloc_free(ipbc->id_resp);
428 talloc_free(ipbc);
429#if 0
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200430 osmo_fd_unregister(bfd);
Harald Welte2ca7c312009-12-23 22:44:04 +0100431 close(bfd->fd);
432 talloc_free(bfd);
433#endif
434err_out:
435 return ret;
436}
437
438static int ipaccess_rcvmsg(struct ipa_proxy_conn *ipc, struct msgb *msg,
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200439 struct osmo_fd *bfd)
Harald Welte2ca7c312009-12-23 22:44:04 +0100440{
441 struct tlv_parsed tlvp;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200442 uint8_t msg_type = *(msg->l2h);
Harald Welteeb623012014-08-18 22:33:12 +0200443 struct ipaccess_unit unit_data;
Harald Welte2ca7c312009-12-23 22:44:04 +0100444 struct ipa_bts_conn *ipbc;
445 int ret = 0;
446
447 switch (msg_type) {
448 case IPAC_MSGT_PING:
Harald Welte4a88a492014-08-20 23:46:40 +0200449 ret = ipa_ccm_send_pong(bfd->fd);
Harald Welte2ca7c312009-12-23 22:44:04 +0100450 break;
451 case IPAC_MSGT_PONG:
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200452 DEBUGP(DLMI, "PONG!\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100453 break;
454 case IPAC_MSGT_ID_RESP:
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200455 DEBUGP(DLMI, "ID_RESP ");
Harald Welte2ca7c312009-12-23 22:44:04 +0100456 /* parse tags, search for Unit ID */
Harald Welte4a88a492014-08-20 23:46:40 +0200457 ipa_ccm_idtag_parse(&tlvp, (uint8_t *)msg->l2h + 2,
Pablo Neira Ayuso625295b2011-04-07 14:15:16 +0200458 msgb_l2len(msg)-2);
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200459 DEBUGP(DLMI, "\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100460
461 if (!TLVP_PRESENT(&tlvp, IPAC_IDTAG_UNIT)) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200462 LOGP(DLINP, LOGL_ERROR, "No Unit ID in ID RESPONSE !?!\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100463 return -EIO;
464 }
465
466 /* lookup BTS, create sign_link, ... */
Harald Welteeb623012014-08-18 22:33:12 +0200467 memset(&unit_data, 0, sizeof(unit_data));
Harald Welte4a88a492014-08-20 23:46:40 +0200468 ipa_parse_unitid((char *)TLVP_VAL(&tlvp, IPAC_IDTAG_UNIT),
Harald Welteeb623012014-08-18 22:33:12 +0200469 &unit_data);
470 ipbc = find_bts_by_unitid(ipp, unit_data.site_id, unit_data.bts_id);
Harald Welte2ca7c312009-12-23 22:44:04 +0100471 if (!ipbc) {
472 /* We have not found an ipbc (per-bts proxy instance)
473 * for this BTS yet. The first connection of a new BTS must
474 * be a OML connection. We allocate the associated data structures,
475 * and try to connect to the remote end */
476
Harald Welteeb623012014-08-18 22:33:12 +0200477 return ipbc_alloc_connect(ipc, bfd, unit_data.site_id,
478 unit_data.bts_id,
479 unit_data.trx_id, &tlvp, msg);
Harald Welte2ca7c312009-12-23 22:44:04 +0100480 /* if this fails, the caller will clean up bfd */
481 } else {
482 struct sockaddr_in sin;
483 memset(&sin, 0, sizeof(sin));
484 sin.sin_family = AF_INET;
485 inet_aton(bsc_ipaddr, &sin.sin_addr);
486
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200487 DEBUGP(DLINP, "Identified BTS %u/%u/%u\n",
Harald Welteeb623012014-08-18 22:33:12 +0200488 unit_data.site_id, unit_data.bts_id, unit_data.trx_id);
Harald Welte2ca7c312009-12-23 22:44:04 +0100489
490 if ((bfd->priv_nr & 0xff) != RSL_FROM_BTS) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200491 LOGP(DLINP, LOGL_ERROR, "Second OML connection from "
Harald Welte2ca7c312009-12-23 22:44:04 +0100492 "same BTS ?!?\n");
493 return 0;
494 }
495
Harald Welteeb623012014-08-18 22:33:12 +0200496 if (unit_data.trx_id >= MAX_TRX) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200497 LOGP(DLINP, LOGL_ERROR, "We don't support more "
Harald Welte2ca7c312009-12-23 22:44:04 +0100498 "than %u TRX\n", MAX_TRX);
499 return -EINVAL;
500 }
501
502 ipc->bts_conn = ipbc;
503 /* store TRX number in higher 8 bit of the bfd private number */
Harald Welteeb623012014-08-18 22:33:12 +0200504 bfd->priv_nr |= unit_data.trx_id << 8;
505 ipbc->rsl_conn[unit_data.trx_id] = ipc;
Harald Welte2ca7c312009-12-23 22:44:04 +0100506
507 /* Create RSL TCP connection towards BSC */
Harald Welte87ed5cd2009-12-23 22:47:53 +0100508 sin.sin_port = htons(IPA_TCP_PORT_RSL);
Harald Welteeb623012014-08-18 22:33:12 +0200509 ipbc->bsc_rsl_conn[unit_data.trx_id] =
510 connect_bsc(&sin, RSL_TO_BSC | (unit_data.trx_id << 8), ipbc);
Harald Welte2ca7c312009-12-23 22:44:04 +0100511 if (!ipbc->bsc_oml_conn)
512 return -EIO;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200513 DEBUGP(DLINP, "(%u/%u/%u) Connected RSL to BSC\n",
Harald Welteeb623012014-08-18 22:33:12 +0200514 unit_data.site_id, unit_data.bts_id, unit_data.trx_id);
Harald Welte2ca7c312009-12-23 22:44:04 +0100515 }
516 break;
517 case IPAC_MSGT_ID_GET:
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200518 DEBUGP(DLMI, "ID_GET\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100519 if ((bfd->priv_nr & 0xff) != OML_TO_BSC &&
520 (bfd->priv_nr & 0xff) != RSL_TO_BSC) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200521 DEBUGP(DLINP, "IDentity REQuest from BTS ?!?\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100522 return -EIO;
523 }
524 ipbc = ipc->bts_conn;
525 if (!ipbc) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200526 DEBUGP(DLINP, "ID_GET from BSC before we have ID_RESP from BTS\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100527 return -EIO;
528 }
529 ret = write(bfd->fd, ipbc->id_resp, ipbc->id_resp_len);
530 break;
531 case IPAC_MSGT_ID_ACK:
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200532 DEBUGP(DLMI, "ID_ACK? -> ACK!\n");
Harald Welte4a88a492014-08-20 23:46:40 +0200533 ret = ipa_ccm_send_id_ack(bfd->fd);
Harald Welte2ca7c312009-12-23 22:44:04 +0100534 break;
Holger Hans Peter Freyther0897dad2010-06-09 17:38:59 +0800535 default:
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200536 LOGP(DLMI, LOGL_ERROR, "Unhandled IPA type; %d\n", msg_type);
Holger Hans Peter Freyther0897dad2010-06-09 17:38:59 +0800537 return 1;
538 break;
Harald Welte2ca7c312009-12-23 22:44:04 +0100539 }
540 return 0;
541}
542
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200543struct msgb *ipaccess_proxy_read_msg(struct osmo_fd *bfd, int *error)
Harald Welte2ca7c312009-12-23 22:44:04 +0100544{
545 struct msgb *msg = msgb_alloc(PROXY_ALLOC_SIZE, "Abis/IP");
546 struct ipaccess_head *hh;
547 int len, ret = 0;
548
549 if (!msg) {
550 *error = -ENOMEM;
551 return NULL;
552 }
553
554 /* first read our 3-byte header */
555 hh = (struct ipaccess_head *) msg->data;
556 ret = recv(bfd->fd, msg->data, 3, 0);
557 if (ret < 0) {
Harald Weltefb339572009-12-24 13:35:18 +0100558 if (errno != EAGAIN)
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200559 LOGP(DLINP, LOGL_ERROR, "recv error: %s\n", strerror(errno));
Harald Welte2ca7c312009-12-23 22:44:04 +0100560 msgb_free(msg);
561 *error = ret;
562 return NULL;
563 } else if (ret == 0) {
564 msgb_free(msg);
565 *error = ret;
566 return NULL;
567 }
568
569 msgb_put(msg, ret);
570
571 /* then read te length as specified in header */
572 msg->l2h = msg->data + sizeof(*hh);
573 len = ntohs(hh->len);
574 ret = recv(bfd->fd, msg->l2h, len, 0);
575 if (ret < len) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200576 LOGP(DLINP, LOGL_ERROR, "short read!\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100577 msgb_free(msg);
578 *error = -EIO;
579 return NULL;
580 }
581 msgb_put(msg, ret);
582
583 return msg;
584}
585
586static struct ipa_proxy_conn *ipc_by_priv_nr(struct ipa_bts_conn *ipbc,
587 unsigned int priv_nr)
588{
589 struct ipa_proxy_conn *bsc_conn;
590 unsigned int trx_id = priv_nr >> 8;
591
592 switch (priv_nr & 0xff) {
593 case OML_FROM_BTS: /* incoming OML data from BTS, forward to BSC OML */
594 bsc_conn = ipbc->bsc_oml_conn;
595 break;
596 case RSL_FROM_BTS: /* incoming RSL data from BTS, forward to BSC RSL */
597 bsc_conn = ipbc->bsc_rsl_conn[trx_id];
598 break;
599 case OML_TO_BSC: /* incoming OML data from BSC, forward to BTS OML */
600 bsc_conn = ipbc->oml_conn;
601 break;
602 case RSL_TO_BSC: /* incoming RSL data from BSC, forward to BTS RSL */
603 bsc_conn = ipbc->rsl_conn[trx_id];
604 break;
605 default:
606 bsc_conn = NULL;
607 break;
608 }
609 return bsc_conn;
610}
611
612static void reconn_tmr_cb(void *data)
613{
614 struct ipa_proxy *ipp = data;
615 struct ipa_bts_conn *ipbc;
616 struct sockaddr_in sin;
617 int i;
618
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200619 DEBUGP(DLINP, "Running reconnect timer\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100620
621 memset(&sin, 0, sizeof(sin));
622 sin.sin_family = AF_INET;
623 inet_aton(bsc_ipaddr, &sin.sin_addr);
624
625 llist_for_each_entry(ipbc, &ipp->bts_list, list) {
626 /* if OML to BSC is dead, try to restore it */
627 if (ipbc->oml_conn && !ipbc->bsc_oml_conn) {
Harald Welte87ed5cd2009-12-23 22:47:53 +0100628 sin.sin_port = htons(IPA_TCP_PORT_OML);
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200629 logp_ipbc_uid(DLINP, LOGL_NOTICE, ipbc, 0);
630 LOGPC(DLINP, LOGL_NOTICE, "OML Trying to reconnect\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100631 ipbc->bsc_oml_conn = connect_bsc(&sin, OML_TO_BSC, ipbc);
632 if (!ipbc->bsc_oml_conn)
633 goto reschedule;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200634 logp_ipbc_uid(DLINP, LOGL_NOTICE, ipbc, 0);
635 LOGPC(DLINP, LOGL_NOTICE, "OML Reconnected\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100636 }
637 /* if we (still) don't have a OML connection, skip RSL */
638 if (!ipbc->oml_conn || !ipbc->bsc_oml_conn)
639 continue;
640
641 for (i = 0; i < ARRAY_SIZE(ipbc->rsl_conn); i++) {
642 unsigned int priv_nr;
643 /* don't establish RSL links which we don't have */
644 if (!ipbc->rsl_conn[i])
645 continue;
646 if (ipbc->bsc_rsl_conn[i])
647 continue;
648 priv_nr = ipbc->rsl_conn[i]->fd.priv_nr;
649 priv_nr &= ~0xff;
650 priv_nr |= RSL_TO_BSC;
Harald Welte87ed5cd2009-12-23 22:47:53 +0100651 sin.sin_port = htons(IPA_TCP_PORT_RSL);
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200652 logp_ipbc_uid(DLINP, LOGL_NOTICE, ipbc, priv_nr >> 8);
653 LOGPC(DLINP, LOGL_NOTICE, "RSL Trying to reconnect\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100654 ipbc->bsc_rsl_conn[i] = connect_bsc(&sin, priv_nr, ipbc);
Holger Hans Peter Freytherc9251fa2013-07-14 08:47:06 +0200655 if (!ipbc->bsc_rsl_conn[i])
Harald Welte2ca7c312009-12-23 22:44:04 +0100656 goto reschedule;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200657 logp_ipbc_uid(DLINP, LOGL_NOTICE, ipbc, priv_nr >> 8);
658 LOGPC(DLINP, LOGL_NOTICE, "RSL Reconnected\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100659 }
660 }
661 return;
662
663reschedule:
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200664 osmo_timer_schedule(&ipp->reconn_timer, 5, 0);
Harald Welte2ca7c312009-12-23 22:44:04 +0100665}
666
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200667static void handle_dead_socket(struct osmo_fd *bfd)
Harald Welte2ca7c312009-12-23 22:44:04 +0100668{
669 struct ipa_proxy_conn *ipc = bfd->data; /* local conn */
670 struct ipa_proxy_conn *bsc_conn; /* remote conn */
671 struct ipa_bts_conn *ipbc = ipc->bts_conn;
672 unsigned int trx_id = bfd->priv_nr >> 8;
673 struct msgb *msg, *msg2;
674
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200675 osmo_fd_unregister(bfd);
Harald Welte2ca7c312009-12-23 22:44:04 +0100676 close(bfd->fd);
677 bfd->fd = -1;
678
679 /* FIXME: clear tx_queue, remove all references, etc. */
680 llist_for_each_entry_safe(msg, msg2, &ipc->tx_queue, list)
681 msgb_free(msg);
682
683 switch (bfd->priv_nr & 0xff) {
684 case OML_FROM_BTS: /* incoming OML data from BTS, forward to BSC OML */
Pablo Neira Ayuso3c409c22011-03-27 21:31:48 +0200685 /* The BTS started a connection with us but we got no
686 * IPAC_MSGT_ID_RESP message yet, in that scenario we did not
687 * allocate the ipa_bts_conn structure. */
688 if (ipbc == NULL)
689 break;
Harald Welte2ca7c312009-12-23 22:44:04 +0100690 ipbc->oml_conn = NULL;
691 bsc_conn = ipbc->bsc_oml_conn;
692 /* close the connection to the BSC */
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200693 osmo_fd_unregister(&bsc_conn->fd);
Harald Welte2ca7c312009-12-23 22:44:04 +0100694 close(bsc_conn->fd.fd);
695 llist_for_each_entry_safe(msg, msg2, &bsc_conn->tx_queue, list)
696 msgb_free(msg);
697 talloc_free(bsc_conn);
698 ipbc->bsc_oml_conn = NULL;
699 /* FIXME: do we need to delete the entire ipbc ? */
700 break;
701 case RSL_FROM_BTS: /* incoming RSL data from BTS, forward to BSC RSL */
702 ipbc->rsl_conn[trx_id] = NULL;
703 bsc_conn = ipbc->bsc_rsl_conn[trx_id];
704 /* close the connection to the BSC */
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200705 osmo_fd_unregister(&bsc_conn->fd);
Harald Welte2ca7c312009-12-23 22:44:04 +0100706 close(bsc_conn->fd.fd);
707 llist_for_each_entry_safe(msg, msg2, &bsc_conn->tx_queue, list)
708 msgb_free(msg);
709 talloc_free(bsc_conn);
710 ipbc->bsc_rsl_conn[trx_id] = NULL;
711 break;
712 case OML_TO_BSC: /* incoming OML data from BSC, forward to BTS OML */
713 ipbc->bsc_oml_conn = NULL;
714 bsc_conn = ipbc->oml_conn;
715 /* start reconnect timer */
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200716 osmo_timer_schedule(&ipp->reconn_timer, 5, 0);
Harald Welte2ca7c312009-12-23 22:44:04 +0100717 break;
718 case RSL_TO_BSC: /* incoming RSL data from BSC, forward to BTS RSL */
719 ipbc->bsc_rsl_conn[trx_id] = NULL;
720 bsc_conn = ipbc->rsl_conn[trx_id];
721 /* start reconnect timer */
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200722 osmo_timer_schedule(&ipp->reconn_timer, 5, 0);
Harald Welte2ca7c312009-12-23 22:44:04 +0100723 break;
724 default:
725 bsc_conn = NULL;
726 break;
727 }
728
729 talloc_free(ipc);
730}
731
Holger Hans Peter Freyther4fe22cc2010-06-10 15:57:08 +0800732static void patch_gprs_msg(struct ipa_bts_conn *ipbc, int priv_nr, struct msgb *msg)
733{
734 uint8_t *nsvci;
735
736 if ((priv_nr & 0xff) != OML_FROM_BTS && (priv_nr & 0xff) != OML_TO_BSC)
737 return;
738
739 if (msgb_l2len(msg) != 39)
740 return;
741
742 /*
743 * Check if this is a IPA Set Attribute or IPA Set Attribute ACK
744 * and if the FOM Class is GPRS NSVC0 and then we will patch it.
745 *
746 * The patch assumes the message looks like the one from the trace
747 * but we only match messages with a specific size anyway... So
748 * this hack should work just fine.
749 */
750
751 if (msg->l2h[0] == 0x10 && msg->l2h[1] == 0x80 &&
752 msg->l2h[2] == 0x00 && msg->l2h[3] == 0x15 &&
753 msg->l2h[18] == 0xf5 && msg->l2h[19] == 0xf2) {
Holger Hans Peter Freyther4fe22cc2010-06-10 15:57:08 +0800754 nsvci = &msg->l2h[23];
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200755 ipbc->gprs_orig_port = *(uint16_t *)(nsvci+8);
756 ipbc->gprs_orig_ip = *(uint32_t *)(nsvci+10);
757 *(uint16_t *)(nsvci+8) = htons(ipbc->gprs_local_port);
758 *(uint32_t *)(nsvci+10) = ipbc->ipp->listen_addr.s_addr;
Holger Hans Peter Freyther4fe22cc2010-06-10 15:57:08 +0800759 } else if (msg->l2h[0] == 0x10 && msg->l2h[1] == 0x80 &&
760 msg->l2h[2] == 0x00 && msg->l2h[3] == 0x15 &&
761 msg->l2h[18] == 0xf6 && msg->l2h[19] == 0xf2) {
Holger Hans Peter Freyther4fe22cc2010-06-10 15:57:08 +0800762 nsvci = &msg->l2h[23];
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200763 *(uint16_t *)(nsvci+8) = ipbc->gprs_orig_port;
764 *(uint32_t *)(nsvci+10) = ipbc->gprs_orig_ip;
Holger Hans Peter Freyther4fe22cc2010-06-10 15:57:08 +0800765 }
766}
767
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200768static int handle_tcp_read(struct osmo_fd *bfd)
Harald Welte2ca7c312009-12-23 22:44:04 +0100769{
770 struct ipa_proxy_conn *ipc = bfd->data;
771 struct ipa_bts_conn *ipbc = ipc->bts_conn;
772 struct ipa_proxy_conn *bsc_conn;
Harald Weltea16ef3d2009-12-23 23:35:51 +0100773 struct msgb *msg;
Harald Welte2ca7c312009-12-23 22:44:04 +0100774 struct ipaccess_head *hh;
775 int ret = 0;
776 char *btsbsc;
777
Harald Welte2ca7c312009-12-23 22:44:04 +0100778 if ((bfd->priv_nr & 0xff) <= 2)
779 btsbsc = "BTS";
780 else
781 btsbsc = "BSC";
782
Pablo Neira Ayuso22f58a92011-04-07 14:15:06 +0200783 msg = ipaccess_proxy_read_msg(bfd, &ret);
Harald Welte2ca7c312009-12-23 22:44:04 +0100784 if (!msg) {
785 if (ret == 0) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200786 logp_ipbc_uid(DLINP, LOGL_NOTICE, ipbc, bfd->priv_nr >> 8);
787 LOGPC(DLINP, LOGL_NOTICE, "%s disappeared, "
Harald Welte2ca7c312009-12-23 22:44:04 +0100788 "dead socket\n", btsbsc);
789 handle_dead_socket(bfd);
790 }
791 return ret;
792 }
793
794 msgb_put(msg, ret);
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200795 logp_ipbc_uid(DLMI, LOGL_DEBUG, ipbc, bfd->priv_nr >> 8);
796 DEBUGPC(DLMI, "RX<-%s: %s\n", btsbsc, osmo_hexdump(msg->data, msg->len));
Harald Welte2ca7c312009-12-23 22:44:04 +0100797
798 hh = (struct ipaccess_head *) msg->data;
799 if (hh->proto == IPAC_PROTO_IPACCESS) {
800 ret = ipaccess_rcvmsg(ipc, msg, bfd);
801 if (ret < 0) {
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200802 osmo_fd_unregister(bfd);
Harald Welte2ca7c312009-12-23 22:44:04 +0100803 close(bfd->fd);
804 bfd->fd = -1;
805 talloc_free(bfd);
Holger Hans Peter Freyther0897dad2010-06-09 17:38:59 +0800806 msgb_free(msg);
807 return ret;
808 } else if (ret == 0) {
809 /* we do not forward parts of the CCM protocol
810 * through the proxy but rather terminate it ourselves. */
811 msgb_free(msg);
812 return ret;
Harald Welte2ca7c312009-12-23 22:44:04 +0100813 }
Harald Welte2ca7c312009-12-23 22:44:04 +0100814 }
815
816 if (!ipbc) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200817 LOGP(DLINP, LOGL_ERROR,
Harald Welte2ca7c312009-12-23 22:44:04 +0100818 "received %s packet but no ipc->bts_conn?!?\n", btsbsc);
819 msgb_free(msg);
820 return -EIO;
821 }
822
823 bsc_conn = ipc_by_priv_nr(ipbc, bfd->priv_nr);
824 if (bsc_conn) {
Holger Hans Peter Freyther4fe22cc2010-06-10 15:57:08 +0800825 if (gprs_ns_ipaddr)
826 patch_gprs_msg(ipbc, bfd->priv_nr, msg);
Harald Welte2ca7c312009-12-23 22:44:04 +0100827 /* enqueue packet towards BSC */
828 msgb_enqueue(&bsc_conn->tx_queue, msg);
829 /* mark respective filedescriptor as 'we want to write' */
830 bsc_conn->fd.when |= BSC_FD_WRITE;
831 } else {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200832 logp_ipbc_uid(DLINP, LOGL_INFO, ipbc, bfd->priv_nr >> 8);
833 LOGPC(DLINP, LOGL_INFO, "Dropping packet from %s, "
Harald Welte2ca7c312009-12-23 22:44:04 +0100834 "since remote connection is dead\n", btsbsc);
835 msgb_free(msg);
836 }
837
838 return ret;
839}
840
841/* a TCP socket is ready to be written to */
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200842static int handle_tcp_write(struct osmo_fd *bfd)
Harald Welte2ca7c312009-12-23 22:44:04 +0100843{
844 struct ipa_proxy_conn *ipc = bfd->data;
845 struct ipa_bts_conn *ipbc = ipc->bts_conn;
846 struct llist_head *lh;
847 struct msgb *msg;
848 char *btsbsc;
849 int ret;
850
851 if ((bfd->priv_nr & 0xff) <= 2)
852 btsbsc = "BTS";
853 else
854 btsbsc = "BSC";
855
856
857 /* get the next msg for this timeslot */
858 if (llist_empty(&ipc->tx_queue)) {
859 bfd->when &= ~BSC_FD_WRITE;
860 return 0;
861 }
862 lh = ipc->tx_queue.next;
863 llist_del(lh);
864 msg = llist_entry(lh, struct msgb, list);
865
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200866 logp_ipbc_uid(DLMI, LOGL_DEBUG, ipbc, bfd->priv_nr >> 8);
867 DEBUGPC(DLMI, "TX %04x: %s\n", bfd->priv_nr,
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +0200868 osmo_hexdump(msg->data, msg->len));
Harald Welte2ca7c312009-12-23 22:44:04 +0100869
870 ret = send(bfd->fd, msg->data, msg->len, 0);
871 msgb_free(msg);
872
873 if (ret == 0) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200874 logp_ipbc_uid(DLINP, LOGL_NOTICE, ipbc, bfd->priv_nr >> 8);
875 LOGP(DLINP, LOGL_NOTICE, "%s disappeared, dead socket\n", btsbsc);
Harald Welte2ca7c312009-12-23 22:44:04 +0100876 handle_dead_socket(bfd);
877 }
878
879 return ret;
880}
881
882/* callback from select.c in case one of the fd's can be read/written */
Harald Welteeb623012014-08-18 22:33:12 +0200883static int proxy_ipaccess_fd_cb(struct osmo_fd *bfd, unsigned int what)
Harald Welte2ca7c312009-12-23 22:44:04 +0100884{
885 int rc = 0;
886
887 if (what & BSC_FD_READ) {
888 rc = handle_tcp_read(bfd);
889 if (rc < 0)
890 return rc;
891 }
892 if (what & BSC_FD_WRITE)
893 rc = handle_tcp_write(bfd);
894
895 return rc;
896}
897
898/* callback of the listening filedescriptor */
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200899static int listen_fd_cb(struct osmo_fd *listen_bfd, unsigned int what)
Harald Welte2ca7c312009-12-23 22:44:04 +0100900{
901 int ret;
902 struct ipa_proxy_conn *ipc;
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200903 struct osmo_fd *bfd;
Harald Welte2ca7c312009-12-23 22:44:04 +0100904 struct sockaddr_in sa;
905 socklen_t sa_len = sizeof(sa);
906
907 if (!(what & BSC_FD_READ))
908 return 0;
909
910 ret = accept(listen_bfd->fd, (struct sockaddr *) &sa, &sa_len);
911 if (ret < 0) {
912 perror("accept");
913 return ret;
914 }
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200915 DEBUGP(DLINP, "accept()ed new %s link from %s\n",
Harald Welte2ca7c312009-12-23 22:44:04 +0100916 (listen_bfd->priv_nr & 0xff) == OML_FROM_BTS ? "OML" : "RSL",
917 inet_ntoa(sa.sin_addr));
918
919 ipc = alloc_conn();
920 if (!ipc) {
921 close(ret);
922 return -ENOMEM;
923 }
924
925 bfd = &ipc->fd;
926 bfd->fd = ret;
927 bfd->data = ipc;
928 bfd->priv_nr = listen_bfd->priv_nr;
Harald Welteeb623012014-08-18 22:33:12 +0200929 bfd->cb = proxy_ipaccess_fd_cb;
Harald Welte2ca7c312009-12-23 22:44:04 +0100930 bfd->when = BSC_FD_READ;
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200931 ret = osmo_fd_register(bfd);
Harald Welte2ca7c312009-12-23 22:44:04 +0100932 if (ret < 0) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200933 LOGP(DLINP, LOGL_ERROR, "could not register FD\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100934 close(bfd->fd);
935 talloc_free(ipc);
936 return ret;
937 }
938
939 /* Request ID. FIXME: request LOCATION, HW/SW VErsion, Unit Name, Serno */
Harald Welte4a88a492014-08-20 23:46:40 +0200940 ret = ipa_ccm_send_id_req(bfd->fd);
Harald Welte2ca7c312009-12-23 22:44:04 +0100941
942 return 0;
943}
944
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800945static void send_ns(int fd, const char *buf, int size, struct in_addr ip, int port)
946{
947 int ret;
948 struct sockaddr_in addr;
949 socklen_t len = sizeof(addr);
950 memset(&addr, 0, sizeof(addr));
951
952 addr.sin_family = AF_INET;
Holger Hans Peter Freyther21e1c0d2010-06-10 15:56:26 +0800953 addr.sin_port = htons(port);
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800954 addr.sin_addr = ip;
955
956 ret = sendto(fd, buf, size, 0, (struct sockaddr *) &addr, len);
957 if (ret < 0) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200958 LOGP(DLINP, LOGL_ERROR, "Failed to forward GPRS message.\n");
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800959 }
960}
961
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200962static int gprs_ns_cb(struct osmo_fd *bfd, unsigned int what)
Holger Hans Peter Freyther6147c5d2010-06-09 16:20:39 +0800963{
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800964 struct ipa_bts_conn *bts;
965 char buf[4096];
966 int ret;
967 struct sockaddr_in sock;
968 socklen_t len = sizeof(sock);
969
970 /* 1. get the data... */
971 ret = recvfrom(bfd->fd, buf, sizeof(buf), 0, (struct sockaddr *) &sock, &len);
972 if (ret < 0) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200973 LOGP(DLINP, LOGL_ERROR, "Failed to recv GPRS NS msg: %s.\n", strerror(errno));
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800974 return -1;
975 }
976
977 bts = bfd->data;
978
979 /* 2. figure out where to send it to */
980 if (memcmp(&sock.sin_addr, &ipp->gprs_addr, sizeof(sock.sin_addr)) == 0) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200981 LOGP(DLINP, LOGL_DEBUG, "GPRS NS msg from network.\n");
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800982 send_ns(bfd->fd, buf, ret, bts->bts_addr, 23000);
983 } else if (memcmp(&sock.sin_addr, &bts->bts_addr, sizeof(sock.sin_addr)) == 0) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200984 LOGP(DLINP, LOGL_DEBUG, "GPRS NS msg from BTS.\n");
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800985 send_ns(bfd->fd, buf, ret, ipp->gprs_addr, 23000);
Holger Hans Peter Freyther21e1c0d2010-06-10 15:56:26 +0800986 } else {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200987 LOGP(DLINP, LOGL_ERROR, "Unknown GPRS source: %s\n", inet_ntoa(sock.sin_addr));
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800988 }
989
Holger Hans Peter Freyther6147c5d2010-06-09 16:20:39 +0800990 return 0;
991}
992
Harald Welte2ca7c312009-12-23 22:44:04 +0100993/* Actively connect to a BSC. */
994static struct ipa_proxy_conn *connect_bsc(struct sockaddr_in *sa, int priv_nr, void *data)
995{
996 struct ipa_proxy_conn *ipc;
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200997 struct osmo_fd *bfd;
Harald Welte2ca7c312009-12-23 22:44:04 +0100998 int ret, on = 1;
999
1000 ipc = alloc_conn();
1001 if (!ipc)
1002 return NULL;
1003
1004 ipc->bts_conn = data;
1005
1006 bfd = &ipc->fd;
1007 bfd->fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
1008 bfd->cb = ipaccess_fd_cb;
1009 bfd->when = BSC_FD_READ | BSC_FD_WRITE;
1010 bfd->data = ipc;
1011 bfd->priv_nr = priv_nr;
1012
Holger Hans Peter Freythere18209c2013-12-12 16:16:35 +01001013 if (bfd->fd < 0) {
1014 LOGP(DLINP, LOGL_ERROR, "Could not create socket: %s\n",
1015 strerror(errno));
1016 talloc_free(ipc);
1017 return NULL;
1018 }
1019
Harald Welte2ca7c312009-12-23 22:44:04 +01001020 setsockopt(bfd->fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
1021
1022 ret = connect(bfd->fd, (struct sockaddr *) sa, sizeof(*sa));
1023 if (ret < 0) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001024 LOGP(DLINP, LOGL_ERROR, "Could not connect socket: %s\n",
Holger Hans Peter Freyther6cb9b232010-06-09 15:15:11 +08001025 inet_ntoa(sa->sin_addr));
Harald Welte2ca7c312009-12-23 22:44:04 +01001026 close(bfd->fd);
1027 talloc_free(ipc);
1028 return NULL;
1029 }
1030
1031 /* pre-fill tx_queue with identity request */
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +02001032 ret = osmo_fd_register(bfd);
Harald Welte2ca7c312009-12-23 22:44:04 +01001033 if (ret < 0) {
1034 close(bfd->fd);
1035 talloc_free(ipc);
1036 return NULL;
1037 }
1038
1039 return ipc;
1040}
1041
1042static int ipaccess_proxy_setup(void)
1043{
1044 int ret;
1045
1046 ipp = talloc_zero(tall_bsc_ctx, struct ipa_proxy);
1047 if (!ipp)
1048 return -ENOMEM;
1049 INIT_LLIST_HEAD(&ipp->bts_list);
1050 ipp->reconn_timer.cb = reconn_tmr_cb;
1051 ipp->reconn_timer.data = ipp;
1052
1053 /* Listen for OML connections */
Pablo Neira Ayuso3ab864a2011-04-07 14:15:02 +02001054 ret = make_sock(&ipp->oml_listen_fd, IPPROTO_TCP, INADDR_ANY,
1055 IPA_TCP_PORT_OML, OML_FROM_BTS, listen_fd_cb, NULL);
Harald Welte2ca7c312009-12-23 22:44:04 +01001056 if (ret < 0)
1057 return ret;
1058
1059 /* Listen for RSL connections */
Pablo Neira Ayuso3ab864a2011-04-07 14:15:02 +02001060 ret = make_sock(&ipp->rsl_listen_fd, IPPROTO_TCP, INADDR_ANY,
1061 IPA_TCP_PORT_RSL, RSL_FROM_BTS, listen_fd_cb, NULL);
Harald Welte2ca7c312009-12-23 22:44:04 +01001062
Holger Hans Peter Freyther6147c5d2010-06-09 16:20:39 +08001063 if (ret < 0)
1064 return ret;
1065
1066 /* Connect the GPRS NS Socket */
Holger Hans Peter Freyther4fe22cc2010-06-10 15:57:08 +08001067 if (gprs_ns_ipaddr) {
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +08001068 inet_aton(gprs_ns_ipaddr, &ipp->gprs_addr);
Holger Hans Peter Freyther4fe22cc2010-06-10 15:57:08 +08001069 inet_aton(listen_ipaddr, &ipp->listen_addr);
1070 }
Holger Hans Peter Freyther6147c5d2010-06-09 16:20:39 +08001071
Harald Welte2ca7c312009-12-23 22:44:04 +01001072 return ret;
1073}
1074
1075static void signal_handler(int signal)
1076{
1077 fprintf(stdout, "signal %u received\n", signal);
1078
1079 switch (signal) {
1080 case SIGABRT:
1081 /* in case of abort, we want to obtain a talloc report
1082 * and then return to the caller, who will abort the process */
1083 case SIGUSR1:
1084 talloc_report_full(tall_bsc_ctx, stderr);
1085 break;
1086 default:
1087 break;
1088 }
1089}
1090
Harald Welted4ab13b2011-07-16 13:39:44 +02001091static void print_help(void)
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001092{
1093 printf(" ipaccess-proxy is a proxy BTS.\n");
1094 printf(" -h --help. This help text.\n");
1095 printf(" -l --listen IP. The ip to listen to.\n");
Holger Hans Peter Freyther6147c5d2010-06-09 16:20:39 +08001096 printf(" -b --bsc IP. The BSC IP address.\n");
1097 printf(" -g --gprs IP. Take GPRS NS from that IP.\n");
1098 printf("\n");
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001099 printf(" -s --disable-color. Disable the color inside the logging message.\n");
1100 printf(" -e --log-level number. Set the global loglevel.\n");
1101 printf(" -T --timestamp. Prefix every log message with a timestamp.\n");
1102 printf(" -V --version. Print the version of OpenBSC.\n");
1103}
1104
Harald Welted4ab13b2011-07-16 13:39:44 +02001105static void print_usage(void)
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001106{
Pablo Neira Ayuso9f1294d2011-04-07 18:47:39 +02001107 printf("Usage: ipaccess-proxy [options]\n");
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001108}
1109
Pablo Neira Ayuso9f1294d2011-04-07 18:47:39 +02001110enum {
1111 IPA_PROXY_OPT_LISTEN_NONE = 0,
1112 IPA_PROXY_OPT_LISTEN_IP = (1 << 0),
1113 IPA_PROXY_OPT_BSC_IP = (1 << 1),
1114};
1115
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001116static void handle_options(int argc, char** argv)
1117{
Pablo Neira Ayuso9f1294d2011-04-07 18:47:39 +02001118 int options_mask = 0;
1119
Pablo Neira Ayuso25ffe542011-04-11 16:33:03 +02001120 /* disable explicit missing arguments error output from getopt_long */
1121 opterr = 0;
1122
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001123 while (1) {
1124 int option_index = 0, c;
1125 static struct option long_options[] = {
1126 {"help", 0, 0, 'h'},
1127 {"disable-color", 0, 0, 's'},
1128 {"timestamp", 0, 0, 'T'},
1129 {"log-level", 1, 0, 'e'},
1130 {"listen", 1, 0, 'l'},
1131 {"bsc", 1, 0, 'b'},
1132 {0, 0, 0, 0}
1133 };
1134
Holger Hans Peter Freyther6147c5d2010-06-09 16:20:39 +08001135 c = getopt_long(argc, argv, "hsTe:l:b:g:",
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001136 long_options, &option_index);
1137 if (c == -1)
1138 break;
1139
1140 switch (c) {
1141 case 'h':
1142 print_usage();
1143 print_help();
1144 exit(0);
1145 case 'l':
1146 listen_ipaddr = optarg;
Pablo Neira Ayuso9f1294d2011-04-07 18:47:39 +02001147 options_mask |= IPA_PROXY_OPT_LISTEN_IP;
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001148 break;
1149 case 'b':
1150 bsc_ipaddr = optarg;
Pablo Neira Ayuso9f1294d2011-04-07 18:47:39 +02001151 options_mask |= IPA_PROXY_OPT_BSC_IP;
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001152 break;
Holger Hans Peter Freyther6147c5d2010-06-09 16:20:39 +08001153 case 'g':
1154 gprs_ns_ipaddr = optarg;
1155 break;
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001156 case 's':
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +02001157 log_set_use_color(osmo_stderr_target, 0);
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001158 break;
1159 case 'T':
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +02001160 log_set_print_timestamp(osmo_stderr_target, 1);
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001161 break;
1162 case 'e':
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +02001163 log_set_log_level(osmo_stderr_target, atoi(optarg));
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001164 break;
Pablo Neira Ayuso25ffe542011-04-11 16:33:03 +02001165 case '?':
1166 if (optopt) {
1167 printf("ERROR: missing mandatory argument "
1168 "for `%s' option\n", argv[optind-1]);
1169 } else {
1170 printf("ERROR: unknown option `%s'\n",
1171 argv[optind-1]);
1172 }
1173 print_usage();
1174 print_help();
1175 exit(EXIT_FAILURE);
1176 break;
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001177 default:
1178 /* ignore */
1179 break;
1180 }
1181 }
Pablo Neira Ayuso9f1294d2011-04-07 18:47:39 +02001182 if ((options_mask & (IPA_PROXY_OPT_LISTEN_IP | IPA_PROXY_OPT_BSC_IP))
1183 != (IPA_PROXY_OPT_LISTEN_IP | IPA_PROXY_OPT_BSC_IP)) {
1184 printf("ERROR: You have to specify `--listen' and `--bsc' "
1185 "options at least.\n");
1186 print_usage();
1187 print_help();
1188 exit(EXIT_FAILURE);
1189 }
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001190}
1191
Harald Welte2ca7c312009-12-23 22:44:04 +01001192int main(int argc, char **argv)
1193{
1194 int rc;
1195
Harald Welte2ca7c312009-12-23 22:44:04 +01001196 tall_bsc_ctx = talloc_named_const(NULL, 1, "ipaccess-proxy");
1197
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +02001198 osmo_init_logging(&log_info);
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001199 log_parse_category_mask(osmo_stderr_target, "DLINP:DLMI");
Harald Welte2ca7c312009-12-23 22:44:04 +01001200
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001201 handle_options(argc, argv);
1202
Harald Welte2ca7c312009-12-23 22:44:04 +01001203 rc = ipaccess_proxy_setup();
1204 if (rc < 0)
1205 exit(1);
1206
1207 signal(SIGUSR1, &signal_handler);
1208 signal(SIGABRT, &signal_handler);
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +02001209 osmo_init_ignore_signals();
Harald Welte2ca7c312009-12-23 22:44:04 +01001210
1211 while (1) {
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +02001212 osmo_select_main(0);
Harald Welte2ca7c312009-12-23 22:44:04 +01001213 }
1214}