blob: acca64310ce246c189777a9dc054f7bc68442baf [file] [log] [blame]
Harald Welte77847ad2015-10-06 22:07:04 +02001/* main application for hnb-gw part of osmo-iuh */
2
3/* (C) 2015 by Harald Welte <laforge@gnumonks.org>
Neels Hofmeyr4d8eb4c2016-08-18 01:03:44 +02004 * (C) 2016 by sysmocom s.f.m.c. GmbH <info@sysmocom.de>
Harald Welte77847ad2015-10-06 22:07:04 +02005 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
16 *
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 *
20 */
21
Harald Welteb3dae302015-08-30 12:20:09 +020022#include <unistd.h>
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26#include <getopt.h>
27#include <errno.h>
28#include <signal.h>
Neels Hofmeyr1d03f192016-08-18 03:15:14 +020029#include <stdbool.h>
Harald Weltea2e6a7a2015-08-29 21:47:39 +020030
Harald Welteb3dae302015-08-30 12:20:09 +020031#include <sys/types.h>
32#include <sys/socket.h>
Harald Welte1d2c39d2015-09-11 17:49:37 +020033#include <netinet/in.h>
Harald Welteb3dae302015-08-30 12:20:09 +020034#include <netinet/sctp.h>
Harald Welte1d2c39d2015-09-11 17:49:37 +020035#include <arpa/inet.h>
Harald Welteb3dae302015-08-30 12:20:09 +020036
37#include <osmocom/core/application.h>
38#include <osmocom/core/talloc.h>
Harald Weltea2e6a7a2015-08-29 21:47:39 +020039#include <osmocom/core/select.h>
Harald Welteb3dae302015-08-30 12:20:09 +020040#include <osmocom/core/logging.h>
Harald Weltea2e6a7a2015-08-29 21:47:39 +020041#include <osmocom/core/socket.h>
Harald Welteb3dae302015-08-30 12:20:09 +020042#include <osmocom/core/msgb.h>
Harald Welte3f712562015-09-07 21:53:25 +020043#include <osmocom/core/write_queue.h>
Harald Welteb3dae302015-08-30 12:20:09 +020044
45#include <osmocom/vty/telnet_interface.h>
46#include <osmocom/vty/logging.h>
Harald Weltea2e6a7a2015-08-29 21:47:39 +020047
Harald Welteffa7c0a2015-12-23 00:03:41 +010048#include <osmocom/netif/stream.h>
49
Harald Welte75a4e652015-12-22 23:59:24 +010050#include <osmocom/sigtran/sua.h>
51#include <osmocom/sigtran/protocol/sua.h>
52#include <osmocom/sigtran/sccp_sap.h>
53
Neels Hofmeyrdf63de22016-08-18 13:13:55 +020054#include <osmocom/iuh/hnbgw.h>
55#include <osmocom/iuh/hnbgw_hnbap.h>
56#include <osmocom/iuh/hnbgw_rua.h>
57#include <osmocom/iuh/hnbgw_cn.h>
58#include <osmocom/iuh/context_map.h>
Harald Welteb3dae302015-08-30 12:20:09 +020059
Neels Hofmeyr4c45d2b2016-08-18 02:10:57 +020060static const char * const osmo_hnbgw_copyright =
61 "OsmoHNBGW - Osmocom Home Node B Gateway implementation\r\n"
62 "Copyright (C) 2016 by sysmocom s.f.m.c. GmbH <info@sysmocom.de>\r\n"
63 "Contributions by Daniel Willmann, Harald Welte, Neels Hofmeyr\r\n"
64 "License AGPLv3+: GNU AGPL version 3 or later <http://gnu.org/licenses/agpl-3.0.html>\r\n"
65 "This is free software: you are free to change and redistribute it.\r\n"
66 "There is NO WARRANTY, to the extent permitted by law.\r\n";
67
Harald Welteb3dae302015-08-30 12:20:09 +020068static void *tall_hnb_ctx;
Harald Welte08de6382015-08-31 09:54:45 +020069void *talloc_asn1_ctx;
Harald Weltea2e6a7a2015-08-29 21:47:39 +020070
Harald Weltec4338de2015-12-24 00:40:52 +010071static struct hnb_gw *g_hnb_gw;
Harald Weltea2e6a7a2015-08-29 21:47:39 +020072
Harald Weltec4338de2015-12-24 00:40:52 +010073static int listen_fd_cb(struct osmo_fd *fd, unsigned int what);
74
75static struct hnb_gw *hnb_gw_create(void *ctx)
76{
77 struct hnb_gw *gw = talloc_zero(ctx, struct hnb_gw);
78
Neels Hofmeyr6e3e5942016-10-27 13:13:50 +020079 /* strdup so we can easily talloc_free in the VTY code */
80 gw->config.iuh_local_ip = talloc_strdup(gw, HNBGW_LOCAL_IP_DEFAULT);
Neels Hofmeyrc7ccdd42016-10-13 14:43:49 +020081 gw->config.iuh_local_port = IUH_DEFAULT_SCTP_PORT;
Harald Weltec4338de2015-12-24 00:40:52 +010082
Neels Hofmeyr5ee050c2016-10-13 15:12:18 +020083 gw->config.iucs_remote_ip = talloc_strdup(gw,
84 HNBGW_IUCS_REMOTE_IP_DEFAULT);
85 gw->config.iucs_remote_port = SUA_PORT;
86
87 gw->config.iups_remote_ip = talloc_strdup(gw,
88 HNBGW_IUPS_REMOTE_IP_DEFAULT);
89 gw->config.iups_remote_port = SUA_PORT;
90
Harald Weltec4338de2015-12-24 00:40:52 +010091 gw->next_ue_ctx_id = 23;
92 INIT_LLIST_HEAD(&gw->hnb_list);
93 INIT_LLIST_HEAD(&gw->ue_list);
94 INIT_LLIST_HEAD(&gw->cn_list);
95
96 context_map_init(gw);
97
98 return gw;
99}
100
101struct ue_context *ue_context_by_id(struct hnb_gw *gw, uint32_t id)
Harald Welteb534e5c2015-09-11 00:15:16 +0200102{
103 struct ue_context *ue;
104
Harald Weltec4338de2015-12-24 00:40:52 +0100105 llist_for_each_entry(ue, &gw->ue_list, list) {
Harald Welteb534e5c2015-09-11 00:15:16 +0200106 if (ue->context_id == id)
107 return ue;
108 }
109 return NULL;
110
111}
112
Harald Weltec4338de2015-12-24 00:40:52 +0100113struct ue_context *ue_context_by_imsi(struct hnb_gw *gw, const char *imsi)
Harald Welteb534e5c2015-09-11 00:15:16 +0200114{
115 struct ue_context *ue;
116
Harald Weltec4338de2015-12-24 00:40:52 +0100117 llist_for_each_entry(ue, &gw->ue_list, list) {
Harald Welteb534e5c2015-09-11 00:15:16 +0200118 if (!strcmp(ue->imsi, imsi))
119 return ue;
120 }
121 return NULL;
122}
123
Neels Hofmeyrf33e8352016-09-22 18:06:59 +0200124struct ue_context *ue_context_by_tmsi(struct hnb_gw *gw, uint32_t tmsi)
125{
126 struct ue_context *ue;
127
128 llist_for_each_entry(ue, &gw->ue_list, list) {
129 if (ue->tmsi == tmsi)
130 return ue;
131 }
132 return NULL;
133}
134
Daniel Willmann1ee089f2016-01-06 18:07:02 +0100135void ue_context_free_by_hnb(struct hnb_gw *gw, const struct hnb_context *hnb)
136{
137 struct ue_context *ue, *tmp;
138
139 llist_for_each_entry_safe(ue, tmp, &gw->ue_list, list) {
140 if (ue->hnb == hnb)
141 ue_context_free(ue);
142 }
143}
144
Harald Weltec4338de2015-12-24 00:40:52 +0100145static uint32_t get_next_ue_ctx_id(struct hnb_gw *gw)
Harald Welteb534e5c2015-09-11 00:15:16 +0200146{
147 uint32_t id;
148
149 do {
Harald Weltec4338de2015-12-24 00:40:52 +0100150 id = gw->next_ue_ctx_id++;
151 } while (ue_context_by_id(gw, id));
Harald Welteb534e5c2015-09-11 00:15:16 +0200152
153 return id;
154}
155
Neels Hofmeyrf33e8352016-09-22 18:06:59 +0200156struct ue_context *ue_context_alloc(struct hnb_context *hnb, const char *imsi,
157 uint32_t tmsi)
Harald Welteb534e5c2015-09-11 00:15:16 +0200158{
159 struct ue_context *ue;
160
161 ue = talloc_zero(tall_hnb_ctx, struct ue_context);
162 if (!ue)
163 return NULL;
164
165 ue->hnb = hnb;
Neels Hofmeyrf33e8352016-09-22 18:06:59 +0200166 if (imsi)
167 strncpy(ue->imsi, imsi, sizeof(ue->imsi));
168 else
169 ue->imsi[0] = '\0';
170 ue->tmsi = tmsi;
Harald Weltec4338de2015-12-24 00:40:52 +0100171 ue->context_id = get_next_ue_ctx_id(hnb->gw);
172 llist_add_tail(&ue->list, &hnb->gw->ue_list);
Harald Welteb534e5c2015-09-11 00:15:16 +0200173
Neels Hofmeyr0476e282016-09-22 19:37:29 +0200174 LOGP(DHNBAP, LOGL_INFO, "created UE context: id 0x%x, imsi %s, tmsi 0x%x\n",
175 ue->context_id, imsi? imsi : "-", tmsi);
176
Harald Welteb534e5c2015-09-11 00:15:16 +0200177 return ue;
178}
179
180void ue_context_free(struct ue_context *ue)
181{
182 llist_del(&ue->list);
183 talloc_free(ue);
184}
Daniel Willmann6480cad2016-01-06 18:06:26 +0100185static int hnb_close_cb(struct osmo_stream_srv *conn)
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200186{
Daniel Willmann6480cad2016-01-06 18:06:26 +0100187}
188
189static int hnb_read_cb(struct osmo_stream_srv *conn)
190{
191 struct hnb_context *hnb = osmo_stream_srv_get_data(conn);
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200192 struct msgb *msg = msgb_alloc(IUH_MSGB_SIZE, "Iuh rx");
Harald Welte3f712562015-09-07 21:53:25 +0200193 int flags = 0;
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200194 int rc;
195
196 if (!msg)
197 return -ENOMEM;
198
Harald Welte350814a2015-09-10 22:32:15 +0200199 /* we store a reference to the HomeNodeB in the msg->dest for the
200 * benefit of varoius downstream processing functions */
201 msg->dst = hnb;
202
Daniel Willmann6480cad2016-01-06 18:06:26 +0100203 rc = osmo_stream_srv_recv(conn, msg);
204 if (rc == -EAGAIN) {
205 /* Notification received */
206 msgb_free(msg);
207 return 0;
208 } else if (rc < 0) {
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200209 LOGP(DMAIN, LOGL_ERROR, "Error during sctp_recvmsg()\n");
Harald Welteee77cff2015-08-30 16:57:53 +0200210 /* FIXME: clean up after disappeared HNB */
Daniel Willmann6480cad2016-01-06 18:06:26 +0100211 hnb_context_release(hnb);
Daniel Willmann269b8ac2015-12-22 16:26:48 +0100212 goto out;
Daniel Willmann4267a292015-12-15 20:29:27 +0100213 } else if (rc == 0) {
Daniel Willmann6480cad2016-01-06 18:06:26 +0100214 hnb_context_release(hnb);
Daniel Willmann269b8ac2015-12-22 16:26:48 +0100215 rc = -1;
Daniel Willmann4267a292015-12-15 20:29:27 +0100216
Daniel Willmann269b8ac2015-12-22 16:26:48 +0100217 goto out;
Daniel Willmann4267a292015-12-15 20:29:27 +0100218 } else {
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200219 msgb_put(msg, rc);
Daniel Willmann4267a292015-12-15 20:29:27 +0100220 }
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200221
Daniel Willmann6480cad2016-01-06 18:06:26 +0100222 switch (msgb_sctp_ppid(msg)) {
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200223 case IUH_PPI_HNBAP:
Daniel Willmann6480cad2016-01-06 18:06:26 +0100224 hnb->hnbap_stream = msgb_sctp_stream(msg);
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200225 rc = hnbgw_hnbap_rx(hnb, msg);
226 break;
227 case IUH_PPI_RUA:
Daniel Willmann6480cad2016-01-06 18:06:26 +0100228 hnb->rua_stream = msgb_sctp_stream(msg);
Harald Welte318e4d52015-09-10 18:47:08 +0200229 rc = hnbgw_rua_rx(hnb, msg);
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200230 break;
231 case IUH_PPI_SABP:
232 case IUH_PPI_RNA:
233 case IUH_PPI_PUA:
234 LOGP(DMAIN, LOGL_ERROR, "Unimplemented SCTP PPID=%u received\n",
Daniel Willmann6480cad2016-01-06 18:06:26 +0100235 msgb_sctp_ppid(msg));
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200236 rc = 0;
237 break;
238 default:
239 LOGP(DMAIN, LOGL_ERROR, "Unknown SCTP PPID=%u received\n",
Daniel Willmann6480cad2016-01-06 18:06:26 +0100240 msgb_sctp_ppid(msg));
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200241 rc = 0;
242 break;
243 }
244
Daniel Willmann269b8ac2015-12-22 16:26:48 +0100245out:
Harald Weltef2f30002015-09-08 00:09:23 +0200246 msgb_free(msg);
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200247 return rc;
248}
249
Harald Welte3f712562015-09-07 21:53:25 +0200250static int hnb_write_cb(struct osmo_fd *fd, struct msgb *msg)
251{
252 struct hnb_context *ctx = fd->data;
253 struct sctp_sndrcvinfo sinfo = {
Harald Welteffa7c0a2015-12-23 00:03:41 +0100254 .sinfo_ppid = htonl(msgb_sctp_ppid(msg)),
Harald Welte3f712562015-09-07 21:53:25 +0200255 .sinfo_stream = ctx->hnbap_stream,
256 };
257 int rc;
258
259 rc = sctp_send(fd->fd, msgb_data(msg), msgb_length(msg),
260 &sinfo, 0);
Harald Welte9e270b42015-09-07 22:41:26 +0200261 /* we don't need to msgb_free(), write_queue does this for us */
Harald Welte3f712562015-09-07 21:53:25 +0200262 return rc;
263}
264
Daniel Willmann6480cad2016-01-06 18:06:26 +0100265struct hnb_context *hnb_context_alloc(struct hnb_gw *gw, struct osmo_stream_srv_link *link, int new_fd)
Harald Welte90256ba2015-12-23 20:16:36 +0100266{
267 struct hnb_context *ctx;
268
269 ctx = talloc_zero(tall_hnb_ctx, struct hnb_context);
270 if (!ctx)
271 return NULL;
Neels Hofmeyr44beab92016-02-18 01:26:59 +0100272 INIT_LLIST_HEAD(&ctx->map_list);
Harald Welte90256ba2015-12-23 20:16:36 +0100273
274 ctx->gw = gw;
Daniel Willmann6480cad2016-01-06 18:06:26 +0100275 ctx->conn = osmo_stream_srv_create(tall_hnb_ctx, link, new_fd, hnb_read_cb, hnb_close_cb, ctx);
276 if (!ctx->conn) {
277 LOGP(DMAIN, LOGL_INFO, "error while creating connection\n");
Neels Hofmeyr44beab92016-02-18 01:26:59 +0100278 talloc_free(ctx);
279 return NULL;
Daniel Willmann6480cad2016-01-06 18:06:26 +0100280 }
281
Harald Welte90256ba2015-12-23 20:16:36 +0100282 llist_add_tail(&ctx->list, &gw->hnb_list);
Neels Hofmeyr44beab92016-02-18 01:26:59 +0100283 return ctx;
Harald Welte90256ba2015-12-23 20:16:36 +0100284}
285
286void hnb_context_release(struct hnb_context *ctx)
287{
288 struct hnbgw_context_map *map, *map2;
289
290 /* remove from the list of HNB contexts */
291 llist_del(&ctx->list);
292
293 /* deactivate all context maps */
294 llist_for_each_entry_safe(map, map2, &ctx->map_list, hnb_list) {
295 /* remove it from list, as HNB context will soon be
Neels Hofmeyr525a69e2016-04-19 17:54:25 +0200296 * gone. Let's hope the second osmo_llist_del in the
297 * map garbage collector works fine? */
Harald Welte90256ba2015-12-23 20:16:36 +0100298 llist_del(&map->hnb_list);
Neels Hofmeyr0a461562016-04-23 13:53:28 +0200299 llist_del(&map->cn_list);
Harald Welte90256ba2015-12-23 20:16:36 +0100300 context_map_deactivate(map);
301 }
Daniel Willmann1ee089f2016-01-06 18:07:02 +0100302 ue_context_free_by_hnb(ctx->gw, ctx);
Daniel Willmann6480cad2016-01-06 18:06:26 +0100303 osmo_stream_srv_destroy(ctx->conn);
Harald Welte90256ba2015-12-23 20:16:36 +0100304
305 talloc_free(ctx);
306}
307
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200308/*! call-back when the listen FD has something to read */
Daniel Willmann6480cad2016-01-06 18:06:26 +0100309static int accept_cb(struct osmo_stream_srv_link *srv, int fd)
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200310{
Daniel Willmann6480cad2016-01-06 18:06:26 +0100311 struct hnb_gw *gw = osmo_stream_srv_link_get_data(srv);
Harald Welteb3dae302015-08-30 12:20:09 +0200312 struct hnb_context *ctx;
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200313
Daniel Willmann6480cad2016-01-06 18:06:26 +0100314 ctx = hnb_context_alloc(gw, srv, fd);
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200315 if (!ctx)
316 return -ENOMEM;
317
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200318 return 0;
319}
320
Harald Welteb3dae302015-08-30 12:20:09 +0200321static const struct log_info_cat log_cat[] = {
322 [DMAIN] = {
Neels Hofmeyr6341f4d2016-04-04 18:02:49 +0200323 .name = "DMAIN", .loglevel = LOGL_DEBUG, .enabled = 1,
Harald Welteb3dae302015-08-30 12:20:09 +0200324 .color = "",
325 .description = "Main program",
326 },
Daniel Willmannbded9842015-12-17 11:51:17 +0100327 [DHNBAP] = {
328 .name = "DHNBAP", .loglevel = LOGL_DEBUG, .enabled = 1,
329 .color = "",
330 .description = "Home Node B Application Part",
331 },
Harald Welte75a4e652015-12-22 23:59:24 +0100332 [DSUA] = {
333 .name = "DSUA", .loglevel = LOGL_DEBUG, .enabled = 1,
334 .color = "",
335 .description = "SCCP User Adaptation",
336 },
Harald Weltef42317b2015-12-23 15:36:31 +0100337 [DRUA] = {
338 .name = "DRUA", .loglevel = LOGL_DEBUG, .enabled = 1,
339 .color = "",
340 .description = "RANAP User Adaptation",
341 },
342 [DRANAP] = {
343 .name = "DRANAP", .loglevel = LOGL_DEBUG, .enabled = 1,
344 .color = "",
345 .description = "RAN Application Part",
346 },
Harald Welteb3dae302015-08-30 12:20:09 +0200347};
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200348
Harald Welteb3dae302015-08-30 12:20:09 +0200349static const struct log_info hnbgw_log_info = {
350 .cat = log_cat,
351 .num_cat = ARRAY_SIZE(log_cat),
352};
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200353
Harald Welteb3dae302015-08-30 12:20:09 +0200354static struct vty_app_info vty_info = {
355 .name = "OsmoHNBGW",
356 .version = "0",
Neels Hofmeyrc510fc22016-10-13 16:58:04 +0200357 .go_parent_cb = hnbgw_vty_go_parent,
Harald Welteb3dae302015-08-30 12:20:09 +0200358};
359
Neels Hofmeyr4d675a72016-08-17 13:53:18 +0200360static struct {
361 int daemonize;
Neels Hofmeyr085cd672016-08-17 13:54:00 +0200362 const char *config_file;
Neels Hofmeyr1d03f192016-08-18 03:15:14 +0200363 bool log_disable_color;
364 bool log_enable_timestamp;
365 int log_level;
366 const char *log_category_mask;
Neels Hofmeyr4d675a72016-08-17 13:53:18 +0200367} hnbgw_cmdline_config = {
Neels Hofmeyr085cd672016-08-17 13:54:00 +0200368 0,
Neels Hofmeyr1d03f192016-08-18 03:15:14 +0200369 "osmo-hnbgw.cfg",
370 true,
371 false,
372 0,
373 NULL,
Neels Hofmeyr4d675a72016-08-17 13:53:18 +0200374};
375
376static void print_usage()
377{
378 printf("Usage: osmo-hnbgw\n");
379}
380
381static void print_help()
382{
383 printf(" -h --help This text.\n");
384 printf(" -d option --debug=DHNBAP:DSUA:DRUA:DRANAP:DMAIN Enable debugging.\n");
385 printf(" -D --daemonize Fork the process into a background daemon.\n");
Neels Hofmeyr085cd672016-08-17 13:54:00 +0200386 printf(" -c --config-file filename The config file to use.\n");
Neels Hofmeyr4d675a72016-08-17 13:53:18 +0200387 printf(" -s --disable-color\n");
388 printf(" -T --timestamp Prefix every log line with a timestamp.\n");
389 printf(" -V --version Print the version of OsmoHNBGW.\n");
390 printf(" -e --log-level number Set a global loglevel.\n");
391}
392
393static void handle_options(int argc, char **argv)
394{
395 while (1) {
396 int option_index = 0, c;
397 static struct option long_options[] = {
398 {"help", 0, 0, 'h'},
399 {"debug", 1, 0, 'd'},
400 {"daemonize", 0, 0, 'D'},
Neels Hofmeyr085cd672016-08-17 13:54:00 +0200401 {"config-file", 1, 0, 'c'},
Neels Hofmeyr4d675a72016-08-17 13:53:18 +0200402 {"disable-color", 0, 0, 's'},
403 {"timestamp", 0, 0, 'T'},
404 {"version", 0, 0, 'V' },
405 {"log-level", 1, 0, 'e'},
406 {0, 0, 0, 0}
407 };
408
Neels Hofmeyr085cd672016-08-17 13:54:00 +0200409 c = getopt_long(argc, argv, "hd:Dc:sTVe:",
Neels Hofmeyr4d675a72016-08-17 13:53:18 +0200410 long_options, &option_index);
411 if (c == -1)
412 break;
413
414 switch (c) {
415 case 'h':
416 print_usage();
417 print_help();
418 exit(0);
419 case 's':
Neels Hofmeyr1d03f192016-08-18 03:15:14 +0200420 hnbgw_cmdline_config.log_disable_color = true;
Neels Hofmeyr4d675a72016-08-17 13:53:18 +0200421 break;
422 case 'd':
Neels Hofmeyr1d03f192016-08-18 03:15:14 +0200423 hnbgw_cmdline_config.log_category_mask = optarg;
Neels Hofmeyr4d675a72016-08-17 13:53:18 +0200424 break;
425 case 'D':
426 hnbgw_cmdline_config.daemonize = 1;
427 break;
Neels Hofmeyr085cd672016-08-17 13:54:00 +0200428 case 'c':
429 hnbgw_cmdline_config.config_file = optarg;
430 break;
Neels Hofmeyr4d675a72016-08-17 13:53:18 +0200431 case 'T':
Neels Hofmeyr1d03f192016-08-18 03:15:14 +0200432 hnbgw_cmdline_config.log_enable_timestamp = true;
Neels Hofmeyr4d675a72016-08-17 13:53:18 +0200433 break;
434 case 'e':
Neels Hofmeyr1d03f192016-08-18 03:15:14 +0200435 hnbgw_cmdline_config.log_level = atoi(optarg);
Neels Hofmeyr4d675a72016-08-17 13:53:18 +0200436 break;
437 case 'V':
438 print_version(1);
439 exit(0);
440 break;
441 default:
442 /* catch unknown options *as well as* missing arguments. */
443 fprintf(stderr, "Error in command line options. Exiting.\n");
444 exit(-1);
445 break;
446 }
447 }
448}
449
450
Harald Welteb3dae302015-08-30 12:20:09 +0200451int main(int argc, char **argv)
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200452{
Neels Hofmeyr0a437222016-07-06 15:58:48 +0200453 struct osmo_sccp_user *sua_user;
454 struct osmo_sccp_link *sua_link;
Daniel Willmann6480cad2016-01-06 18:06:26 +0100455 struct osmo_stream_srv_link *srv;
Harald Welteb3dae302015-08-30 12:20:09 +0200456 int rc;
457
458 tall_hnb_ctx = talloc_named_const(NULL, 0, "hnb_context");
Harald Welte08de6382015-08-31 09:54:45 +0200459 talloc_asn1_ctx = talloc_named_const(NULL, 0, "asn1_context");
Neels Hofmeyr4ff1a5a2016-09-16 01:38:46 +0200460 msgb_talloc_ctx_init(tall_hnb_ctx, 0);
Harald Welteb3dae302015-08-30 12:20:09 +0200461
Harald Weltec4338de2015-12-24 00:40:52 +0100462 g_hnb_gw = hnb_gw_create(tall_hnb_ctx);
Neels Hofmeyra4540be2016-04-05 14:27:48 +0200463 g_hnb_gw->config.rnc_id = 23;
Harald Welte90256ba2015-12-23 20:16:36 +0100464
Harald Welteb3dae302015-08-30 12:20:09 +0200465 rc = osmo_init_logging(&hnbgw_log_info);
466 if (rc < 0)
467 exit(1);
468
Neels Hofmeyr4c45d2b2016-08-18 02:10:57 +0200469 vty_info.copyright = osmo_hnbgw_copyright;
Harald Welteb3dae302015-08-30 12:20:09 +0200470 vty_init(&vty_info);
Neels Hofmeyr4c45d2b2016-08-18 02:10:57 +0200471
Neels Hofmeyr4d8eb4c2016-08-18 01:03:44 +0200472 hnbgw_vty_init(g_hnb_gw, tall_hnb_ctx);
473 logging_vty_add_cmds(&hnbgw_log_info);
Harald Welteb3dae302015-08-30 12:20:09 +0200474
Neels Hofmeyr4d675a72016-08-17 13:53:18 +0200475 /* Handle options after vty_init(), for --version */
476 handle_options(argc, argv);
477
Neels Hofmeyr085cd672016-08-17 13:54:00 +0200478 rc = vty_read_config_file(hnbgw_cmdline_config.config_file, NULL);
479 if (rc < 0) {
480 LOGP(DMAIN, LOGL_FATAL, "Failed to parse the config file: '%s'\n",
481 hnbgw_cmdline_config.config_file);
482 return 1;
483 }
484
Neels Hofmeyr1d03f192016-08-18 03:15:14 +0200485 /*
486 * cmdline options take precedence over config file, but if no options
487 * were passed we must not override the config file.
488 */
489 if (hnbgw_cmdline_config.log_disable_color)
490 log_set_use_color(osmo_stderr_target, 0);
491 if (hnbgw_cmdline_config.log_category_mask)
492 log_parse_category_mask(osmo_stderr_target,
493 hnbgw_cmdline_config.log_category_mask);
494 if (hnbgw_cmdline_config.log_enable_timestamp)
495 log_set_print_timestamp(osmo_stderr_target, 1);
496 if (hnbgw_cmdline_config.log_level)
497 log_set_log_level(osmo_stderr_target,
498 hnbgw_cmdline_config.log_level);
499
Neels Hofmeyra0d21472016-02-24 20:50:31 +0100500 rc = telnet_init_dynif(NULL, g_hnb_gw, vty_get_bind_addr(), 2323);
Harald Welteb3dae302015-08-30 12:20:09 +0200501 if (rc < 0) {
502 perror("Error binding VTY port");
503 exit(1);
504 }
505
Harald Welte75a4e652015-12-22 23:59:24 +0100506 osmo_sua_set_log_area(DSUA);
Harald Weltebdf3fd12016-01-03 17:04:09 +0100507 ranap_set_log_area(DRANAP);
Harald Welte75a4e652015-12-22 23:59:24 +0100508
Neels Hofmeyr5ee050c2016-10-13 15:12:18 +0200509 OSMO_ASSERT(g_hnb_gw->config.iucs_remote_ip);
510 g_hnb_gw->cnlink_cs = hnbgw_cnlink_init(g_hnb_gw,
511 g_hnb_gw->config.iucs_remote_ip,
512 g_hnb_gw->config.iucs_remote_port,
513 0);
514 OSMO_ASSERT(g_hnb_gw->config.iups_remote_ip);
515 g_hnb_gw->cnlink_ps = hnbgw_cnlink_init(g_hnb_gw,
516 g_hnb_gw->config.iups_remote_ip,
517 g_hnb_gw->config.iups_remote_port,
518 1);
Harald Weltec4338de2015-12-24 00:40:52 +0100519
Neels Hofmeyr6e3e5942016-10-27 13:13:50 +0200520 OSMO_ASSERT(g_hnb_gw->config.iuh_local_ip);
Neels Hofmeyrf495b232016-08-18 02:18:00 +0200521 LOGP(DMAIN, LOGL_NOTICE, "Listening for Iuh at %s %d\n",
Neels Hofmeyr6e3e5942016-10-27 13:13:50 +0200522 g_hnb_gw->config.iuh_local_ip,
Neels Hofmeyrc7ccdd42016-10-13 14:43:49 +0200523 g_hnb_gw->config.iuh_local_port);
Daniel Willmann6480cad2016-01-06 18:06:26 +0100524 srv = osmo_stream_srv_link_create(tall_hnb_ctx);
525 if (!srv) {
526 perror("cannot create server");
Harald Welteb3dae302015-08-30 12:20:09 +0200527 exit(1);
528 }
Daniel Willmann6480cad2016-01-06 18:06:26 +0100529 osmo_stream_srv_link_set_data(srv, g_hnb_gw);
530 osmo_stream_srv_link_set_proto(srv, IPPROTO_SCTP);
Neels Hofmeyr6e3e5942016-10-27 13:13:50 +0200531 osmo_stream_srv_link_set_addr(srv, g_hnb_gw->config.iuh_local_ip);
Neels Hofmeyrc7ccdd42016-10-13 14:43:49 +0200532 osmo_stream_srv_link_set_port(srv, g_hnb_gw->config.iuh_local_port);
Daniel Willmann6480cad2016-01-06 18:06:26 +0100533 osmo_stream_srv_link_set_accept_cb(srv, accept_cb);
534
535 if (osmo_stream_srv_link_open(srv) < 0) {
Neels Hofmeyrde111bc2016-01-13 11:54:40 +0100536 perror("Cannot open server");
Daniel Willmann6480cad2016-01-06 18:06:26 +0100537 exit(1);
538 }
539 g_hnb_gw->iuh = srv;
Harald Welteb3dae302015-08-30 12:20:09 +0200540
Neels Hofmeyr4d675a72016-08-17 13:53:18 +0200541 if (hnbgw_cmdline_config.daemonize) {
Harald Welteb3dae302015-08-30 12:20:09 +0200542 rc = osmo_daemonize();
543 if (rc < 0) {
544 perror("Error during daemonize");
545 exit(1);
546 }
547 }
548
549 while (1) {
550 rc = osmo_select_main(0);
551 if (rc < 0)
552 exit(3);
553 }
554
555 /* not reached */
556 exit(0);
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200557}