Merge commit 'ba01fa44feb6deb0f0359f381eafe866991c06c1' into pablo/namespace
[osmocom-bb.git] / src / host / layer23 / src / mobile / app_mobile.c
1 /* "Application" code of the layer2/3 stack */
2
3 /* (C) 2010 by Holger Hans Peter Freyther
4  * (C) 2010 by Harald Welte <laforge@gnumonks.org>
5  * (C) 2010 by Andreas Eversberg <jolly@eversberg.eu>
6  *
7  * All Rights Reserved
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (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
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License along
20  * with this program; if not, write to the Free Software Foundation, Inc.,
21  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22  *
23  */
24
25 #include <errno.h>
26 #include <signal.h>
27
28 #include <osmocom/bb/common/osmocom_data.h>
29 #include <osmocom/bb/common/l1l2_interface.h>
30 #include <osmocom/bb/common/l1ctl.h>
31 #include <osmocom/bb/common/lapdm.h>
32 #include <osmocom/bb/common/logging.h>
33 #include <osmocom/bb/common/gps.h>
34 #include <osmocom/bb/mobile/gsm48_rr.h>
35 #include <osmocom/bb/mobile/vty.h>
36 #include <osmocom/bb/mobile/app_mobile.h>
37 #include <osmocom/bb/mobile/mncc.h>
38 #include <osmocom/vty/telnet_interface.h>
39
40 #include <osmocom/core/msgb.h>
41 #include <osmocom/core/talloc.h>
42 #include <osmocom/core/select.h>
43 #include <osmocom/core/signal.h>
44
45 extern void *l23_ctx;
46 extern struct llist_head ms_list;
47 extern int vty_reading;
48
49 int mncc_recv_mobile(struct osmocom_ms *ms, int msg_type, void *arg);
50 int mncc_recv_dummy(struct osmocom_ms *ms, int msg_type, void *arg);
51 int (*mncc_recv_app)(struct osmocom_ms *ms, int, void *);
52 static int quit;
53
54 /* handle ms instance */
55 int mobile_work(struct osmocom_ms *ms)
56 {
57         int work = 0, w;
58
59         do {
60                 w = 0;
61                 w |= gsm48_rsl_dequeue(ms);
62                 w |= gsm48_rr_dequeue(ms);
63                 w |= gsm48_mmxx_dequeue(ms);
64                 w |= gsm48_mmr_dequeue(ms);
65                 w |= gsm48_mmevent_dequeue(ms);
66                 w |= gsm322_plmn_dequeue(ms);
67                 w |= gsm322_cs_dequeue(ms);
68                 w |= gsm_sim_job_dequeue(ms);
69                 w |= mncc_dequeue(ms);
70                 if (w)
71                         work = 1;
72         } while (w);
73         return work;
74 }
75
76 /* run ms instance, if layer1 is available */
77 int mobile_signal_cb(unsigned int subsys, unsigned int signal,
78                      void *handler_data, void *signal_data)
79 {
80         struct osmocom_ms *ms;
81         struct gsm_settings *set;
82         struct msgb *nmsg;
83
84         if (subsys != SS_L1CTL)
85                 return 0;
86
87         switch (signal) {
88         case S_L1CTL_RESET:
89                 ms = signal_data;
90                 set = &ms->settings;
91
92                 if (ms->started)
93                         break;
94
95                 /* insert test card, if enabled */
96                 switch (set->sim_type) {
97                 case GSM_SIM_TYPE_READER:
98                         /* trigger sim card reader process */
99                         gsm_subscr_simcard(ms);
100                         break;
101                 case GSM_SIM_TYPE_TEST:
102                         gsm_subscr_testcard(ms, set->test_rplmn_mcc,
103                                 set->test_rplmn_mnc, set->test_lac,
104                                 set->test_tmsi);
105                         break;
106                 default:
107                         /* no SIM, trigger PLMN selection process */
108                         nmsg = gsm322_msgb_alloc(GSM322_EVENT_SWITCH_ON);
109                         if (!nmsg)
110                                 return -ENOMEM;
111                         gsm322_plmn_sendmsg(ms, nmsg);
112                         nmsg = gsm322_msgb_alloc(GSM322_EVENT_SWITCH_ON);
113                         if (!nmsg)
114                                 return -ENOMEM;
115                         gsm322_cs_sendmsg(ms, nmsg);
116                 }
117
118                 ms->started = 1;
119         }
120         return 0;
121 }
122
123 /* power-off ms instance */
124 int mobile_exit(struct osmocom_ms *ms, int force)
125 {
126         struct gsm48_mmlayer *mm = &ms->mmlayer;
127
128         if (!force && ms->started) {
129                 struct msgb *nmsg;
130
131                 ms->shutdown = 1; /* going down */
132                 nmsg = gsm48_mmevent_msgb_alloc(GSM48_MM_EVENT_IMSI_DETACH);
133                 if (!nmsg)
134                         return -ENOMEM;
135                 gsm48_mmevent_msg(mm->ms, nmsg);
136
137                 return -EBUSY;
138         }
139
140         gsm322_exit(ms);
141         gsm48_mm_exit(ms);
142         gsm48_rr_exit(ms);
143         gsm_subscr_exit(ms);
144         gsm48_cc_exit(ms);
145         gsm_sim_exit(ms);
146         lapdm_exit(&ms->l2_entity.lapdm_acch);
147         lapdm_exit(&ms->l2_entity.lapdm_dcch);
148
149         ms->shutdown = 2; /* being down */
150         vty_notify(ms, NULL);
151         vty_notify(ms, "Power off!\n");
152         printf("Power off! (MS %s)\n", ms->name);
153
154         return 0;
155 }
156
157 /* power-on ms instance */
158 int mobile_init(struct osmocom_ms *ms)
159 {
160         int rc;
161
162         lapdm_init(&ms->l2_entity.lapdm_dcch, ms);
163         lapdm_init(&ms->l2_entity.lapdm_acch, ms);
164         gsm_sim_init(ms);
165         gsm48_cc_init(ms);
166         gsm_subscr_init(ms);
167         gsm48_rr_init(ms);
168         gsm48_mm_init(ms);
169         INIT_LLIST_HEAD(&ms->trans_list);
170         gsm322_init(ms);
171
172         rc = layer2_open(ms, ms->settings.layer2_socket_path);
173         if (rc < 0) {
174                 fprintf(stderr, "Failed during layer2_open()\n");
175                 ms->l2_wq.bfd.fd = -1;
176                 mobile_exit(ms, 1);
177                 return rc;
178         }
179
180 #if 0
181         rc = sap_open(ms, ms->settings.sap_socket_path);
182         if (rc < 0) {
183                 fprintf(stderr, "Failed during sap_open(), no SIM reader\n");
184                 ms->sap_wq.bfd.fd = -1;
185                 mobile_exit(ms, 1);
186                 return rc;
187         }
188 #endif
189
190         if (mncc_recv_app)
191                 ms->cclayer.mncc_recv = mncc_recv_app;
192         else if (ms->settings.ch_cap == GSM_CAP_SDCCH)
193                 ms->cclayer.mncc_recv = mncc_recv_dummy;
194         else
195                 ms->cclayer.mncc_recv = mncc_recv_mobile;
196
197         gsm_random_imei(&ms->settings);
198
199         ms->shutdown = 0;
200         ms->started = 0;
201
202         l1ctl_tx_reset_req(ms, L1CTL_RES_T_FULL);
203         printf("Mobile '%s' initialized, please start phone now!\n", ms->name);
204         return 0;
205 }
206
207 /* create ms instance */
208 struct osmocom_ms *mobile_new(char *name)
209 {
210         static struct osmocom_ms *ms;
211
212         ms = talloc_zero(l23_ctx, struct osmocom_ms);
213         if (!ms) {
214                 fprintf(stderr, "Failed to allocate MS\n");
215                 exit(1);
216         }
217         llist_add_tail(&ms->entity, &ms_list);
218
219         strcpy(ms->name, name);
220
221         ms->l2_wq.bfd.fd = -1;
222         ms->sap_wq.bfd.fd = -1;
223
224         gsm_support_init(ms);
225         gsm_settings_init(ms);
226
227         ms->shutdown = 2; /* being down */
228
229         if (mncc_recv_app) {
230                 struct msgb *msg;
231
232                 msg = msgb_alloc(sizeof(struct gsm_mncc), "MNCC");
233                 if (msg) {
234                         struct gsm_mncc *mncc = (struct gsm_mncc *)msg->data;
235
236                         mncc->msg_type = MS_NEW;
237                         mncc_recv_app(ms, mncc->msg_type, mncc);
238                 }
239                 ms->cclayer.mncc_recv = mncc_recv_app;
240         } else
241                 ms->cclayer.mncc_recv = mncc_recv_dummy;
242
243         return ms;
244 }
245
246 /* destroy ms instance */
247 int mobile_delete(struct osmocom_ms *ms, int force)
248 {
249         int rc;
250
251         ms->deleting = 1;
252
253         if (ms->shutdown == 0 || (ms->shutdown == 1 && force)) {
254                 rc = mobile_exit(ms, force);
255                 if (rc < 0)
256                         return rc;
257         }
258
259         if (mncc_recv_app) {
260                 struct msgb *msg;
261
262                 msg = msgb_alloc(sizeof(struct gsm_mncc), "MNCC");
263                 if (msg) {
264                         struct gsm_mncc *mncc = (struct gsm_mncc *)msg->data;
265
266                         mncc->msg_type = MS_DELETE;
267                         mncc_recv_app(ms, mncc->msg_type, mncc);
268                 }
269         }
270
271         return 0;
272 }
273
274 /* handle global shutdown */
275 int global_signal_cb(unsigned int subsys, unsigned int signal,
276                      void *handler_data, void *signal_data)
277 {
278         struct osmocom_ms *ms, *ms2;
279
280         if (subsys != SS_GLOBAL)
281                 return 0;
282
283         switch (signal) {
284         case S_GLOBAL_SHUTDOWN:
285                 llist_for_each_entry_safe(ms, ms2, &ms_list, entity)
286                         mobile_delete(ms, quit);
287
288                 /* if second signal is received, force to exit */
289                 quit = 1;
290                 break;
291         }
292         return 0;
293 }
294
295 /* global work handler */
296 int l23_app_work(int *_quit)
297 {
298         struct osmocom_ms *ms, *ms2;
299         int work = 0;
300
301         llist_for_each_entry_safe(ms, ms2, &ms_list, entity) {
302                 if (ms->shutdown != 2)
303                         work |= mobile_work(ms);
304                 if (ms->shutdown == 2) {
305                         if (ms->l2_wq.bfd.fd > -1) {
306                                 layer2_close(ms);
307                                 ms->l2_wq.bfd.fd = -1;
308                         }
309
310                         if (ms->sap_wq.bfd.fd > -1) {
311                                 sap_close(ms);
312                                 ms->sap_wq.bfd.fd = -1;
313                         }
314
315                         if (ms->deleting) {
316                                 gsm_settings_exit(ms);
317                                 llist_del(&ms->entity);
318                                 talloc_free(ms);
319                                 work = 1;
320                         }
321                 }
322         }
323
324         /* return, if a shutdown was scheduled (quit = 1) */
325         *_quit = quit;
326         return work;
327 }
328
329 /* global exit */
330 int l23_app_exit(void)
331 {
332         unregister_signal_handler(SS_L1CTL, &gsm322_l1_signal, NULL);
333         unregister_signal_handler(SS_L1CTL, &mobile_signal_cb, NULL);
334         unregister_signal_handler(SS_GLOBAL, &global_signal_cb, NULL);
335
336         osmo_gps_close();
337
338         return 0;
339 }
340
341 static struct vty_app_info vty_info = {
342         .name = "OsmocomBB",
343         .version = PACKAGE_VERSION,
344         .go_parent_cb = ms_vty_go_parent,
345 };
346
347 /* global init */
348 int l23_app_init(int (*mncc_recv)(struct osmocom_ms *ms, int, void *),
349         const char *config_file, uint16_t vty_port)
350 {
351         struct telnet_connection dummy_conn;
352         int rc = 0;
353
354         mncc_recv_app = mncc_recv;
355
356         osmo_gps_init();
357
358         vty_init(&vty_info);
359         ms_vty_init();
360         dummy_conn.priv = NULL;
361         vty_reading = 1;
362         if (config_file != NULL) {
363                 rc = vty_read_config_file(config_file, &dummy_conn);
364                 if (rc < 0) {
365                         fprintf(stderr, "Failed to parse the config file:"
366                                         " '%s'\n", config_file);
367                         fprintf(stderr, "Please check or create config file"
368                                         " using: 'touch %s'\n", config_file);
369                         return rc;
370                 }
371         }
372         vty_reading = 0;
373         telnet_init(l23_ctx, NULL, vty_port);
374         if (rc < 0)
375                 return rc;
376         printf("VTY available on port %u.\n", vty_port);
377
378         register_signal_handler(SS_GLOBAL, &global_signal_cb, NULL);
379         register_signal_handler(SS_L1CTL, &mobile_signal_cb, NULL);
380         register_signal_handler(SS_L1CTL, &gsm322_l1_signal, NULL);
381
382         if (llist_empty(&ms_list)) {
383                 struct osmocom_ms *ms;
384
385                 printf("No Mobile Station defined, creating: MS '1'\n");
386                 ms = mobile_new("1");
387                 if (ms)
388                         mobile_init(ms);
389         }
390
391         quit = 0;
392
393         return 0;
394 }
395