layer23: Not every application supports every option add enum
[osmocom-bb.git] / src / host / layer23 / src / common / main.c
1 /* Main method of the layer2/3 stack */
2
3 /* (C) 2010 by Holger Hans Peter Freyther
4  * (C) 2010 by Harald Welte <laforge@gnumonks.org>
5  *
6  * All Rights Reserved
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License along
19  * with this program; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21  *
22  */
23
24 #include <osmocom/bb/common/osmocom_data.h>
25 #include <osmocom/bb/common/l1ctl.h>
26 #include <osmocom/bb/common/l1l2_interface.h>
27 #include <osmocom/bb/common/sap_interface.h>
28 #include <osmocom/bb/misc/layer3.h>
29 #include <osmocom/bb/common/lapdm.h>
30 #include <osmocom/bb/common/logging.h>
31 #include <osmocom/bb/common/l23_app.h>
32
33 #include <osmocore/msgb.h>
34 #include <osmocore/talloc.h>
35 #include <osmocore/select.h>
36 #include <osmocore/linuxlist.h>
37 #include <osmocore/gsmtap_util.h>
38
39 #include <arpa/inet.h>
40
41 #define _GNU_SOURCE
42 #include <getopt.h>
43 #include <stdlib.h>
44 #include <unistd.h>
45 #include <errno.h>
46 #include <fcntl.h>
47 #include <signal.h>
48
49 struct log_target *stderr_target;
50
51 void *l23_ctx = NULL;
52 static char *layer2_socket_path = "/tmp/osmocom_l2";
53 static char *sap_socket_path = "/tmp/osmocom_sap";
54 struct llist_head ms_list;
55 static struct osmocom_ms *ms = NULL;
56 static uint32_t gsmtap_ip = 0;
57 unsigned short vty_port = 4247;
58 int (*l23_app_work) (struct osmocom_ms *ms) = NULL;
59 int (*l23_app_exit) (struct osmocom_ms *ms) = NULL;
60 int quit = 0;
61
62 const char *openbsc_copyright =
63         "%s"
64         "%s\n"
65         "License GPLv2+: GNU GPL version 2 or later "
66                 "<http://gnu.org/licenses/gpl.html>\n"
67         "This is free software: you are free to change and redistribute it.\n"
68         "There is NO WARRANTY, to the extent permitted by law.\n\n";
69
70 static void print_usage(const char *app)
71 {
72         printf("Usage: %s\n", app);
73 }
74
75 static void print_help()
76 {
77         int options = 0xff;
78         struct l23_app_info *app = l23_app_info();
79
80         if (app && app->cfg_supported != 0)
81                 options = app->cfg_supported();
82
83         printf(" Some help...\n");
84         printf("  -h --help             this text\n");
85         printf("  -s --socket           /tmp/osmocom_l2. Path to the unix "
86                 "domain socket (l2)\n");
87
88         if (options & L23_OPT_SAP)
89                 printf("  -S --sap              /tmp/osmocom_sap. Path to the "
90                         "unix domain socket (BTSAP)\n");
91
92         if (options & L23_OPT_ARFCN)
93                 printf("  -a --arfcn NR         The ARFCN to be used for layer2.\n");
94
95         if (options & L23_OPT_TAP)
96                 printf("  -i --gsmtap-ip        The destination IP used for GSMTAP.\n");
97
98         if (options & L23_OPT_VTY)
99                 printf("  -v --vty-port         The VTY port number to telnet "
100                         "to. (default %u)\n", vty_port);
101
102         if (options & L23_OPT_DBG)
103                 printf("  -d --debug            Change debug flags.\n");
104 }
105
106 static void handle_options(int argc, char **argv)
107 {
108         struct sockaddr_in gsmtap;
109         while (1) {
110                 int option_index = 0, c;
111                 static struct option long_options[] = {
112                         {"help", 0, 0, 'h'},
113                         {"socket", 1, 0, 's'},
114                         {"sap", 1, 0, 'S'},
115                         {"arfcn", 1, 0, 'a'},
116                         {"gsmtap-ip", 1, 0, 'i'},
117                         {"vty-port", 1, 0, 'v'},
118                         {"debug", 1, 0, 'd'},
119                         {0, 0, 0, 0},
120                 };
121
122                 c = getopt_long(argc, argv, "hs:S:a:i:v:d:",
123                                 long_options, &option_index);
124                 if (c == -1)
125                         break;
126
127                 switch (c) {
128                 case 'h':
129                         print_usage(argv[0]);
130                         print_help();
131                         exit(0);
132                         break;
133                 case 's':
134                         layer2_socket_path = talloc_strdup(l23_ctx, optarg);
135                         break;
136                 case 'S':
137                         sap_socket_path = talloc_strdup(l23_ctx, optarg);
138                         break;
139                 case 'a':
140                         ms->test_arfcn = atoi(optarg);
141                         break;
142                 case 'i':
143                         if (!inet_aton(optarg, &gsmtap.sin_addr)) {
144                                 perror("inet_aton");
145                                 exit(2);
146                         }
147                         gsmtap_ip = ntohl(gsmtap.sin_addr.s_addr);
148                         break;
149                 case 'v':
150                         vty_port = atoi(optarg);
151                         break;
152                 case 'd':
153                         log_parse_category_mask(stderr_target, optarg);
154                         break;
155                 default:
156                         break;
157                 }
158         }
159 }
160
161 void sighandler(int sigset)
162 {
163         int rc = 0;
164
165         if (sigset == SIGHUP || sigset == SIGPIPE)
166                 return;
167
168         fprintf(stderr, "Signal %d recevied.\n", sigset);
169         if (l23_app_exit)
170                 rc = l23_app_exit(ms);
171
172         if (rc != -EBUSY)
173                 exit (0);
174 }
175
176 static void print_copyright()
177 {
178         struct l23_app_info *app;
179         app = l23_app_info();
180         printf(openbsc_copyright,
181                app && app->copyright ? app->copyright : "",
182                app && app->contribution ? app->contribution : "");
183 }
184
185 int main(int argc, char **argv)
186 {
187         int rc;
188
189         INIT_LLIST_HEAD(&ms_list);
190         log_init(&log_info);
191         stderr_target = log_target_create_stderr();
192         log_add_target(stderr_target);
193         log_set_all_filter(stderr_target, 1);
194
195         l23_ctx = talloc_named_const(NULL, 1, "layer2 context");
196
197         ms = talloc_zero(l23_ctx, struct osmocom_ms);
198         if (!ms) {
199                 fprintf(stderr, "Failed to allocate MS\n");
200                 exit(1);
201         }
202
203         print_copyright();
204
205         llist_add_tail(&ms->entity, &ms_list);
206
207         sprintf(ms->name, "1");
208
209         ms->test_arfcn = 871;
210
211         handle_options(argc, argv);
212
213         rc = layer2_open(ms, layer2_socket_path);
214         if (rc < 0) {
215                 fprintf(stderr, "Failed during layer2_open()\n");
216                 exit(1);
217         }
218
219         rc = sap_open(ms, sap_socket_path);
220         if (rc < 0)
221                 fprintf(stderr, "Failed during sap_open(), no SIM reader\n");
222
223         lapdm_init(&ms->l2_entity.lapdm_dcch, ms);
224         lapdm_init(&ms->l2_entity.lapdm_acch, ms);
225
226         rc = l23_app_init(ms);
227         if (rc < 0)
228                 exit(1);
229
230         if (gsmtap_ip) {
231                 rc = gsmtap_init(gsmtap_ip);
232                 if (rc < 0) {
233                         fprintf(stderr, "Failed during gsmtap_init()\n");
234                         exit(1);
235                 }
236         }
237
238         signal(SIGINT, sighandler);
239         signal(SIGHUP, sighandler);
240         signal(SIGTERM, sighandler);
241         signal(SIGPIPE, sighandler);
242
243         while (!quit) {
244                 if (l23_app_work)
245                         l23_app_work(ms);
246                 bsc_select_main(0);
247         }
248
249         return 0;
250 }