blob: eb3636794679978d1bae911299fe5dd486d10637 [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 Hofmeyrc7ccdd42016-10-13 14:43:49 +020079 gw->config.iuh_local_port = IUH_DEFAULT_SCTP_PORT;
Harald Weltec4338de2015-12-24 00:40:52 +010080
Harald Weltec4338de2015-12-24 00:40:52 +010081 gw->next_ue_ctx_id = 23;
82 INIT_LLIST_HEAD(&gw->hnb_list);
83 INIT_LLIST_HEAD(&gw->ue_list);
84 INIT_LLIST_HEAD(&gw->cn_list);
85
86 context_map_init(gw);
87
88 return gw;
89}
90
91struct ue_context *ue_context_by_id(struct hnb_gw *gw, uint32_t id)
Harald Welteb534e5c2015-09-11 00:15:16 +020092{
93 struct ue_context *ue;
94
Harald Weltec4338de2015-12-24 00:40:52 +010095 llist_for_each_entry(ue, &gw->ue_list, list) {
Harald Welteb534e5c2015-09-11 00:15:16 +020096 if (ue->context_id == id)
97 return ue;
98 }
99 return NULL;
100
101}
102
Harald Weltec4338de2015-12-24 00:40:52 +0100103struct ue_context *ue_context_by_imsi(struct hnb_gw *gw, const char *imsi)
Harald Welteb534e5c2015-09-11 00:15:16 +0200104{
105 struct ue_context *ue;
106
Harald Weltec4338de2015-12-24 00:40:52 +0100107 llist_for_each_entry(ue, &gw->ue_list, list) {
Harald Welteb534e5c2015-09-11 00:15:16 +0200108 if (!strcmp(ue->imsi, imsi))
109 return ue;
110 }
111 return NULL;
112}
113
Neels Hofmeyrf33e8352016-09-22 18:06:59 +0200114struct ue_context *ue_context_by_tmsi(struct hnb_gw *gw, uint32_t tmsi)
115{
116 struct ue_context *ue;
117
118 llist_for_each_entry(ue, &gw->ue_list, list) {
119 if (ue->tmsi == tmsi)
120 return ue;
121 }
122 return NULL;
123}
124
Daniel Willmann1ee089f2016-01-06 18:07:02 +0100125void ue_context_free_by_hnb(struct hnb_gw *gw, const struct hnb_context *hnb)
126{
127 struct ue_context *ue, *tmp;
128
129 llist_for_each_entry_safe(ue, tmp, &gw->ue_list, list) {
130 if (ue->hnb == hnb)
131 ue_context_free(ue);
132 }
133}
134
Harald Weltec4338de2015-12-24 00:40:52 +0100135static uint32_t get_next_ue_ctx_id(struct hnb_gw *gw)
Harald Welteb534e5c2015-09-11 00:15:16 +0200136{
137 uint32_t id;
138
139 do {
Harald Weltec4338de2015-12-24 00:40:52 +0100140 id = gw->next_ue_ctx_id++;
141 } while (ue_context_by_id(gw, id));
Harald Welteb534e5c2015-09-11 00:15:16 +0200142
143 return id;
144}
145
Neels Hofmeyrf33e8352016-09-22 18:06:59 +0200146struct ue_context *ue_context_alloc(struct hnb_context *hnb, const char *imsi,
147 uint32_t tmsi)
Harald Welteb534e5c2015-09-11 00:15:16 +0200148{
149 struct ue_context *ue;
150
151 ue = talloc_zero(tall_hnb_ctx, struct ue_context);
152 if (!ue)
153 return NULL;
154
155 ue->hnb = hnb;
Neels Hofmeyrf33e8352016-09-22 18:06:59 +0200156 if (imsi)
157 strncpy(ue->imsi, imsi, sizeof(ue->imsi));
158 else
159 ue->imsi[0] = '\0';
160 ue->tmsi = tmsi;
Harald Weltec4338de2015-12-24 00:40:52 +0100161 ue->context_id = get_next_ue_ctx_id(hnb->gw);
162 llist_add_tail(&ue->list, &hnb->gw->ue_list);
Harald Welteb534e5c2015-09-11 00:15:16 +0200163
Neels Hofmeyr0476e282016-09-22 19:37:29 +0200164 LOGP(DHNBAP, LOGL_INFO, "created UE context: id 0x%x, imsi %s, tmsi 0x%x\n",
165 ue->context_id, imsi? imsi : "-", tmsi);
166
Harald Welteb534e5c2015-09-11 00:15:16 +0200167 return ue;
168}
169
170void ue_context_free(struct ue_context *ue)
171{
172 llist_del(&ue->list);
173 talloc_free(ue);
174}
Daniel Willmann6480cad2016-01-06 18:06:26 +0100175static int hnb_close_cb(struct osmo_stream_srv *conn)
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200176{
Daniel Willmann6480cad2016-01-06 18:06:26 +0100177}
178
179static int hnb_read_cb(struct osmo_stream_srv *conn)
180{
181 struct hnb_context *hnb = osmo_stream_srv_get_data(conn);
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200182 struct msgb *msg = msgb_alloc(IUH_MSGB_SIZE, "Iuh rx");
Harald Welte3f712562015-09-07 21:53:25 +0200183 int flags = 0;
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200184 int rc;
185
186 if (!msg)
187 return -ENOMEM;
188
Harald Welte350814a2015-09-10 22:32:15 +0200189 /* we store a reference to the HomeNodeB in the msg->dest for the
190 * benefit of varoius downstream processing functions */
191 msg->dst = hnb;
192
Daniel Willmann6480cad2016-01-06 18:06:26 +0100193 rc = osmo_stream_srv_recv(conn, msg);
194 if (rc == -EAGAIN) {
195 /* Notification received */
196 msgb_free(msg);
197 return 0;
198 } else if (rc < 0) {
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200199 LOGP(DMAIN, LOGL_ERROR, "Error during sctp_recvmsg()\n");
Harald Welteee77cff2015-08-30 16:57:53 +0200200 /* FIXME: clean up after disappeared HNB */
Daniel Willmann6480cad2016-01-06 18:06:26 +0100201 hnb_context_release(hnb);
Daniel Willmann269b8ac2015-12-22 16:26:48 +0100202 goto out;
Daniel Willmann4267a292015-12-15 20:29:27 +0100203 } else if (rc == 0) {
Daniel Willmann6480cad2016-01-06 18:06:26 +0100204 hnb_context_release(hnb);
Daniel Willmann269b8ac2015-12-22 16:26:48 +0100205 rc = -1;
Daniel Willmann4267a292015-12-15 20:29:27 +0100206
Daniel Willmann269b8ac2015-12-22 16:26:48 +0100207 goto out;
Daniel Willmann4267a292015-12-15 20:29:27 +0100208 } else {
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200209 msgb_put(msg, rc);
Daniel Willmann4267a292015-12-15 20:29:27 +0100210 }
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200211
Daniel Willmann6480cad2016-01-06 18:06:26 +0100212 switch (msgb_sctp_ppid(msg)) {
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200213 case IUH_PPI_HNBAP:
Daniel Willmann6480cad2016-01-06 18:06:26 +0100214 hnb->hnbap_stream = msgb_sctp_stream(msg);
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200215 rc = hnbgw_hnbap_rx(hnb, msg);
216 break;
217 case IUH_PPI_RUA:
Daniel Willmann6480cad2016-01-06 18:06:26 +0100218 hnb->rua_stream = msgb_sctp_stream(msg);
Harald Welte318e4d52015-09-10 18:47:08 +0200219 rc = hnbgw_rua_rx(hnb, msg);
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200220 break;
221 case IUH_PPI_SABP:
222 case IUH_PPI_RNA:
223 case IUH_PPI_PUA:
224 LOGP(DMAIN, LOGL_ERROR, "Unimplemented SCTP PPID=%u received\n",
Daniel Willmann6480cad2016-01-06 18:06:26 +0100225 msgb_sctp_ppid(msg));
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200226 rc = 0;
227 break;
228 default:
229 LOGP(DMAIN, LOGL_ERROR, "Unknown SCTP PPID=%u received\n",
Daniel Willmann6480cad2016-01-06 18:06:26 +0100230 msgb_sctp_ppid(msg));
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200231 rc = 0;
232 break;
233 }
234
Daniel Willmann269b8ac2015-12-22 16:26:48 +0100235out:
Harald Weltef2f30002015-09-08 00:09:23 +0200236 msgb_free(msg);
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200237 return rc;
238}
239
Harald Welte3f712562015-09-07 21:53:25 +0200240static int hnb_write_cb(struct osmo_fd *fd, struct msgb *msg)
241{
242 struct hnb_context *ctx = fd->data;
243 struct sctp_sndrcvinfo sinfo = {
Harald Welteffa7c0a2015-12-23 00:03:41 +0100244 .sinfo_ppid = htonl(msgb_sctp_ppid(msg)),
Harald Welte3f712562015-09-07 21:53:25 +0200245 .sinfo_stream = ctx->hnbap_stream,
246 };
247 int rc;
248
249 rc = sctp_send(fd->fd, msgb_data(msg), msgb_length(msg),
250 &sinfo, 0);
Harald Welte9e270b42015-09-07 22:41:26 +0200251 /* we don't need to msgb_free(), write_queue does this for us */
Harald Welte3f712562015-09-07 21:53:25 +0200252 return rc;
253}
254
Daniel Willmann6480cad2016-01-06 18:06:26 +0100255struct 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 +0100256{
257 struct hnb_context *ctx;
258
259 ctx = talloc_zero(tall_hnb_ctx, struct hnb_context);
260 if (!ctx)
261 return NULL;
Neels Hofmeyr44beab92016-02-18 01:26:59 +0100262 INIT_LLIST_HEAD(&ctx->map_list);
Harald Welte90256ba2015-12-23 20:16:36 +0100263
264 ctx->gw = gw;
Daniel Willmann6480cad2016-01-06 18:06:26 +0100265 ctx->conn = osmo_stream_srv_create(tall_hnb_ctx, link, new_fd, hnb_read_cb, hnb_close_cb, ctx);
266 if (!ctx->conn) {
267 LOGP(DMAIN, LOGL_INFO, "error while creating connection\n");
Neels Hofmeyr44beab92016-02-18 01:26:59 +0100268 talloc_free(ctx);
269 return NULL;
Daniel Willmann6480cad2016-01-06 18:06:26 +0100270 }
271
Harald Welte90256ba2015-12-23 20:16:36 +0100272 llist_add_tail(&ctx->list, &gw->hnb_list);
Neels Hofmeyr44beab92016-02-18 01:26:59 +0100273 return ctx;
Harald Welte90256ba2015-12-23 20:16:36 +0100274}
275
276void hnb_context_release(struct hnb_context *ctx)
277{
278 struct hnbgw_context_map *map, *map2;
279
280 /* remove from the list of HNB contexts */
281 llist_del(&ctx->list);
282
283 /* deactivate all context maps */
284 llist_for_each_entry_safe(map, map2, &ctx->map_list, hnb_list) {
285 /* remove it from list, as HNB context will soon be
Neels Hofmeyr525a69e2016-04-19 17:54:25 +0200286 * gone. Let's hope the second osmo_llist_del in the
287 * map garbage collector works fine? */
Harald Welte90256ba2015-12-23 20:16:36 +0100288 llist_del(&map->hnb_list);
Neels Hofmeyr0a461562016-04-23 13:53:28 +0200289 llist_del(&map->cn_list);
Harald Welte90256ba2015-12-23 20:16:36 +0100290 context_map_deactivate(map);
291 }
Daniel Willmann1ee089f2016-01-06 18:07:02 +0100292 ue_context_free_by_hnb(ctx->gw, ctx);
Daniel Willmann6480cad2016-01-06 18:06:26 +0100293 osmo_stream_srv_destroy(ctx->conn);
Harald Welte90256ba2015-12-23 20:16:36 +0100294
295 talloc_free(ctx);
296}
297
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200298/*! call-back when the listen FD has something to read */
Daniel Willmann6480cad2016-01-06 18:06:26 +0100299static int accept_cb(struct osmo_stream_srv_link *srv, int fd)
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200300{
Daniel Willmann6480cad2016-01-06 18:06:26 +0100301 struct hnb_gw *gw = osmo_stream_srv_link_get_data(srv);
Harald Welteb3dae302015-08-30 12:20:09 +0200302 struct hnb_context *ctx;
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200303
Daniel Willmann6480cad2016-01-06 18:06:26 +0100304 ctx = hnb_context_alloc(gw, srv, fd);
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200305 if (!ctx)
306 return -ENOMEM;
307
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200308 return 0;
309}
310
Neels Hofmeyrc7ccdd42016-10-13 14:43:49 +0200311/*
312 * Return IP address passed to the hnbgw/iuh/local-ip command, or
313 * HNBGW_LOCAL_IP_DEFAULT.
314 */
315const char *hnbgw_get_iuh_local_ip(struct hnb_gw *gw)
Neels Hofmeyrf495b232016-08-18 02:18:00 +0200316{
Neels Hofmeyrc7ccdd42016-10-13 14:43:49 +0200317 const char *addr = gw->config.iuh_local_ip;
Neels Hofmeyrf495b232016-08-18 02:18:00 +0200318 if (!addr)
Neels Hofmeyrc7ccdd42016-10-13 14:43:49 +0200319 addr = HNBGW_LOCAL_IP_DEFAULT;
Neels Hofmeyrf495b232016-08-18 02:18:00 +0200320 return addr;
321}
322
Harald Welteb3dae302015-08-30 12:20:09 +0200323static const struct log_info_cat log_cat[] = {
324 [DMAIN] = {
Neels Hofmeyr6341f4d2016-04-04 18:02:49 +0200325 .name = "DMAIN", .loglevel = LOGL_DEBUG, .enabled = 1,
Harald Welteb3dae302015-08-30 12:20:09 +0200326 .color = "",
327 .description = "Main program",
328 },
Daniel Willmannbded9842015-12-17 11:51:17 +0100329 [DHNBAP] = {
330 .name = "DHNBAP", .loglevel = LOGL_DEBUG, .enabled = 1,
331 .color = "",
332 .description = "Home Node B Application Part",
333 },
Harald Welte75a4e652015-12-22 23:59:24 +0100334 [DSUA] = {
335 .name = "DSUA", .loglevel = LOGL_DEBUG, .enabled = 1,
336 .color = "",
337 .description = "SCCP User Adaptation",
338 },
Harald Weltef42317b2015-12-23 15:36:31 +0100339 [DRUA] = {
340 .name = "DRUA", .loglevel = LOGL_DEBUG, .enabled = 1,
341 .color = "",
342 .description = "RANAP User Adaptation",
343 },
344 [DRANAP] = {
345 .name = "DRANAP", .loglevel = LOGL_DEBUG, .enabled = 1,
346 .color = "",
347 .description = "RAN Application Part",
348 },
Harald Welteb3dae302015-08-30 12:20:09 +0200349};
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200350
Harald Welteb3dae302015-08-30 12:20:09 +0200351static const struct log_info hnbgw_log_info = {
352 .cat = log_cat,
353 .num_cat = ARRAY_SIZE(log_cat),
354};
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200355
Harald Welteb3dae302015-08-30 12:20:09 +0200356static struct vty_app_info vty_info = {
357 .name = "OsmoHNBGW",
358 .version = "0",
359};
360
Neels Hofmeyr4d675a72016-08-17 13:53:18 +0200361static struct {
362 int daemonize;
Neels Hofmeyr085cd672016-08-17 13:54:00 +0200363 const char *config_file;
Neels Hofmeyr1d03f192016-08-18 03:15:14 +0200364 bool log_disable_color;
365 bool log_enable_timestamp;
366 int log_level;
367 const char *log_category_mask;
Neels Hofmeyr4d675a72016-08-17 13:53:18 +0200368} hnbgw_cmdline_config = {
Neels Hofmeyr085cd672016-08-17 13:54:00 +0200369 0,
Neels Hofmeyr1d03f192016-08-18 03:15:14 +0200370 "osmo-hnbgw.cfg",
371 true,
372 false,
373 0,
374 NULL,
Neels Hofmeyr4d675a72016-08-17 13:53:18 +0200375};
376
377static void print_usage()
378{
379 printf("Usage: osmo-hnbgw\n");
380}
381
382static void print_help()
383{
384 printf(" -h --help This text.\n");
385 printf(" -d option --debug=DHNBAP:DSUA:DRUA:DRANAP:DMAIN Enable debugging.\n");
386 printf(" -D --daemonize Fork the process into a background daemon.\n");
Neels Hofmeyr085cd672016-08-17 13:54:00 +0200387 printf(" -c --config-file filename The config file to use.\n");
Neels Hofmeyr4d675a72016-08-17 13:53:18 +0200388 printf(" -s --disable-color\n");
389 printf(" -T --timestamp Prefix every log line with a timestamp.\n");
390 printf(" -V --version Print the version of OsmoHNBGW.\n");
391 printf(" -e --log-level number Set a global loglevel.\n");
392}
393
394static void handle_options(int argc, char **argv)
395{
396 while (1) {
397 int option_index = 0, c;
398 static struct option long_options[] = {
399 {"help", 0, 0, 'h'},
400 {"debug", 1, 0, 'd'},
401 {"daemonize", 0, 0, 'D'},
Neels Hofmeyr085cd672016-08-17 13:54:00 +0200402 {"config-file", 1, 0, 'c'},
Neels Hofmeyr4d675a72016-08-17 13:53:18 +0200403 {"disable-color", 0, 0, 's'},
404 {"timestamp", 0, 0, 'T'},
405 {"version", 0, 0, 'V' },
406 {"log-level", 1, 0, 'e'},
407 {0, 0, 0, 0}
408 };
409
Neels Hofmeyr085cd672016-08-17 13:54:00 +0200410 c = getopt_long(argc, argv, "hd:Dc:sTVe:",
Neels Hofmeyr4d675a72016-08-17 13:53:18 +0200411 long_options, &option_index);
412 if (c == -1)
413 break;
414
415 switch (c) {
416 case 'h':
417 print_usage();
418 print_help();
419 exit(0);
420 case 's':
Neels Hofmeyr1d03f192016-08-18 03:15:14 +0200421 hnbgw_cmdline_config.log_disable_color = true;
Neels Hofmeyr4d675a72016-08-17 13:53:18 +0200422 break;
423 case 'd':
Neels Hofmeyr1d03f192016-08-18 03:15:14 +0200424 hnbgw_cmdline_config.log_category_mask = optarg;
Neels Hofmeyr4d675a72016-08-17 13:53:18 +0200425 break;
426 case 'D':
427 hnbgw_cmdline_config.daemonize = 1;
428 break;
Neels Hofmeyr085cd672016-08-17 13:54:00 +0200429 case 'c':
430 hnbgw_cmdline_config.config_file = optarg;
431 break;
Neels Hofmeyr4d675a72016-08-17 13:53:18 +0200432 case 'T':
Neels Hofmeyr1d03f192016-08-18 03:15:14 +0200433 hnbgw_cmdline_config.log_enable_timestamp = true;
Neels Hofmeyr4d675a72016-08-17 13:53:18 +0200434 break;
435 case 'e':
Neels Hofmeyr1d03f192016-08-18 03:15:14 +0200436 hnbgw_cmdline_config.log_level = atoi(optarg);
Neels Hofmeyr4d675a72016-08-17 13:53:18 +0200437 break;
438 case 'V':
439 print_version(1);
440 exit(0);
441 break;
442 default:
443 /* catch unknown options *as well as* missing arguments. */
444 fprintf(stderr, "Error in command line options. Exiting.\n");
445 exit(-1);
446 break;
447 }
448 }
449}
450
451
Harald Welteb3dae302015-08-30 12:20:09 +0200452int main(int argc, char **argv)
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200453{
Neels Hofmeyr0a437222016-07-06 15:58:48 +0200454 struct osmo_sccp_user *sua_user;
455 struct osmo_sccp_link *sua_link;
Daniel Willmann6480cad2016-01-06 18:06:26 +0100456 struct osmo_stream_srv_link *srv;
Harald Welteb3dae302015-08-30 12:20:09 +0200457 int rc;
458
459 tall_hnb_ctx = talloc_named_const(NULL, 0, "hnb_context");
Harald Welte08de6382015-08-31 09:54:45 +0200460 talloc_asn1_ctx = talloc_named_const(NULL, 0, "asn1_context");
Neels Hofmeyr4ff1a5a2016-09-16 01:38:46 +0200461 msgb_talloc_ctx_init(tall_hnb_ctx, 0);
Harald Welteb3dae302015-08-30 12:20:09 +0200462
Harald Weltec4338de2015-12-24 00:40:52 +0100463 g_hnb_gw = hnb_gw_create(tall_hnb_ctx);
Neels Hofmeyra4540be2016-04-05 14:27:48 +0200464 g_hnb_gw->config.rnc_id = 23;
Harald Welte90256ba2015-12-23 20:16:36 +0100465
Harald Welteb3dae302015-08-30 12:20:09 +0200466 rc = osmo_init_logging(&hnbgw_log_info);
467 if (rc < 0)
468 exit(1);
469
Neels Hofmeyr4c45d2b2016-08-18 02:10:57 +0200470 vty_info.copyright = osmo_hnbgw_copyright;
Harald Welteb3dae302015-08-30 12:20:09 +0200471 vty_init(&vty_info);
Neels Hofmeyr4c45d2b2016-08-18 02:10:57 +0200472
Neels Hofmeyr4d8eb4c2016-08-18 01:03:44 +0200473 hnbgw_vty_init(g_hnb_gw, tall_hnb_ctx);
474 logging_vty_add_cmds(&hnbgw_log_info);
Harald Welteb3dae302015-08-30 12:20:09 +0200475
Neels Hofmeyr4d675a72016-08-17 13:53:18 +0200476 /* Handle options after vty_init(), for --version */
477 handle_options(argc, argv);
478
Neels Hofmeyr085cd672016-08-17 13:54:00 +0200479 rc = vty_read_config_file(hnbgw_cmdline_config.config_file, NULL);
480 if (rc < 0) {
481 LOGP(DMAIN, LOGL_FATAL, "Failed to parse the config file: '%s'\n",
482 hnbgw_cmdline_config.config_file);
483 return 1;
484 }
485
Neels Hofmeyr1d03f192016-08-18 03:15:14 +0200486 /*
487 * cmdline options take precedence over config file, but if no options
488 * were passed we must not override the config file.
489 */
490 if (hnbgw_cmdline_config.log_disable_color)
491 log_set_use_color(osmo_stderr_target, 0);
492 if (hnbgw_cmdline_config.log_category_mask)
493 log_parse_category_mask(osmo_stderr_target,
494 hnbgw_cmdline_config.log_category_mask);
495 if (hnbgw_cmdline_config.log_enable_timestamp)
496 log_set_print_timestamp(osmo_stderr_target, 1);
497 if (hnbgw_cmdline_config.log_level)
498 log_set_log_level(osmo_stderr_target,
499 hnbgw_cmdline_config.log_level);
500
Neels Hofmeyra0d21472016-02-24 20:50:31 +0100501 rc = telnet_init_dynif(NULL, g_hnb_gw, vty_get_bind_addr(), 2323);
Harald Welteb3dae302015-08-30 12:20:09 +0200502 if (rc < 0) {
503 perror("Error binding VTY port");
504 exit(1);
505 }
506
Harald Welte75a4e652015-12-22 23:59:24 +0100507 osmo_sua_set_log_area(DSUA);
Harald Weltebdf3fd12016-01-03 17:04:09 +0100508 ranap_set_log_area(DRANAP);
Harald Welte75a4e652015-12-22 23:59:24 +0100509
Daniel Willmann4deab942016-01-14 15:35:11 +0100510 g_hnb_gw->cnlink_cs = hnbgw_cnlink_init(g_hnb_gw, "127.0.0.1", SUA_PORT, 0);
511 g_hnb_gw->cnlink_ps = hnbgw_cnlink_init(g_hnb_gw, "127.0.0.2", SUA_PORT, 1);
Harald Weltec4338de2015-12-24 00:40:52 +0100512
Neels Hofmeyrf495b232016-08-18 02:18:00 +0200513 LOGP(DMAIN, LOGL_NOTICE, "Listening for Iuh at %s %d\n",
Neels Hofmeyrc7ccdd42016-10-13 14:43:49 +0200514 hnbgw_get_iuh_local_ip(g_hnb_gw),
515 g_hnb_gw->config.iuh_local_port);
Daniel Willmann6480cad2016-01-06 18:06:26 +0100516 srv = osmo_stream_srv_link_create(tall_hnb_ctx);
517 if (!srv) {
518 perror("cannot create server");
Harald Welteb3dae302015-08-30 12:20:09 +0200519 exit(1);
520 }
Daniel Willmann6480cad2016-01-06 18:06:26 +0100521 osmo_stream_srv_link_set_data(srv, g_hnb_gw);
522 osmo_stream_srv_link_set_proto(srv, IPPROTO_SCTP);
Neels Hofmeyrc7ccdd42016-10-13 14:43:49 +0200523 osmo_stream_srv_link_set_addr(srv, hnbgw_get_iuh_local_ip(g_hnb_gw));
524 osmo_stream_srv_link_set_port(srv, g_hnb_gw->config.iuh_local_port);
Daniel Willmann6480cad2016-01-06 18:06:26 +0100525 osmo_stream_srv_link_set_accept_cb(srv, accept_cb);
526
527 if (osmo_stream_srv_link_open(srv) < 0) {
Neels Hofmeyrde111bc2016-01-13 11:54:40 +0100528 perror("Cannot open server");
Daniel Willmann6480cad2016-01-06 18:06:26 +0100529 exit(1);
530 }
531 g_hnb_gw->iuh = srv;
Harald Welteb3dae302015-08-30 12:20:09 +0200532
Neels Hofmeyr4d675a72016-08-17 13:53:18 +0200533 if (hnbgw_cmdline_config.daemonize) {
Harald Welteb3dae302015-08-30 12:20:09 +0200534 rc = osmo_daemonize();
535 if (rc < 0) {
536 perror("Error during daemonize");
537 exit(1);
538 }
539 }
540
541 while (1) {
542 rc = osmo_select_main(0);
543 if (rc < 0)
544 exit(3);
545 }
546
547 /* not reached */
548 exit(0);
Harald Weltea2e6a7a2015-08-29 21:47:39 +0200549}