remove osmocom_ms reference from lapdm_init()
[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         gsm_settings_arfcn(ms);
163         ms->l2_entity.lapdm_dcch.l1_ctx = ms;
164         ms->l2_entity.lapdm_dcch.l3_ctx = ms;
165         lapdm_init(&ms->l2_entity.lapdm_dcch);
166         ms->l2_entity.lapdm_acch.l1_ctx = ms;
167         ms->l2_entity.lapdm_acch.l3_ctx = ms;
168         lapdm_init(&ms->l2_entity.lapdm_acch);
169         gsm_sim_init(ms);
170         gsm48_cc_init(ms);
171         gsm_subscr_init(ms);
172         gsm48_rr_init(ms);
173         gsm48_mm_init(ms);
174         INIT_LLIST_HEAD(&ms->trans_list);
175         gsm322_init(ms);
176
177         rc = layer2_open(ms, ms->settings.layer2_socket_path);
178         if (rc < 0) {
179                 fprintf(stderr, "Failed during layer2_open()\n");
180                 ms->l2_wq.bfd.fd = -1;
181                 mobile_exit(ms, 1);
182                 return rc;
183         }
184
185 #if 0
186         rc = sap_open(ms, ms->settings.sap_socket_path);
187         if (rc < 0) {
188                 fprintf(stderr, "Failed during sap_open(), no SIM reader\n");
189                 ms->sap_wq.bfd.fd = -1;
190                 mobile_exit(ms, 1);
191                 return rc;
192         }
193 #endif
194
195         if (mncc_recv_app)
196                 ms->cclayer.mncc_recv = mncc_recv_app;
197         else if (ms->settings.ch_cap == GSM_CAP_SDCCH)
198                 ms->cclayer.mncc_recv = mncc_recv_dummy;
199         else
200                 ms->cclayer.mncc_recv = mncc_recv_mobile;
201
202         gsm_random_imei(&ms->settings);
203
204         ms->shutdown = 0;
205         ms->started = 0;
206
207         l1ctl_tx_reset_req(ms, L1CTL_RES_T_FULL);
208         printf("Mobile '%s' initialized, please start phone now!\n", ms->name);
209         return 0;
210 }
211
212 /* create ms instance */
213 struct osmocom_ms *mobile_new(char *name)
214 {
215         static struct osmocom_ms *ms;
216
217         ms = talloc_zero(l23_ctx, struct osmocom_ms);
218         if (!ms) {
219                 fprintf(stderr, "Failed to allocate MS\n");
220                 exit(1);
221         }
222         llist_add_tail(&ms->entity, &ms_list);
223
224         strcpy(ms->name, name);
225
226         ms->l2_wq.bfd.fd = -1;
227         ms->sap_wq.bfd.fd = -1;
228
229         gsm_support_init(ms);
230         gsm_settings_init(ms);
231
232         ms->shutdown = 2; /* being down */
233
234         if (mncc_recv_app) {
235                 struct msgb *msg;
236
237                 msg = msgb_alloc(sizeof(struct gsm_mncc), "MNCC");
238                 if (msg) {
239                         struct gsm_mncc *mncc = (struct gsm_mncc *)msg->data;
240
241                         mncc->msg_type = MS_NEW;
242                         mncc_recv_app(ms, mncc->msg_type, mncc);
243                 }
244                 ms->cclayer.mncc_recv = mncc_recv_app;
245         } else
246                 ms->cclayer.mncc_recv = mncc_recv_dummy;
247
248         return ms;
249 }
250
251 /* destroy ms instance */
252 int mobile_delete(struct osmocom_ms *ms, int force)
253 {
254         int rc;
255
256         ms->deleting = 1;
257
258         if (ms->shutdown == 0 || (ms->shutdown == 1 && force)) {
259                 rc = mobile_exit(ms, force);
260                 if (rc < 0)
261                         return rc;
262         }
263
264         if (mncc_recv_app) {
265                 struct msgb *msg;
266
267                 msg = msgb_alloc(sizeof(struct gsm_mncc), "MNCC");
268                 if (msg) {
269                         struct gsm_mncc *mncc = (struct gsm_mncc *)msg->data;
270
271                         mncc->msg_type = MS_DELETE;
272                         mncc_recv_app(ms, mncc->msg_type, mncc);
273                 }
274         }
275
276         return 0;
277 }
278
279 /* handle global shutdown */
280 int global_signal_cb(unsigned int subsys, unsigned int signal,
281                      void *handler_data, void *signal_data)
282 {
283         struct osmocom_ms *ms, *ms2;
284
285         if (subsys != SS_GLOBAL)
286                 return 0;
287
288         switch (signal) {
289         case S_GLOBAL_SHUTDOWN:
290                 llist_for_each_entry_safe(ms, ms2, &ms_list, entity)
291                         mobile_delete(ms, quit);
292
293                 /* if second signal is received, force to exit */
294                 quit = 1;
295                 break;
296         }
297         return 0;
298 }
299
300 /* global work handler */
301 int l23_app_work(int *_quit)
302 {
303         struct osmocom_ms *ms, *ms2;
304         int work = 0;
305
306         llist_for_each_entry_safe(ms, ms2, &ms_list, entity) {
307                 if (ms->shutdown != 2)
308                         work |= mobile_work(ms);
309                 if (ms->shutdown == 2) {
310                         if (ms->l2_wq.bfd.fd > -1) {
311                                 layer2_close(ms);
312                                 ms->l2_wq.bfd.fd = -1;
313                         }
314
315                         if (ms->sap_wq.bfd.fd > -1) {
316                                 sap_close(ms);
317                                 ms->sap_wq.bfd.fd = -1;
318                         }
319
320                         if (ms->deleting) {
321                                 gsm_settings_exit(ms);
322                                 llist_del(&ms->entity);
323                                 talloc_free(ms);
324                                 work = 1;
325                         }
326                 }
327         }
328
329         /* return, if a shutdown was scheduled (quit = 1) */
330         *_quit = quit;
331         return work;
332 }
333
334 /* global exit */
335 int l23_app_exit(void)
336 {
337         osmo_signal_unregister_handler(SS_L1CTL, &gsm322_l1_signal, NULL);
338         osmo_signal_unregister_handler(SS_L1CTL, &mobile_signal_cb, NULL);
339         osmo_signal_unregister_handler(SS_GLOBAL, &global_signal_cb, NULL);
340
341         osmo_gps_close();
342
343         return 0;
344 }
345
346 static struct vty_app_info vty_info = {
347         .name = "OsmocomBB",
348         .version = PACKAGE_VERSION,
349         .go_parent_cb = ms_vty_go_parent,
350 };
351
352 /* global init */
353 int l23_app_init(int (*mncc_recv)(struct osmocom_ms *ms, int, void *),
354         const char *config_file, uint16_t vty_port)
355 {
356         struct telnet_connection dummy_conn;
357         int rc = 0;
358
359         mncc_recv_app = mncc_recv;
360
361         osmo_gps_init();
362
363         vty_init(&vty_info);
364         ms_vty_init();
365         dummy_conn.priv = NULL;
366         vty_reading = 1;
367         if (config_file != NULL) {
368                 rc = vty_read_config_file(config_file, &dummy_conn);
369                 if (rc < 0) {
370                         fprintf(stderr, "Failed to parse the config file:"
371                                         " '%s'\n", config_file);
372                         fprintf(stderr, "Please check or create config file"
373                                         " using: 'touch %s'\n", config_file);
374                         return rc;
375                 }
376         }
377         vty_reading = 0;
378         telnet_init(l23_ctx, NULL, vty_port);
379         if (rc < 0)
380                 return rc;
381         printf("VTY available on port %u.\n", vty_port);
382
383         osmo_signal_register_handler(SS_GLOBAL, &global_signal_cb, NULL);
384         osmo_signal_register_handler(SS_L1CTL, &mobile_signal_cb, NULL);
385         osmo_signal_register_handler(SS_L1CTL, &gsm322_l1_signal, NULL);
386
387         if (llist_empty(&ms_list)) {
388                 struct osmocom_ms *ms;
389
390                 printf("No Mobile Station defined, creating: MS '1'\n");
391                 ms = mobile_new("1");
392                 if (ms)
393                         mobile_init(ms);
394         }
395
396         quit = 0;
397
398         return 0;
399 }
400