blob: 5cf6d6d93366571a7ed747f79bfcba469675029c [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
Neels Hofmeyrc0164792017-09-04 15:15:32 +020040#include <osmocom/bsc/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>
Neels Hofmeyrc0164792017-09-04 15:15:32 +020048#include <osmocom/bsc/debug.h>
49#include <osmocom/bsc/ipaccess.h>
Neels Hofmeyr978f58c2018-02-13 17:37:39 +010050#include <osmocom/core/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);
Neels Hofmeyr978f58c2018-02-13 17:37:39 +0100372 ipbc->udp_bts_fd.priv_nr = UDP_TO_BTS;
373 ipbc->udp_bts_fd.cb = udp_fd_cb;
374 ipbc->udp_bts_fd.data = ipbc;
375 ret = osmo_sock_init_ofd(&ipbc->udp_bts_fd, AF_INET, SOCK_DGRAM, IPPROTO_UDP,
376 NULL, udp_port, OSMO_SOCK_F_BIND);
Harald Welte2ca7c312009-12-23 22:44:04 +0100377 if (ret < 0)
378 goto err_udp_bts;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200379 DEBUGP(DLINP, "(%u/%u/%u) Created UDP socket for injection "
Harald Welte2ca7c312009-12-23 22:44:04 +0100380 "towards BTS at port %u\n", site_id, bts_id, trx_id, udp_port);
381
382 /* Create UDP socket for BSC packet injection */
383 udp_port = 20000 + (site_id % 1000)*100 + (bts_id % 100);
Neels Hofmeyr978f58c2018-02-13 17:37:39 +0100384 ipbc->udp_bsc_fd.priv_nr = UDP_TO_BSC;
385 ipbc->udp_bsc_fd.cb = udp_fd_cb;
386 ipbc->udp_bsc_fd.data = ipbc;
387 ret = osmo_sock_init_ofd(&ipbc->udp_bsc_fd, AF_INET, SOCK_DGRAM, IPPROTO_UDP,
388 NULL, udp_port, OSMO_SOCK_F_BIND);
Harald Welte2ca7c312009-12-23 22:44:04 +0100389 if (ret < 0)
390 goto err_udp_bsc;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200391 DEBUGP(DLINP, "(%u/%u/%u) Created UDP socket for injection "
Harald Welte2ca7c312009-12-23 22:44:04 +0100392 "towards BSC at port %u\n", site_id, bts_id, trx_id, udp_port);
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800393
394
395 /* GPRS NS related code */
396 if (gprs_ns_ipaddr) {
397 struct sockaddr_in sock;
398 socklen_t len = sizeof(sock);
Pablo Neira Ayuso7e737002011-04-11 16:33:17 +0200399
Neels Hofmeyr978f58c2018-02-13 17:37:39 +0100400 ipbc->gprs_ns_fd.priv_nr = 0;
401 ipbc->gprs_ns_fd.cb = gprs_ns_cb;
402 ipbc->gprs_ns_fd.data = ipbc;
403 ret = osmo_sock_init_ofd(&ipbc->gprs_ns_fd, AF_INET, SOCK_DGRAM, IPPROTO_UDP,
404 listen_ipaddr, 0, OSMO_SOCK_F_BIND);
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800405 if (ret < 0) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200406 LOGP(DLINP, LOGL_ERROR, "Creating the GPRS socket failed.\n");
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800407 goto err_udp_bsc;
408 }
409
410 ret = getsockname(ipbc->gprs_ns_fd.fd, (struct sockaddr* ) &sock, &len);
411 ipbc->gprs_local_port = ntohs(sock.sin_port);
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200412 LOGP(DLINP, LOGL_NOTICE,
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800413 "Created GPRS NS Socket. Listening on: %s:%d\n",
414 inet_ntoa(sock.sin_addr), ipbc->gprs_local_port);
415
416 ret = getpeername(bfd->fd, (struct sockaddr* ) &sock, &len);
417 ipbc->bts_addr = sock.sin_addr;
418 }
419
Harald Welte2ca7c312009-12-23 22:44:04 +0100420 llist_add(&ipbc->list, &ipp->bts_list);
421
422 return 0;
423
424err_udp_bsc:
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200425 osmo_fd_unregister(&ipbc->udp_bts_fd);
Harald Welte2ca7c312009-12-23 22:44:04 +0100426err_udp_bts:
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200427 osmo_fd_unregister(&ipbc->bsc_oml_conn->fd);
Harald Welte2ca7c312009-12-23 22:44:04 +0100428 close(ipbc->bsc_oml_conn->fd.fd);
429 talloc_free(ipbc->bsc_oml_conn);
430 ipbc->bsc_oml_conn = NULL;
431err_bsc_conn:
432 talloc_free(ipbc->id_resp);
433 talloc_free(ipbc);
434#if 0
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200435 osmo_fd_unregister(bfd);
Harald Welte2ca7c312009-12-23 22:44:04 +0100436 close(bfd->fd);
437 talloc_free(bfd);
438#endif
439err_out:
440 return ret;
441}
442
443static int ipaccess_rcvmsg(struct ipa_proxy_conn *ipc, struct msgb *msg,
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200444 struct osmo_fd *bfd)
Harald Welte2ca7c312009-12-23 22:44:04 +0100445{
446 struct tlv_parsed tlvp;
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200447 uint8_t msg_type = *(msg->l2h);
Harald Welteeb623012014-08-18 22:33:12 +0200448 struct ipaccess_unit unit_data;
Harald Welte2ca7c312009-12-23 22:44:04 +0100449 struct ipa_bts_conn *ipbc;
450 int ret = 0;
451
452 switch (msg_type) {
453 case IPAC_MSGT_PING:
Harald Welte4a88a492014-08-20 23:46:40 +0200454 ret = ipa_ccm_send_pong(bfd->fd);
Harald Welte2ca7c312009-12-23 22:44:04 +0100455 break;
456 case IPAC_MSGT_PONG:
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200457 DEBUGP(DLMI, "PONG!\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100458 break;
459 case IPAC_MSGT_ID_RESP:
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200460 DEBUGP(DLMI, "ID_RESP ");
Harald Welte2ca7c312009-12-23 22:44:04 +0100461 /* parse tags, search for Unit ID */
Harald Welte4a88a492014-08-20 23:46:40 +0200462 ipa_ccm_idtag_parse(&tlvp, (uint8_t *)msg->l2h + 2,
Pablo Neira Ayuso625295b2011-04-07 14:15:16 +0200463 msgb_l2len(msg)-2);
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200464 DEBUGP(DLMI, "\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100465
466 if (!TLVP_PRESENT(&tlvp, IPAC_IDTAG_UNIT)) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200467 LOGP(DLINP, LOGL_ERROR, "No Unit ID in ID RESPONSE !?!\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100468 return -EIO;
469 }
470
471 /* lookup BTS, create sign_link, ... */
Harald Welteeb623012014-08-18 22:33:12 +0200472 memset(&unit_data, 0, sizeof(unit_data));
Harald Welte4a88a492014-08-20 23:46:40 +0200473 ipa_parse_unitid((char *)TLVP_VAL(&tlvp, IPAC_IDTAG_UNIT),
Harald Welteeb623012014-08-18 22:33:12 +0200474 &unit_data);
475 ipbc = find_bts_by_unitid(ipp, unit_data.site_id, unit_data.bts_id);
Harald Welte2ca7c312009-12-23 22:44:04 +0100476 if (!ipbc) {
477 /* We have not found an ipbc (per-bts proxy instance)
478 * for this BTS yet. The first connection of a new BTS must
479 * be a OML connection. We allocate the associated data structures,
480 * and try to connect to the remote end */
481
Harald Welteeb623012014-08-18 22:33:12 +0200482 return ipbc_alloc_connect(ipc, bfd, unit_data.site_id,
483 unit_data.bts_id,
484 unit_data.trx_id, &tlvp, msg);
Harald Welte2ca7c312009-12-23 22:44:04 +0100485 /* if this fails, the caller will clean up bfd */
486 } else {
487 struct sockaddr_in sin;
488 memset(&sin, 0, sizeof(sin));
489 sin.sin_family = AF_INET;
490 inet_aton(bsc_ipaddr, &sin.sin_addr);
491
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200492 DEBUGP(DLINP, "Identified BTS %u/%u/%u\n",
Harald Welteeb623012014-08-18 22:33:12 +0200493 unit_data.site_id, unit_data.bts_id, unit_data.trx_id);
Harald Welte2ca7c312009-12-23 22:44:04 +0100494
495 if ((bfd->priv_nr & 0xff) != RSL_FROM_BTS) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200496 LOGP(DLINP, LOGL_ERROR, "Second OML connection from "
Harald Welte2ca7c312009-12-23 22:44:04 +0100497 "same BTS ?!?\n");
498 return 0;
499 }
500
Harald Welteeb623012014-08-18 22:33:12 +0200501 if (unit_data.trx_id >= MAX_TRX) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200502 LOGP(DLINP, LOGL_ERROR, "We don't support more "
Harald Welte2ca7c312009-12-23 22:44:04 +0100503 "than %u TRX\n", MAX_TRX);
504 return -EINVAL;
505 }
506
507 ipc->bts_conn = ipbc;
508 /* store TRX number in higher 8 bit of the bfd private number */
Harald Welteeb623012014-08-18 22:33:12 +0200509 bfd->priv_nr |= unit_data.trx_id << 8;
510 ipbc->rsl_conn[unit_data.trx_id] = ipc;
Harald Welte2ca7c312009-12-23 22:44:04 +0100511
512 /* Create RSL TCP connection towards BSC */
Harald Welte87ed5cd2009-12-23 22:47:53 +0100513 sin.sin_port = htons(IPA_TCP_PORT_RSL);
Harald Welteeb623012014-08-18 22:33:12 +0200514 ipbc->bsc_rsl_conn[unit_data.trx_id] =
515 connect_bsc(&sin, RSL_TO_BSC | (unit_data.trx_id << 8), ipbc);
Harald Welte2ca7c312009-12-23 22:44:04 +0100516 if (!ipbc->bsc_oml_conn)
517 return -EIO;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200518 DEBUGP(DLINP, "(%u/%u/%u) Connected RSL to BSC\n",
Harald Welteeb623012014-08-18 22:33:12 +0200519 unit_data.site_id, unit_data.bts_id, unit_data.trx_id);
Harald Welte2ca7c312009-12-23 22:44:04 +0100520 }
521 break;
522 case IPAC_MSGT_ID_GET:
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200523 DEBUGP(DLMI, "ID_GET\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100524 if ((bfd->priv_nr & 0xff) != OML_TO_BSC &&
525 (bfd->priv_nr & 0xff) != RSL_TO_BSC) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200526 DEBUGP(DLINP, "IDentity REQuest from BTS ?!?\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100527 return -EIO;
528 }
529 ipbc = ipc->bts_conn;
530 if (!ipbc) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200531 DEBUGP(DLINP, "ID_GET from BSC before we have ID_RESP from BTS\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100532 return -EIO;
533 }
534 ret = write(bfd->fd, ipbc->id_resp, ipbc->id_resp_len);
Neels Hofmeyr127fc932016-02-24 19:29:59 +0100535 if (ret != ipbc->id_resp_len) {
536 LOGP(DLINP, LOGL_ERROR, "Partial write: %d of %d\n",
537 ret, ipbc->id_resp_len);
538 return -EIO;
539 }
540 ret = 0;
Harald Welte2ca7c312009-12-23 22:44:04 +0100541 break;
542 case IPAC_MSGT_ID_ACK:
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200543 DEBUGP(DLMI, "ID_ACK? -> ACK!\n");
Harald Welte4a88a492014-08-20 23:46:40 +0200544 ret = ipa_ccm_send_id_ack(bfd->fd);
Harald Welte2ca7c312009-12-23 22:44:04 +0100545 break;
Holger Hans Peter Freyther0897dad2010-06-09 17:38:59 +0800546 default:
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200547 LOGP(DLMI, LOGL_ERROR, "Unhandled IPA type; %d\n", msg_type);
Holger Hans Peter Freyther0897dad2010-06-09 17:38:59 +0800548 return 1;
549 break;
Harald Welte2ca7c312009-12-23 22:44:04 +0100550 }
Neels Hofmeyr127fc932016-02-24 19:29:59 +0100551 return ret;
Harald Welte2ca7c312009-12-23 22:44:04 +0100552}
553
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200554struct msgb *ipaccess_proxy_read_msg(struct osmo_fd *bfd, int *error)
Harald Welte2ca7c312009-12-23 22:44:04 +0100555{
556 struct msgb *msg = msgb_alloc(PROXY_ALLOC_SIZE, "Abis/IP");
557 struct ipaccess_head *hh;
558 int len, ret = 0;
559
560 if (!msg) {
561 *error = -ENOMEM;
562 return NULL;
563 }
564
565 /* first read our 3-byte header */
566 hh = (struct ipaccess_head *) msg->data;
567 ret = recv(bfd->fd, msg->data, 3, 0);
568 if (ret < 0) {
Harald Weltefb339572009-12-24 13:35:18 +0100569 if (errno != EAGAIN)
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200570 LOGP(DLINP, LOGL_ERROR, "recv error: %s\n", strerror(errno));
Harald Welte2ca7c312009-12-23 22:44:04 +0100571 msgb_free(msg);
572 *error = ret;
573 return NULL;
574 } else if (ret == 0) {
575 msgb_free(msg);
576 *error = ret;
577 return NULL;
578 }
579
580 msgb_put(msg, ret);
581
582 /* then read te length as specified in header */
583 msg->l2h = msg->data + sizeof(*hh);
584 len = ntohs(hh->len);
585 ret = recv(bfd->fd, msg->l2h, len, 0);
586 if (ret < len) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200587 LOGP(DLINP, LOGL_ERROR, "short read!\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100588 msgb_free(msg);
589 *error = -EIO;
590 return NULL;
591 }
592 msgb_put(msg, ret);
593
594 return msg;
595}
596
597static struct ipa_proxy_conn *ipc_by_priv_nr(struct ipa_bts_conn *ipbc,
598 unsigned int priv_nr)
599{
600 struct ipa_proxy_conn *bsc_conn;
601 unsigned int trx_id = priv_nr >> 8;
602
603 switch (priv_nr & 0xff) {
604 case OML_FROM_BTS: /* incoming OML data from BTS, forward to BSC OML */
605 bsc_conn = ipbc->bsc_oml_conn;
606 break;
607 case RSL_FROM_BTS: /* incoming RSL data from BTS, forward to BSC RSL */
608 bsc_conn = ipbc->bsc_rsl_conn[trx_id];
609 break;
610 case OML_TO_BSC: /* incoming OML data from BSC, forward to BTS OML */
611 bsc_conn = ipbc->oml_conn;
612 break;
613 case RSL_TO_BSC: /* incoming RSL data from BSC, forward to BTS RSL */
614 bsc_conn = ipbc->rsl_conn[trx_id];
615 break;
616 default:
617 bsc_conn = NULL;
618 break;
619 }
620 return bsc_conn;
621}
622
623static void reconn_tmr_cb(void *data)
624{
625 struct ipa_proxy *ipp = data;
626 struct ipa_bts_conn *ipbc;
627 struct sockaddr_in sin;
628 int i;
629
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200630 DEBUGP(DLINP, "Running reconnect timer\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100631
632 memset(&sin, 0, sizeof(sin));
633 sin.sin_family = AF_INET;
634 inet_aton(bsc_ipaddr, &sin.sin_addr);
635
636 llist_for_each_entry(ipbc, &ipp->bts_list, list) {
637 /* if OML to BSC is dead, try to restore it */
638 if (ipbc->oml_conn && !ipbc->bsc_oml_conn) {
Harald Welte87ed5cd2009-12-23 22:47:53 +0100639 sin.sin_port = htons(IPA_TCP_PORT_OML);
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200640 logp_ipbc_uid(DLINP, LOGL_NOTICE, ipbc, 0);
641 LOGPC(DLINP, LOGL_NOTICE, "OML Trying to reconnect\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100642 ipbc->bsc_oml_conn = connect_bsc(&sin, OML_TO_BSC, ipbc);
643 if (!ipbc->bsc_oml_conn)
644 goto reschedule;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200645 logp_ipbc_uid(DLINP, LOGL_NOTICE, ipbc, 0);
646 LOGPC(DLINP, LOGL_NOTICE, "OML Reconnected\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100647 }
648 /* if we (still) don't have a OML connection, skip RSL */
649 if (!ipbc->oml_conn || !ipbc->bsc_oml_conn)
650 continue;
651
652 for (i = 0; i < ARRAY_SIZE(ipbc->rsl_conn); i++) {
653 unsigned int priv_nr;
654 /* don't establish RSL links which we don't have */
655 if (!ipbc->rsl_conn[i])
656 continue;
657 if (ipbc->bsc_rsl_conn[i])
658 continue;
659 priv_nr = ipbc->rsl_conn[i]->fd.priv_nr;
660 priv_nr &= ~0xff;
661 priv_nr |= RSL_TO_BSC;
Harald Welte87ed5cd2009-12-23 22:47:53 +0100662 sin.sin_port = htons(IPA_TCP_PORT_RSL);
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200663 logp_ipbc_uid(DLINP, LOGL_NOTICE, ipbc, priv_nr >> 8);
664 LOGPC(DLINP, LOGL_NOTICE, "RSL Trying to reconnect\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100665 ipbc->bsc_rsl_conn[i] = connect_bsc(&sin, priv_nr, ipbc);
Holger Hans Peter Freytherc9251fa2013-07-14 08:47:06 +0200666 if (!ipbc->bsc_rsl_conn[i])
Harald Welte2ca7c312009-12-23 22:44:04 +0100667 goto reschedule;
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200668 logp_ipbc_uid(DLINP, LOGL_NOTICE, ipbc, priv_nr >> 8);
669 LOGPC(DLINP, LOGL_NOTICE, "RSL Reconnected\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100670 }
671 }
672 return;
673
674reschedule:
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200675 osmo_timer_schedule(&ipp->reconn_timer, 5, 0);
Harald Welte2ca7c312009-12-23 22:44:04 +0100676}
677
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200678static void handle_dead_socket(struct osmo_fd *bfd)
Harald Welte2ca7c312009-12-23 22:44:04 +0100679{
680 struct ipa_proxy_conn *ipc = bfd->data; /* local conn */
681 struct ipa_proxy_conn *bsc_conn; /* remote conn */
682 struct ipa_bts_conn *ipbc = ipc->bts_conn;
683 unsigned int trx_id = bfd->priv_nr >> 8;
684 struct msgb *msg, *msg2;
685
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200686 osmo_fd_unregister(bfd);
Harald Welte2ca7c312009-12-23 22:44:04 +0100687 close(bfd->fd);
688 bfd->fd = -1;
689
690 /* FIXME: clear tx_queue, remove all references, etc. */
691 llist_for_each_entry_safe(msg, msg2, &ipc->tx_queue, list)
692 msgb_free(msg);
693
694 switch (bfd->priv_nr & 0xff) {
695 case OML_FROM_BTS: /* incoming OML data from BTS, forward to BSC OML */
Pablo Neira Ayuso3c409c22011-03-27 21:31:48 +0200696 /* The BTS started a connection with us but we got no
697 * IPAC_MSGT_ID_RESP message yet, in that scenario we did not
698 * allocate the ipa_bts_conn structure. */
699 if (ipbc == NULL)
700 break;
Harald Welte2ca7c312009-12-23 22:44:04 +0100701 ipbc->oml_conn = NULL;
702 bsc_conn = ipbc->bsc_oml_conn;
703 /* close the connection to the BSC */
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200704 osmo_fd_unregister(&bsc_conn->fd);
Harald Welte2ca7c312009-12-23 22:44:04 +0100705 close(bsc_conn->fd.fd);
706 llist_for_each_entry_safe(msg, msg2, &bsc_conn->tx_queue, list)
707 msgb_free(msg);
708 talloc_free(bsc_conn);
709 ipbc->bsc_oml_conn = NULL;
710 /* FIXME: do we need to delete the entire ipbc ? */
711 break;
712 case RSL_FROM_BTS: /* incoming RSL data from BTS, forward to BSC RSL */
713 ipbc->rsl_conn[trx_id] = NULL;
714 bsc_conn = ipbc->bsc_rsl_conn[trx_id];
715 /* close the connection to the BSC */
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200716 osmo_fd_unregister(&bsc_conn->fd);
Harald Welte2ca7c312009-12-23 22:44:04 +0100717 close(bsc_conn->fd.fd);
718 llist_for_each_entry_safe(msg, msg2, &bsc_conn->tx_queue, list)
719 msgb_free(msg);
720 talloc_free(bsc_conn);
721 ipbc->bsc_rsl_conn[trx_id] = NULL;
722 break;
723 case OML_TO_BSC: /* incoming OML data from BSC, forward to BTS OML */
724 ipbc->bsc_oml_conn = NULL;
725 bsc_conn = ipbc->oml_conn;
726 /* start reconnect timer */
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200727 osmo_timer_schedule(&ipp->reconn_timer, 5, 0);
Harald Welte2ca7c312009-12-23 22:44:04 +0100728 break;
729 case RSL_TO_BSC: /* incoming RSL data from BSC, forward to BTS RSL */
730 ipbc->bsc_rsl_conn[trx_id] = NULL;
731 bsc_conn = ipbc->rsl_conn[trx_id];
732 /* start reconnect timer */
Pablo Neira Ayusobf540cb2011-05-06 12:11:06 +0200733 osmo_timer_schedule(&ipp->reconn_timer, 5, 0);
Harald Welte2ca7c312009-12-23 22:44:04 +0100734 break;
735 default:
736 bsc_conn = NULL;
737 break;
738 }
739
740 talloc_free(ipc);
741}
742
Holger Hans Peter Freyther4fe22cc2010-06-10 15:57:08 +0800743static void patch_gprs_msg(struct ipa_bts_conn *ipbc, int priv_nr, struct msgb *msg)
744{
745 uint8_t *nsvci;
746
747 if ((priv_nr & 0xff) != OML_FROM_BTS && (priv_nr & 0xff) != OML_TO_BSC)
748 return;
749
750 if (msgb_l2len(msg) != 39)
751 return;
752
753 /*
754 * Check if this is a IPA Set Attribute or IPA Set Attribute ACK
755 * and if the FOM Class is GPRS NSVC0 and then we will patch it.
756 *
757 * The patch assumes the message looks like the one from the trace
758 * but we only match messages with a specific size anyway... So
759 * this hack should work just fine.
760 */
761
762 if (msg->l2h[0] == 0x10 && msg->l2h[1] == 0x80 &&
763 msg->l2h[2] == 0x00 && msg->l2h[3] == 0x15 &&
764 msg->l2h[18] == 0xf5 && msg->l2h[19] == 0xf2) {
Holger Hans Peter Freyther4fe22cc2010-06-10 15:57:08 +0800765 nsvci = &msg->l2h[23];
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200766 ipbc->gprs_orig_port = *(uint16_t *)(nsvci+8);
767 ipbc->gprs_orig_ip = *(uint32_t *)(nsvci+10);
768 *(uint16_t *)(nsvci+8) = htons(ipbc->gprs_local_port);
769 *(uint32_t *)(nsvci+10) = ipbc->ipp->listen_addr.s_addr;
Holger Hans Peter Freyther4fe22cc2010-06-10 15:57:08 +0800770 } else if (msg->l2h[0] == 0x10 && msg->l2h[1] == 0x80 &&
771 msg->l2h[2] == 0x00 && msg->l2h[3] == 0x15 &&
772 msg->l2h[18] == 0xf6 && msg->l2h[19] == 0xf2) {
Holger Hans Peter Freyther4fe22cc2010-06-10 15:57:08 +0800773 nsvci = &msg->l2h[23];
Holger Hans Peter Freytherc42ad8b2011-04-18 17:04:00 +0200774 *(uint16_t *)(nsvci+8) = ipbc->gprs_orig_port;
775 *(uint32_t *)(nsvci+10) = ipbc->gprs_orig_ip;
Holger Hans Peter Freyther4fe22cc2010-06-10 15:57:08 +0800776 }
777}
778
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200779static int handle_tcp_read(struct osmo_fd *bfd)
Harald Welte2ca7c312009-12-23 22:44:04 +0100780{
781 struct ipa_proxy_conn *ipc = bfd->data;
782 struct ipa_bts_conn *ipbc = ipc->bts_conn;
783 struct ipa_proxy_conn *bsc_conn;
Harald Weltea16ef3d2009-12-23 23:35:51 +0100784 struct msgb *msg;
Harald Welte2ca7c312009-12-23 22:44:04 +0100785 struct ipaccess_head *hh;
786 int ret = 0;
787 char *btsbsc;
788
Harald Welte2ca7c312009-12-23 22:44:04 +0100789 if ((bfd->priv_nr & 0xff) <= 2)
790 btsbsc = "BTS";
791 else
792 btsbsc = "BSC";
793
Pablo Neira Ayuso22f58a92011-04-07 14:15:06 +0200794 msg = ipaccess_proxy_read_msg(bfd, &ret);
Harald Welte2ca7c312009-12-23 22:44:04 +0100795 if (!msg) {
796 if (ret == 0) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200797 logp_ipbc_uid(DLINP, LOGL_NOTICE, ipbc, bfd->priv_nr >> 8);
798 LOGPC(DLINP, LOGL_NOTICE, "%s disappeared, "
Harald Welte2ca7c312009-12-23 22:44:04 +0100799 "dead socket\n", btsbsc);
800 handle_dead_socket(bfd);
801 }
802 return ret;
803 }
804
805 msgb_put(msg, ret);
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200806 logp_ipbc_uid(DLMI, LOGL_DEBUG, ipbc, bfd->priv_nr >> 8);
807 DEBUGPC(DLMI, "RX<-%s: %s\n", btsbsc, osmo_hexdump(msg->data, msg->len));
Harald Welte2ca7c312009-12-23 22:44:04 +0100808
809 hh = (struct ipaccess_head *) msg->data;
810 if (hh->proto == IPAC_PROTO_IPACCESS) {
811 ret = ipaccess_rcvmsg(ipc, msg, bfd);
812 if (ret < 0) {
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200813 osmo_fd_unregister(bfd);
Harald Welte2ca7c312009-12-23 22:44:04 +0100814 close(bfd->fd);
815 bfd->fd = -1;
816 talloc_free(bfd);
Holger Hans Peter Freyther0897dad2010-06-09 17:38:59 +0800817 msgb_free(msg);
818 return ret;
819 } else if (ret == 0) {
820 /* we do not forward parts of the CCM protocol
821 * through the proxy but rather terminate it ourselves. */
822 msgb_free(msg);
823 return ret;
Harald Welte2ca7c312009-12-23 22:44:04 +0100824 }
Harald Welte2ca7c312009-12-23 22:44:04 +0100825 }
826
827 if (!ipbc) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200828 LOGP(DLINP, LOGL_ERROR,
Harald Welte2ca7c312009-12-23 22:44:04 +0100829 "received %s packet but no ipc->bts_conn?!?\n", btsbsc);
830 msgb_free(msg);
831 return -EIO;
832 }
833
834 bsc_conn = ipc_by_priv_nr(ipbc, bfd->priv_nr);
835 if (bsc_conn) {
Holger Hans Peter Freyther4fe22cc2010-06-10 15:57:08 +0800836 if (gprs_ns_ipaddr)
837 patch_gprs_msg(ipbc, bfd->priv_nr, msg);
Harald Welte2ca7c312009-12-23 22:44:04 +0100838 /* enqueue packet towards BSC */
839 msgb_enqueue(&bsc_conn->tx_queue, msg);
840 /* mark respective filedescriptor as 'we want to write' */
841 bsc_conn->fd.when |= BSC_FD_WRITE;
842 } else {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200843 logp_ipbc_uid(DLINP, LOGL_INFO, ipbc, bfd->priv_nr >> 8);
844 LOGPC(DLINP, LOGL_INFO, "Dropping packet from %s, "
Harald Welte2ca7c312009-12-23 22:44:04 +0100845 "since remote connection is dead\n", btsbsc);
846 msgb_free(msg);
847 }
848
849 return ret;
850}
851
852/* a TCP socket is ready to be written to */
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200853static int handle_tcp_write(struct osmo_fd *bfd)
Harald Welte2ca7c312009-12-23 22:44:04 +0100854{
855 struct ipa_proxy_conn *ipc = bfd->data;
856 struct ipa_bts_conn *ipbc = ipc->bts_conn;
857 struct llist_head *lh;
858 struct msgb *msg;
859 char *btsbsc;
860 int ret;
861
862 if ((bfd->priv_nr & 0xff) <= 2)
863 btsbsc = "BTS";
864 else
865 btsbsc = "BSC";
866
867
868 /* get the next msg for this timeslot */
869 if (llist_empty(&ipc->tx_queue)) {
870 bfd->when &= ~BSC_FD_WRITE;
871 return 0;
872 }
873 lh = ipc->tx_queue.next;
874 llist_del(lh);
875 msg = llist_entry(lh, struct msgb, list);
876
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200877 logp_ipbc_uid(DLMI, LOGL_DEBUG, ipbc, bfd->priv_nr >> 8);
878 DEBUGPC(DLMI, "TX %04x: %s\n", bfd->priv_nr,
Pablo Neira Ayusoc0d17f22011-05-07 12:12:48 +0200879 osmo_hexdump(msg->data, msg->len));
Harald Welte2ca7c312009-12-23 22:44:04 +0100880
881 ret = send(bfd->fd, msg->data, msg->len, 0);
882 msgb_free(msg);
883
884 if (ret == 0) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200885 logp_ipbc_uid(DLINP, LOGL_NOTICE, ipbc, bfd->priv_nr >> 8);
886 LOGP(DLINP, LOGL_NOTICE, "%s disappeared, dead socket\n", btsbsc);
Harald Welte2ca7c312009-12-23 22:44:04 +0100887 handle_dead_socket(bfd);
888 }
889
890 return ret;
891}
892
893/* callback from select.c in case one of the fd's can be read/written */
Harald Welteeb623012014-08-18 22:33:12 +0200894static int proxy_ipaccess_fd_cb(struct osmo_fd *bfd, unsigned int what)
Harald Welte2ca7c312009-12-23 22:44:04 +0100895{
896 int rc = 0;
897
898 if (what & BSC_FD_READ) {
899 rc = handle_tcp_read(bfd);
900 if (rc < 0)
901 return rc;
902 }
903 if (what & BSC_FD_WRITE)
904 rc = handle_tcp_write(bfd);
905
906 return rc;
907}
908
909/* callback of the listening filedescriptor */
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200910static int listen_fd_cb(struct osmo_fd *listen_bfd, unsigned int what)
Harald Welte2ca7c312009-12-23 22:44:04 +0100911{
912 int ret;
913 struct ipa_proxy_conn *ipc;
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200914 struct osmo_fd *bfd;
Harald Welte2ca7c312009-12-23 22:44:04 +0100915 struct sockaddr_in sa;
916 socklen_t sa_len = sizeof(sa);
917
918 if (!(what & BSC_FD_READ))
919 return 0;
920
921 ret = accept(listen_bfd->fd, (struct sockaddr *) &sa, &sa_len);
922 if (ret < 0) {
923 perror("accept");
924 return ret;
925 }
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200926 DEBUGP(DLINP, "accept()ed new %s link from %s\n",
Harald Welte2ca7c312009-12-23 22:44:04 +0100927 (listen_bfd->priv_nr & 0xff) == OML_FROM_BTS ? "OML" : "RSL",
928 inet_ntoa(sa.sin_addr));
929
930 ipc = alloc_conn();
931 if (!ipc) {
932 close(ret);
933 return -ENOMEM;
934 }
935
936 bfd = &ipc->fd;
937 bfd->fd = ret;
938 bfd->data = ipc;
939 bfd->priv_nr = listen_bfd->priv_nr;
Harald Welteeb623012014-08-18 22:33:12 +0200940 bfd->cb = proxy_ipaccess_fd_cb;
Harald Welte2ca7c312009-12-23 22:44:04 +0100941 bfd->when = BSC_FD_READ;
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200942 ret = osmo_fd_register(bfd);
Harald Welte2ca7c312009-12-23 22:44:04 +0100943 if (ret < 0) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200944 LOGP(DLINP, LOGL_ERROR, "could not register FD\n");
Harald Welte2ca7c312009-12-23 22:44:04 +0100945 close(bfd->fd);
946 talloc_free(ipc);
947 return ret;
948 }
949
950 /* Request ID. FIXME: request LOCATION, HW/SW VErsion, Unit Name, Serno */
Harald Welte4a88a492014-08-20 23:46:40 +0200951 ret = ipa_ccm_send_id_req(bfd->fd);
Harald Welte2ca7c312009-12-23 22:44:04 +0100952
953 return 0;
954}
955
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800956static void send_ns(int fd, const char *buf, int size, struct in_addr ip, int port)
957{
958 int ret;
959 struct sockaddr_in addr;
960 socklen_t len = sizeof(addr);
961 memset(&addr, 0, sizeof(addr));
962
963 addr.sin_family = AF_INET;
Holger Hans Peter Freyther21e1c0d2010-06-10 15:56:26 +0800964 addr.sin_port = htons(port);
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800965 addr.sin_addr = ip;
966
967 ret = sendto(fd, buf, size, 0, (struct sockaddr *) &addr, len);
968 if (ret < 0) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200969 LOGP(DLINP, LOGL_ERROR, "Failed to forward GPRS message.\n");
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800970 }
971}
972
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +0200973static int gprs_ns_cb(struct osmo_fd *bfd, unsigned int what)
Holger Hans Peter Freyther6147c5d2010-06-09 16:20:39 +0800974{
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800975 struct ipa_bts_conn *bts;
976 char buf[4096];
977 int ret;
978 struct sockaddr_in sock;
979 socklen_t len = sizeof(sock);
980
981 /* 1. get the data... */
982 ret = recvfrom(bfd->fd, buf, sizeof(buf), 0, (struct sockaddr *) &sock, &len);
983 if (ret < 0) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200984 LOGP(DLINP, LOGL_ERROR, "Failed to recv GPRS NS msg: %s.\n", strerror(errno));
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800985 return -1;
986 }
987
988 bts = bfd->data;
989
990 /* 2. figure out where to send it to */
991 if (memcmp(&sock.sin_addr, &ipp->gprs_addr, sizeof(sock.sin_addr)) == 0) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200992 LOGP(DLINP, LOGL_DEBUG, "GPRS NS msg from network.\n");
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800993 send_ns(bfd->fd, buf, ret, bts->bts_addr, 23000);
994 } else if (memcmp(&sock.sin_addr, &bts->bts_addr, sizeof(sock.sin_addr)) == 0) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200995 LOGP(DLINP, LOGL_DEBUG, "GPRS NS msg from BTS.\n");
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800996 send_ns(bfd->fd, buf, ret, ipp->gprs_addr, 23000);
Holger Hans Peter Freyther21e1c0d2010-06-10 15:56:26 +0800997 } else {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +0200998 LOGP(DLINP, LOGL_ERROR, "Unknown GPRS source: %s\n", inet_ntoa(sock.sin_addr));
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +0800999 }
1000
Holger Hans Peter Freyther6147c5d2010-06-09 16:20:39 +08001001 return 0;
1002}
1003
Harald Welte2ca7c312009-12-23 22:44:04 +01001004/* Actively connect to a BSC. */
1005static struct ipa_proxy_conn *connect_bsc(struct sockaddr_in *sa, int priv_nr, void *data)
1006{
1007 struct ipa_proxy_conn *ipc;
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +02001008 struct osmo_fd *bfd;
Harald Welte2ca7c312009-12-23 22:44:04 +01001009 int ret, on = 1;
1010
1011 ipc = alloc_conn();
1012 if (!ipc)
1013 return NULL;
1014
1015 ipc->bts_conn = data;
1016
1017 bfd = &ipc->fd;
1018 bfd->fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
1019 bfd->cb = ipaccess_fd_cb;
1020 bfd->when = BSC_FD_READ | BSC_FD_WRITE;
1021 bfd->data = ipc;
1022 bfd->priv_nr = priv_nr;
1023
Holger Hans Peter Freythere18209c2013-12-12 16:16:35 +01001024 if (bfd->fd < 0) {
1025 LOGP(DLINP, LOGL_ERROR, "Could not create socket: %s\n",
1026 strerror(errno));
1027 talloc_free(ipc);
1028 return NULL;
1029 }
1030
Harald Welte3c165d02016-11-26 14:09:34 +01001031 ret = setsockopt(bfd->fd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on));
1032 if (ret < 0) {
1033 LOGP(DLINP, LOGL_ERROR, "Could not set socket option\n");
1034 close(bfd->fd);
1035 talloc_free(ipc);
1036 return NULL;
1037 }
Harald Welte2ca7c312009-12-23 22:44:04 +01001038
1039 ret = connect(bfd->fd, (struct sockaddr *) sa, sizeof(*sa));
1040 if (ret < 0) {
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001041 LOGP(DLINP, LOGL_ERROR, "Could not connect socket: %s\n",
Holger Hans Peter Freyther6cb9b232010-06-09 15:15:11 +08001042 inet_ntoa(sa->sin_addr));
Harald Welte2ca7c312009-12-23 22:44:04 +01001043 close(bfd->fd);
1044 talloc_free(ipc);
1045 return NULL;
1046 }
1047
1048 /* pre-fill tx_queue with identity request */
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +02001049 ret = osmo_fd_register(bfd);
Harald Welte2ca7c312009-12-23 22:44:04 +01001050 if (ret < 0) {
1051 close(bfd->fd);
1052 talloc_free(ipc);
1053 return NULL;
1054 }
1055
1056 return ipc;
1057}
1058
1059static int ipaccess_proxy_setup(void)
1060{
1061 int ret;
1062
1063 ipp = talloc_zero(tall_bsc_ctx, struct ipa_proxy);
1064 if (!ipp)
1065 return -ENOMEM;
1066 INIT_LLIST_HEAD(&ipp->bts_list);
Pablo Neira Ayuso51215762017-05-08 20:57:52 +02001067 osmo_timer_setup(&ipp->reconn_timer, reconn_tmr_cb, ipp);
Harald Welte2ca7c312009-12-23 22:44:04 +01001068
1069 /* Listen for OML connections */
Neels Hofmeyr978f58c2018-02-13 17:37:39 +01001070 ipp->oml_listen_fd.priv_nr = OML_FROM_BTS;
1071 ipp->oml_listen_fd.cb = listen_fd_cb;
1072 ret = osmo_sock_init_ofd(&ipp->oml_listen_fd, AF_INET, SOCK_STREAM, IPPROTO_TCP,
1073 NULL, IPA_TCP_PORT_OML, OSMO_SOCK_F_BIND);
Harald Welte2ca7c312009-12-23 22:44:04 +01001074 if (ret < 0)
1075 return ret;
1076
1077 /* Listen for RSL connections */
Neels Hofmeyr978f58c2018-02-13 17:37:39 +01001078 ipp->rsl_listen_fd.priv_nr = RSL_FROM_BTS;
1079 ipp->rsl_listen_fd.cb = listen_fd_cb;
1080 ret = osmo_sock_init_ofd(&ipp->rsl_listen_fd, AF_INET, SOCK_STREAM, IPPROTO_TCP,
1081 NULL, IPA_TCP_PORT_RSL, OSMO_SOCK_F_BIND);
Holger Hans Peter Freyther6147c5d2010-06-09 16:20:39 +08001082 if (ret < 0)
1083 return ret;
1084
1085 /* Connect the GPRS NS Socket */
Holger Hans Peter Freyther4fe22cc2010-06-10 15:57:08 +08001086 if (gprs_ns_ipaddr) {
Holger Hans Peter Freyther952aba72010-06-09 17:07:43 +08001087 inet_aton(gprs_ns_ipaddr, &ipp->gprs_addr);
Holger Hans Peter Freyther4fe22cc2010-06-10 15:57:08 +08001088 inet_aton(listen_ipaddr, &ipp->listen_addr);
1089 }
Holger Hans Peter Freyther6147c5d2010-06-09 16:20:39 +08001090
Harald Welte2ca7c312009-12-23 22:44:04 +01001091 return ret;
1092}
1093
1094static void signal_handler(int signal)
1095{
1096 fprintf(stdout, "signal %u received\n", signal);
1097
1098 switch (signal) {
1099 case SIGABRT:
1100 /* in case of abort, we want to obtain a talloc report
1101 * and then return to the caller, who will abort the process */
1102 case SIGUSR1:
1103 talloc_report_full(tall_bsc_ctx, stderr);
1104 break;
1105 default:
1106 break;
1107 }
1108}
1109
Harald Welted4ab13b2011-07-16 13:39:44 +02001110static void print_help(void)
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001111{
1112 printf(" ipaccess-proxy is a proxy BTS.\n");
1113 printf(" -h --help. This help text.\n");
1114 printf(" -l --listen IP. The ip to listen to.\n");
Holger Hans Peter Freyther6147c5d2010-06-09 16:20:39 +08001115 printf(" -b --bsc IP. The BSC IP address.\n");
1116 printf(" -g --gprs IP. Take GPRS NS from that IP.\n");
1117 printf("\n");
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001118 printf(" -s --disable-color. Disable the color inside the logging message.\n");
1119 printf(" -e --log-level number. Set the global loglevel.\n");
1120 printf(" -T --timestamp. Prefix every log message with a timestamp.\n");
1121 printf(" -V --version. Print the version of OpenBSC.\n");
1122}
1123
Harald Welted4ab13b2011-07-16 13:39:44 +02001124static void print_usage(void)
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001125{
Pablo Neira Ayuso9f1294d2011-04-07 18:47:39 +02001126 printf("Usage: ipaccess-proxy [options]\n");
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001127}
1128
Pablo Neira Ayuso9f1294d2011-04-07 18:47:39 +02001129enum {
1130 IPA_PROXY_OPT_LISTEN_NONE = 0,
1131 IPA_PROXY_OPT_LISTEN_IP = (1 << 0),
1132 IPA_PROXY_OPT_BSC_IP = (1 << 1),
1133};
1134
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001135static void handle_options(int argc, char** argv)
1136{
Pablo Neira Ayuso9f1294d2011-04-07 18:47:39 +02001137 int options_mask = 0;
1138
Pablo Neira Ayuso25ffe542011-04-11 16:33:03 +02001139 /* disable explicit missing arguments error output from getopt_long */
1140 opterr = 0;
1141
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001142 while (1) {
1143 int option_index = 0, c;
1144 static struct option long_options[] = {
1145 {"help", 0, 0, 'h'},
1146 {"disable-color", 0, 0, 's'},
1147 {"timestamp", 0, 0, 'T'},
1148 {"log-level", 1, 0, 'e'},
1149 {"listen", 1, 0, 'l'},
1150 {"bsc", 1, 0, 'b'},
1151 {0, 0, 0, 0}
1152 };
1153
Holger Hans Peter Freyther6147c5d2010-06-09 16:20:39 +08001154 c = getopt_long(argc, argv, "hsTe:l:b:g:",
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001155 long_options, &option_index);
1156 if (c == -1)
1157 break;
1158
1159 switch (c) {
1160 case 'h':
1161 print_usage();
1162 print_help();
1163 exit(0);
1164 case 'l':
1165 listen_ipaddr = optarg;
Pablo Neira Ayuso9f1294d2011-04-07 18:47:39 +02001166 options_mask |= IPA_PROXY_OPT_LISTEN_IP;
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001167 break;
1168 case 'b':
1169 bsc_ipaddr = optarg;
Pablo Neira Ayuso9f1294d2011-04-07 18:47:39 +02001170 options_mask |= IPA_PROXY_OPT_BSC_IP;
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001171 break;
Holger Hans Peter Freyther6147c5d2010-06-09 16:20:39 +08001172 case 'g':
1173 gprs_ns_ipaddr = optarg;
1174 break;
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001175 case 's':
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +02001176 log_set_use_color(osmo_stderr_target, 0);
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001177 break;
1178 case 'T':
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +02001179 log_set_print_timestamp(osmo_stderr_target, 1);
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001180 break;
1181 case 'e':
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +02001182 log_set_log_level(osmo_stderr_target, atoi(optarg));
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001183 break;
Pablo Neira Ayuso25ffe542011-04-11 16:33:03 +02001184 case '?':
1185 if (optopt) {
1186 printf("ERROR: missing mandatory argument "
1187 "for `%s' option\n", argv[optind-1]);
1188 } else {
1189 printf("ERROR: unknown option `%s'\n",
1190 argv[optind-1]);
1191 }
1192 print_usage();
1193 print_help();
1194 exit(EXIT_FAILURE);
1195 break;
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001196 default:
1197 /* ignore */
1198 break;
1199 }
1200 }
Pablo Neira Ayuso9f1294d2011-04-07 18:47:39 +02001201 if ((options_mask & (IPA_PROXY_OPT_LISTEN_IP | IPA_PROXY_OPT_BSC_IP))
1202 != (IPA_PROXY_OPT_LISTEN_IP | IPA_PROXY_OPT_BSC_IP)) {
1203 printf("ERROR: You have to specify `--listen' and `--bsc' "
1204 "options at least.\n");
1205 print_usage();
1206 print_help();
1207 exit(EXIT_FAILURE);
1208 }
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001209}
1210
Neels Hofmeyr7997bf42018-02-13 17:16:44 +01001211static const struct log_info_cat log_categories[] = {
1212 [DMM] = {
1213 .name = "DMM",
1214 .description = "Layer3 Mobility Management (MM)",
1215 .color = "\033[1;33m",
1216 .enabled = 1, .loglevel = LOGL_NOTICE,
1217 },
1218};
1219
1220const struct log_info log_info = {
1221 .cat = log_categories,
1222 .num_cat = ARRAY_SIZE(log_categories),
1223};
1224
Harald Welte2ca7c312009-12-23 22:44:04 +01001225int main(int argc, char **argv)
1226{
1227 int rc;
1228
Harald Welte2ca7c312009-12-23 22:44:04 +01001229 tall_bsc_ctx = talloc_named_const(NULL, 1, "ipaccess-proxy");
Neels Hofmeyr4c2d4ab2016-09-16 02:31:17 +02001230 msgb_talloc_ctx_init(tall_bsc_ctx, 0);
Harald Welte2ca7c312009-12-23 22:44:04 +01001231
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +02001232 osmo_init_logging(&log_info);
Pablo Neira Ayusoed5cacb2011-08-17 22:44:07 +02001233 log_parse_category_mask(osmo_stderr_target, "DLINP:DLMI");
Harald Welte2ca7c312009-12-23 22:44:04 +01001234
Holger Hans Peter Freyther1a0c2b72010-06-09 14:59:09 +08001235 handle_options(argc, argv);
1236
Harald Welte2ca7c312009-12-23 22:44:04 +01001237 rc = ipaccess_proxy_setup();
1238 if (rc < 0)
1239 exit(1);
1240
1241 signal(SIGUSR1, &signal_handler);
1242 signal(SIGABRT, &signal_handler);
Holger Hans Peter Freyther67cd75f2011-05-12 16:02:07 +02001243 osmo_init_ignore_signals();
Harald Welte2ca7c312009-12-23 22:44:04 +01001244
1245 while (1) {
Pablo Neira Ayuso4db92992011-05-06 12:11:23 +02001246 osmo_select_main(0);
Harald Welte2ca7c312009-12-23 22:44:04 +01001247 }
1248}