[layer23] Adding LAC and TMSI (both optional) to test card (rplmn)
[osmocom-bb.git] / src / host / layer23 / src / mobile / vty_interface.c
1 /*
2  * (C) 2010 by Andreas Eversberg <jolly@eversberg.eu>
3  *
4  * All Rights Reserved
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with this program; if not, write to the Free Software Foundation, Inc.,
18  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19  *
20  */
21
22 #include <string.h>
23 #include <stdlib.h>
24 #include <stdarg.h>
25 #include <unistd.h>
26 #include <sys/types.h>
27
28 #include <osmocore/utils.h>
29 #include <osmocore/gsm48.h>
30 #include <osmocore/talloc.h>
31 #include <osmocore/signal.h>
32
33 #include <osmocom/bb/common/osmocom_data.h>
34 #include <osmocom/bb/common/networks.h>
35 #include <osmocom/bb/common/gps.h>
36 #include <osmocom/bb/mobile/mncc.h>
37 #include <osmocom/bb/mobile/transaction.h>
38 #include <osmocom/bb/mobile/vty.h>
39 #include <osmocom/bb/mobile/app_mobile.h>
40 #include <osmocom/vty/telnet_interface.h>
41
42 void *l23_ctx;
43
44 int mncc_call(struct osmocom_ms *ms, char *number);
45 int mncc_hangup(struct osmocom_ms *ms);
46 int mncc_answer(struct osmocom_ms *ms);
47 int mncc_hold(struct osmocom_ms *ms);
48 int mncc_retrieve(struct osmocom_ms *ms, int number);
49 int mncc_dtmf(struct osmocom_ms *ms, char *dtmf);
50
51 extern struct llist_head ms_list;
52 extern struct llist_head active_connections;
53
54 struct cmd_node ms_node = {
55         MS_NODE,
56         "%s(ms)#",
57         1
58 };
59
60 struct cmd_node testsim_node = {
61         TESTSIM_NODE,
62         "%s(test-sim)#",
63         1
64 };
65
66 struct cmd_node support_node = {
67         SUPPORT_NODE,
68         "%s(support)#",
69         1
70 };
71
72 static void print_vty(void *priv, const char *fmt, ...)
73 {
74         char buffer[1000];
75         struct vty *vty = priv;
76         va_list args;
77
78         va_start(args, fmt);
79         vsnprintf(buffer, sizeof(buffer) - 1, fmt, args);
80         buffer[sizeof(buffer) - 1] = '\0';
81         va_end(args);
82
83         if (buffer[0]) {
84                 if (buffer[strlen(buffer) - 1] == '\n') {
85                         buffer[strlen(buffer) - 1] = '\0';
86                         vty_out(vty, "%s%s", buffer, VTY_NEWLINE);
87                 } else
88                         vty_out(vty, "%s", buffer);
89         }
90 }
91
92 int vty_check_number(struct vty *vty, const char *number)
93 {
94         int i;
95
96         for (i = 0; i < strlen(number); i++) {
97                 /* allow international notation with + */
98                 if (i == 0 && number[i] == '+')
99                         continue;
100                 if (!(number[i] >= '0' && number[i] <= '9')
101                  && number[i] != '*'
102                  && number[i] != '#'
103                  && !(number[i] >= 'a' && number[i] <= 'c')) {
104                         vty_out(vty, "Invalid digit '%c' of number!%s",
105                                 number[i], VTY_NEWLINE);
106                         return -EINVAL;
107                 }
108         }
109         if (number[0] == '\0' || (number[0] == '+' && number[1] == '\0')) {
110                 vty_out(vty, "Given number has no digits!%s", VTY_NEWLINE);
111                 return -EINVAL;
112         }
113
114         return 0;
115 }
116
117 int vty_reading = 0;
118
119 static void vty_restart(struct vty *vty, struct osmocom_ms *ms)
120 {
121         if (vty_reading)
122                 return;
123         if (ms->shutdown != 0)
124                 return;
125         vty_out(vty, "You must restart MS '%s' ('shutdown / no shutdown') for "
126                 "change to take effect!%s", ms->name, VTY_NEWLINE);
127 }
128
129 static struct osmocom_ms *get_ms(const char *name, struct vty *vty)
130 {
131         struct osmocom_ms *ms;
132
133         llist_for_each_entry(ms, &ms_list, entity) {
134                 if (!strcmp(ms->name, name)) {
135                         if (ms->shutdown) {
136                                 vty_out(vty, "MS '%s' is admin down.%s", name,
137                                         VTY_NEWLINE);
138                                 return NULL;
139                         }
140                         return ms;
141                 }
142         }
143         vty_out(vty, "MS name '%s' does not exits.%s", name, VTY_NEWLINE);
144
145         return NULL;
146 }
147
148 static void gsm_ms_dump(struct osmocom_ms *ms, struct vty *vty)
149 {
150         struct gsm_settings *set = &ms->settings;
151         struct gsm_trans *trans;
152         char *service = "";
153
154         if (!ms->started)
155                 service = ", radio is not started";
156         else if (ms->mmlayer.state == GSM48_MM_ST_MM_IDLE) {
157                 /* current MM idle state */
158                 switch (ms->mmlayer.substate) {
159                 case GSM48_MM_SST_NORMAL_SERVICE:
160                 case GSM48_MM_SST_PLMN_SEARCH_NORMAL:
161                         service = ", service is normal";
162                         break;
163                 case GSM48_MM_SST_LOC_UPD_NEEDED:
164                 case GSM48_MM_SST_ATTEMPT_UPDATE:
165                         service = ", service is limited (pending)";
166                         break;
167                 case GSM48_MM_SST_NO_CELL_AVAIL:
168                         service = ", service is unavailable";
169                         break;
170                 default:
171                         if (ms->subscr.sim_valid)
172                                 service = ", service is limited";
173                         else
174                                 service = ", service is limited "
175                                         "(IMSI detached)";
176                         break;
177                 }
178         } else
179                 service = ", MM connection active";
180
181         vty_out(vty, "MS '%s' is %s%s%s%s", ms->name,
182                 (ms->shutdown) ? "administratively " : "",
183                 (ms->shutdown || !ms->started) ? "down" : "up",
184                 (!ms->shutdown) ? service : "",
185                 VTY_NEWLINE);
186         vty_out(vty, "  IMEI: %s%s", set->imei, VTY_NEWLINE);
187         vty_out(vty, "     IMEISV: %s%s", set->imeisv, VTY_NEWLINE);
188         if (set->imei_random)
189                 vty_out(vty, "     IMEI generation: random (%d trailing "
190                         "digits)%s", set->imei_random, VTY_NEWLINE);
191         else
192                 vty_out(vty, "     IMEI generation: fixed%s", VTY_NEWLINE);
193
194         if (ms->shutdown)
195                 return;
196
197         if (set->plmn_mode == PLMN_MODE_AUTO)
198                 vty_out(vty, "  automatic network selection state: %s%s", 
199                         plmn_a_state_names[ms->plmn.state], VTY_NEWLINE);
200         else
201                 vty_out(vty, "  manual network selection state: %s%s", 
202                         plmn_m_state_names[ms->plmn.state], VTY_NEWLINE);
203         vty_out(vty, "  cell selection state: %s",
204                 cs_state_names[ms->cellsel.state]);
205         if (ms->rrlayer.state == GSM48_RR_ST_IDLE && ms->cellsel.selected)
206                 vty_out(vty, " (ARFCN %d)", ms->cellsel.sel_arfcn);
207         vty_out(vty, "%s", VTY_NEWLINE);
208         vty_out(vty, "  radio ressource layer state: %s%s", 
209                 gsm48_rr_state_names[ms->rrlayer.state], VTY_NEWLINE);
210         vty_out(vty, "  mobility management layer state: %s", 
211                 gsm48_mm_state_names[ms->mmlayer.state]);
212         if (ms->mmlayer.state == GSM48_MM_ST_MM_IDLE)
213                 vty_out(vty, ", %s", 
214                         gsm48_mm_substate_names[ms->mmlayer.substate]);
215         vty_out(vty, "%s", VTY_NEWLINE);
216         llist_for_each_entry(trans, &ms->trans_list, entry) {
217                 vty_out(vty, "  call control state: %s%s", 
218                         gsm48_cc_state_name(trans->cc.state), VTY_NEWLINE);
219         }
220 }
221
222
223 DEFUN(show_ms, show_ms_cmd, "show ms [ms_name]",
224         SHOW_STR "Display available MS entities\n")
225 {
226         struct osmocom_ms *ms;
227
228         if (argc) {
229                 llist_for_each_entry(ms, &ms_list, entity) {
230                         if (!strcmp(ms->name, argv[0])) {
231                                 gsm_ms_dump(ms, vty);
232                                 return CMD_SUCCESS;
233                         }
234                 }
235                 vty_out(vty, "MS name '%s' does not exits.%s", argv[0],
236                 VTY_NEWLINE);
237                 return CMD_WARNING;
238         } else {
239                 llist_for_each_entry(ms, &ms_list, entity) {
240                         gsm_ms_dump(ms, vty);
241                         vty_out(vty, "%s", VTY_NEWLINE);
242                 }
243         }
244
245         return CMD_SUCCESS;
246 }
247
248 DEFUN(show_support, show_support_cmd, "show support [ms_name]",
249         SHOW_STR "Display information about MS support\n"
250         "Name of MS (see \"show ms\")")
251 {
252         struct osmocom_ms *ms;
253
254         if (argc) {
255                 ms = get_ms(argv[0], vty);
256                 if (!ms)
257                         return CMD_WARNING;
258                 gsm_support_dump(ms, print_vty, vty);
259         } else {
260                 llist_for_each_entry(ms, &ms_list, entity) {
261                         gsm_support_dump(ms, print_vty, vty);
262                         vty_out(vty, "%s", VTY_NEWLINE);
263                 }
264         }
265
266         return CMD_SUCCESS;
267 }
268
269 DEFUN(show_subscr, show_subscr_cmd, "show subscriber [ms_name]",
270         SHOW_STR "Display information about subscriber\n"
271         "Name of MS (see \"show ms\")")
272 {
273         struct osmocom_ms *ms;
274
275         if (argc) {
276                 ms = get_ms(argv[0], vty);
277                 if (!ms)
278                         return CMD_WARNING;
279                 gsm_subscr_dump(&ms->subscr, print_vty, vty);
280         } else {
281                 llist_for_each_entry(ms, &ms_list, entity) {
282                         if (!ms->shutdown) {
283                                 gsm_subscr_dump(&ms->subscr, print_vty, vty);
284                                 vty_out(vty, "%s", VTY_NEWLINE);
285                         }
286                 }
287         }
288
289         return CMD_SUCCESS;
290 }
291
292 DEFUN(show_cell, show_cell_cmd, "show cell MS_NAME",
293         SHOW_STR "Display information about received cells\n"
294         "Name of MS (see \"show ms\")")
295 {
296         struct osmocom_ms *ms;
297
298         ms = get_ms(argv[0], vty);
299         if (!ms)
300                 return CMD_WARNING;
301
302         gsm322_dump_cs_list(&ms->cellsel, GSM322_CS_FLAG_SYSINFO, print_vty,
303                 vty);
304
305         return CMD_SUCCESS;
306 }
307
308 DEFUN(show_cell_si, show_cell_si_cmd, "show cell MS_NAME <0-1023>",
309         SHOW_STR "Display information about received cell\n"
310         "Name of MS (see \"show ms\")\nRadio frequency number")
311 {
312         struct osmocom_ms *ms;
313         int i;
314         struct gsm48_sysinfo *s;
315
316         ms = get_ms(argv[0], vty);
317         if (!ms)
318                 return CMD_WARNING;
319
320         i = atoi(argv[1]);
321         if (i < 0 || i > 1023) {
322                 vty_out(vty, "Given ARFCN '%s' not in range (0..1023)%s",
323                         argv[1], VTY_NEWLINE);
324                 return CMD_WARNING;
325         }
326         s = ms->cellsel.list[i].sysinfo;
327         if (!s) {
328                 vty_out(vty, "Given ARFCN '%s' has no sysinfo available%s",
329                         argv[1], VTY_NEWLINE);
330                 return CMD_SUCCESS;
331         }
332
333         gsm48_sysinfo_dump(s, i, print_vty, vty);
334
335         return CMD_SUCCESS;
336 }
337
338 DEFUN(show_ba, show_ba_cmd, "show ba MS_NAME [mcc] [mnc]",
339         SHOW_STR "Display information about band allocations\n"
340         "Name of MS (see \"show ms\")\nMobile Country Code\n"
341         "Mobile Network Code")
342 {
343         struct osmocom_ms *ms;
344         uint16_t mcc = 0, mnc = 0;
345
346         ms = get_ms(argv[0], vty);
347         if (!ms)
348                 return CMD_WARNING;
349
350         if (argc >= 3) {
351                 mcc = gsm_input_mcc((char *)argv[1]);
352                 mnc = gsm_input_mnc((char *)argv[2]);
353                 if (!mcc) {
354                         vty_out(vty, "Given MCC invalid%s", VTY_NEWLINE);
355                         return CMD_WARNING;
356                 }
357                 if (!mnc) {
358                         vty_out(vty, "Given MNC invalid%s", VTY_NEWLINE);
359                         return CMD_WARNING;
360                 }
361         }
362
363         gsm322_dump_ba_list(&ms->cellsel, mcc, mnc, print_vty, vty);
364
365         return CMD_SUCCESS;
366 }
367
368 DEFUN(show_forb_plmn, show_forb_plmn_cmd, "show forbidden plmn MS_NAME",
369         SHOW_STR "Display information about forbidden cells / networks\n"
370         "Display forbidden PLMNs\nName of MS (see \"show ms\")")
371 {
372         struct osmocom_ms *ms;
373
374         ms = get_ms(argv[0], vty);
375         if (!ms)
376                 return CMD_WARNING;
377
378         gsm_subscr_dump_forbidden_plmn(ms, print_vty, vty);
379
380         return CMD_SUCCESS;
381 }
382
383 DEFUN(show_forb_la, show_forb_la_cmd, "show forbidden location-area MS_NAME",
384         SHOW_STR "Display information about forbidden cells / networks\n"
385         "Display forbidden location areas\nName of MS (see \"show ms\")")
386 {
387         struct osmocom_ms *ms;
388
389         ms = get_ms(argv[0], vty);
390         if (!ms)
391                 return CMD_WARNING;
392
393         gsm322_dump_forbidden_la(ms, print_vty, vty);
394
395         return CMD_SUCCESS;
396 }
397
398 DEFUN(monitor_network, monitor_network_cmd, "monitor network MS_NAME",
399         "Monitor...\nMonitor network information\nName of MS (see \"show ms\")")
400 {
401         struct osmocom_ms *ms;
402
403         ms = get_ms(argv[0], vty);
404         if (!ms)
405                 return CMD_WARNING;
406
407         gsm48_rr_start_monitor(ms);
408
409         return CMD_SUCCESS;
410 }
411
412 DEFUN(no_monitor_network, no_monitor_network_cmd, "no monitor network MS_NAME",
413         NO_STR "Monitor...\nDeactivate monitor of network information\n"
414         "Name of MS (see \"show ms\")")
415 {
416         struct osmocom_ms *ms;
417
418         ms = get_ms(argv[0], vty);
419         if (!ms)
420                 return CMD_WARNING;
421
422         gsm48_rr_stop_monitor(ms);
423
424         return CMD_SUCCESS;
425 }
426
427 DEFUN(sim_test, sim_test_cmd, "sim testcard MS_NAME [mcc] [mnc] [lac] [tmsi]",
428         "SIM actions\nInsert test card\nName of MS (see \"show ms\")\n"
429         "Mobile Country Code of RPLMN\nMobile Network Code of RPLMN\n"
430         "Optionally locatio area code\nOptionally current assigned TMSI")
431 {
432         struct osmocom_ms *ms;
433         uint16_t mcc = 0x001, mnc = 0x01f, lac = 0x0000;
434         uint32_t tmsi = 0xffffffff;
435
436         ms = get_ms(argv[0], vty);
437         if (!ms)
438                 return CMD_WARNING;
439
440         if (ms->subscr.sim_valid) {
441                 vty_out(vty, "SIM already presend, remove first!%s",
442                         VTY_NEWLINE);
443                 return CMD_WARNING;
444         }
445
446         if (argc >= 3) {
447                 mcc = gsm_input_mcc((char *)argv[1]);
448                 mnc = gsm_input_mnc((char *)argv[2]);
449                 if (!mcc) {
450                         vty_out(vty, "Given MCC invalid%s", VTY_NEWLINE);
451                         return CMD_WARNING;
452                 }
453                 if (!mnc) {
454                         vty_out(vty, "Given MNC invalid%s", VTY_NEWLINE);
455                         return CMD_WARNING;
456                 }
457         }
458
459         if (argc >= 4)
460                 lac = strtoul(argv[3], NULL, 16);
461
462         if (argc >= 5)
463                 tmsi = strtoul(argv[4], NULL, 16);
464
465         gsm_subscr_testcard(ms, mcc, mnc, lac, tmsi);
466
467         return CMD_SUCCESS;
468 }
469
470 DEFUN(sim_reader, sim_reader_cmd, "sim reader MS_NAME",
471         "SIM actions\nSelect SIM from reader\nName of MS (see \"show ms\")")
472 {
473         struct osmocom_ms *ms;
474
475         ms = get_ms(argv[0], vty);
476         if (!ms)
477                 return CMD_WARNING;
478
479         if (ms->subscr.sim_valid) {
480                 vty_out(vty, "SIM already presend, remove first!%s",
481                         VTY_NEWLINE);
482                 return CMD_WARNING;
483         }
484
485         gsm_subscr_simcard(ms);
486
487         return CMD_SUCCESS;
488 }
489
490 DEFUN(sim_remove, sim_remove_cmd, "sim remove MS_NAME",
491         "SIM actions\nRemove SIM card\nName of MS (see \"show ms\")")
492 {
493         struct osmocom_ms *ms;
494
495         ms = get_ms(argv[0], vty);
496         if (!ms)
497                 return CMD_WARNING;
498
499         if (!ms->subscr.sim_valid) {
500                 vty_out(vty, "No Sim inserted!%s", VTY_NEWLINE);
501                 return CMD_WARNING;
502         }
503
504         gsm_subscr_remove(ms);
505
506         return CMD_SUCCESS;
507 }
508
509 DEFUN(sim_pin, sim_pin_cmd, "sim pin MS_NAME PIN",
510         "SIM actions\nEnter PIN for SIM card\nName of MS (see \"show ms\")\n"
511         "PIN number")
512 {
513         struct osmocom_ms *ms;
514
515         ms = get_ms(argv[0], vty);
516         if (!ms)
517                 return CMD_WARNING;
518
519         if (strlen(argv[1]) < 4 || strlen(argv[1]) > 8) {
520                 vty_out(vty, "PIN must be in range 4..8!%s", VTY_NEWLINE);
521                 return CMD_WARNING;
522         }
523
524         if (!ms->subscr.sim_pin_required) {
525                 vty_out(vty, "No PIN is required at this time!%s", VTY_NEWLINE);
526                 return CMD_WARNING;
527         }
528
529         gsm_subscr_sim_pin(ms, (char *)argv[1], "", 0);
530
531         return CMD_SUCCESS;
532 }
533
534 DEFUN(sim_disable_pin, sim_disable_pin_cmd, "sim disable-pin MS_NAME PIN",
535         "SIM actions\nDisable PIN of SIM card\nName of MS (see \"show ms\")\n"
536         "PIN number")
537 {
538         struct osmocom_ms *ms;
539
540         ms = get_ms(argv[0], vty);
541         if (!ms)
542                 return CMD_WARNING;
543
544         if (strlen(argv[1]) < 4 || strlen(argv[1]) > 8) {
545                 vty_out(vty, "PIN must be in range 4..8!%s", VTY_NEWLINE);
546                 return CMD_WARNING;
547         }
548
549         gsm_subscr_sim_pin(ms, (char *)argv[1], "", -1);
550
551         return CMD_SUCCESS;
552 }
553
554 DEFUN(sim_enable_pin, sim_enable_pin_cmd, "sim enable-pin MS_NAME PIN",
555         "SIM actions\nEnable PIN of SIM card\nName of MS (see \"show ms\")\n"
556         "PIN number")
557 {
558         struct osmocom_ms *ms;
559
560         ms = get_ms(argv[0], vty);
561         if (!ms)
562                 return CMD_WARNING;
563
564         if (strlen(argv[1]) < 4 || strlen(argv[1]) > 8) {
565                 vty_out(vty, "PIN must be in range 4..8!%s", VTY_NEWLINE);
566                 return CMD_WARNING;
567         }
568
569         gsm_subscr_sim_pin(ms, (char *)argv[1], "", 1);
570
571         return CMD_SUCCESS;
572 }
573
574 DEFUN(sim_change_pin, sim_change_pin_cmd, "sim change-pin MS_NAME OLD NEW",
575         "SIM actions\nChange PIN of SIM card\nName of MS (see \"show ms\")\n"
576         "Old PIN number\nNew PIN number")
577 {
578         struct osmocom_ms *ms;
579
580         ms = get_ms(argv[0], vty);
581         if (!ms)
582                 return CMD_WARNING;
583
584         if (strlen(argv[1]) < 4 || strlen(argv[1]) > 8) {
585                 vty_out(vty, "Old PIN must be in range 4..8!%s", VTY_NEWLINE);
586                 return CMD_WARNING;
587         }
588         if (strlen(argv[2]) < 4 || strlen(argv[2]) > 8) {
589                 vty_out(vty, "New PIN must be in range 4..8!%s", VTY_NEWLINE);
590                 return CMD_WARNING;
591         }
592
593         gsm_subscr_sim_pin(ms, (char *)argv[1], (char *)argv[2], 2);
594
595         return CMD_SUCCESS;
596 }
597
598 DEFUN(sim_unblock_pin, sim_unblock_pin_cmd, "sim unblock-pin MS_NAME PUC NEW",
599         "SIM actions\nChange PIN of SIM card\nName of MS (see \"show ms\")\n"
600         "Personal Unblock Key\nNew PIN number")
601 {
602         struct osmocom_ms *ms;
603
604         ms = get_ms(argv[0], vty);
605         if (!ms)
606                 return CMD_WARNING;
607
608         if (strlen(argv[1]) != 8) {
609                 vty_out(vty, "PUC must be 8 digits!%s", VTY_NEWLINE);
610                 return CMD_WARNING;
611         }
612         if (strlen(argv[2]) < 4 || strlen(argv[2]) > 8) {
613                 vty_out(vty, "PIN must be in range 4..8!%s", VTY_NEWLINE);
614                 return CMD_WARNING;
615         }
616
617         gsm_subscr_sim_pin(ms, (char *)argv[1], (char *)argv[2], 99);
618
619         return CMD_SUCCESS;
620 }
621
622 DEFUN(sim_lai, sim_lai_cmd, "sim lai MS_NAME MCC MNC LAC",
623         "SIM actions\nChange LAI of SIM card\nName of MS (see \"show ms\")\n"
624         "Mobile Country Code\nMobile Network Code\nLocation Area Code "
625         " (use 0000 to remove LAI)")
626 {
627         struct osmocom_ms *ms;
628         uint16_t mcc = gsm_input_mcc((char *)argv[1]),
629                  mnc = gsm_input_mnc((char *)argv[2]),
630                  lac = strtoul(argv[3], NULL, 16);
631
632         ms = get_ms(argv[0], vty);
633         if (!ms)
634                 return CMD_WARNING;
635
636         if (!mcc) {
637                 vty_out(vty, "Given MCC invalid%s", VTY_NEWLINE);
638                 return CMD_WARNING;
639         }
640         if (!mnc) {
641                 vty_out(vty, "Given MNC invalid%s", VTY_NEWLINE);
642                 return CMD_WARNING;
643         }
644
645         ms->subscr.mcc = mcc;
646         ms->subscr.mnc = mnc;
647         ms->subscr.lac = lac;
648         ms->subscr.tmsi = 0xffffffff;
649
650         gsm_subscr_write_loci(ms);
651
652         return CMD_SUCCESS;
653 }
654
655 DEFUN(network_select, network_select_cmd, "network select MS_NAME MCC MNC",
656         "Select ...\nSelect Network\nName of MS (see \"show ms\")\n"
657         "Mobile Country Code\nMobile Network Code")
658 {
659         struct osmocom_ms *ms;
660         struct gsm322_plmn *plmn;
661         struct msgb *nmsg;
662         struct gsm322_msg *ngm;
663         struct gsm322_plmn_list *temp;
664         uint16_t mcc = gsm_input_mcc((char *)argv[1]),
665                  mnc = gsm_input_mnc((char *)argv[2]);
666         int found = 0;
667
668         ms = get_ms(argv[0], vty);
669         if (!ms)
670                 return CMD_WARNING;
671         plmn = &ms->plmn;
672
673         if (!mcc) {
674                 vty_out(vty, "Given MCC invalid%s", VTY_NEWLINE);
675                 return CMD_WARNING;
676         }
677         if (!mnc) {
678                 vty_out(vty, "Given MNC invalid%s", VTY_NEWLINE);
679                 return CMD_WARNING;
680         }
681
682         llist_for_each_entry(temp, &plmn->sorted_plmn, entry)
683                 if (temp->mcc == mcc &&  temp->mnc == mnc)
684                         found = 1;
685         if (!found) {
686                 vty_out(vty, "Network not in list!%s", VTY_NEWLINE);
687                 return CMD_WARNING;
688         }
689
690         nmsg = gsm322_msgb_alloc(GSM322_EVENT_CHOOSE_PLMN);
691         if (!nmsg)
692                 return CMD_WARNING;
693         ngm = (struct gsm322_msg *) nmsg->data;
694         ngm->mcc = mcc;
695         ngm->mnc = mnc;
696         gsm322_plmn_sendmsg(ms, nmsg);
697
698         return CMD_SUCCESS;
699 }
700
701 DEFUN(call, call_cmd, "call MS_NAME (NUMBER|emergency|answer|hangup|hold)",
702         "Make a call\nName of MS (see \"show ms\")\nPhone number to call "
703         "(Use digits '0123456789*#abc', and '+' to dial international)\n"
704         "Make an emergency call\nAnswer an incomming call\nHangup a call\n"
705         "Hold current active call\n")
706 {
707         struct osmocom_ms *ms;
708         struct gsm_settings *set;
709         struct gsm_settings_abbrev *abbrev;
710         char *number;
711
712         ms = get_ms(argv[0], vty);
713         if (!ms)
714                 return CMD_WARNING;
715         set = &ms->settings;
716
717         if (set->ch_cap == GSM_CAP_SDCCH) {
718                 vty_out(vty, "Basic call is not supported for SDCCH only "
719                         "mobile%s", VTY_NEWLINE);
720                 return CMD_WARNING;
721         }
722
723         number = (char *)argv[1];
724         if (!strcmp(number, "emergency"))
725                 mncc_call(ms, number);
726         else if (!strcmp(number, "answer"))
727                 mncc_answer(ms);
728         else if (!strcmp(number, "hangup"))
729                 mncc_hangup(ms);
730         else if (!strcmp(number, "hold"))
731                 mncc_hold(ms);
732         else {
733                 llist_for_each_entry(abbrev, &set->abbrev, list) {
734                         if (!strcmp(number, abbrev->abbrev)) {
735                                 number = abbrev->number;
736                                 vty_out(vty, "Dialing number '%s'%s", number,
737                                         VTY_NEWLINE);
738                                 break;
739                         }
740                 }
741                 if (vty_check_number(vty, number))
742                         return CMD_WARNING;
743                 mncc_call(ms, number);
744         }
745
746         return CMD_SUCCESS;
747 }
748
749 DEFUN(call_retr, call_retr_cmd, "call MS_NAME retrieve [number]",
750         "Make a call\nName of MS (see \"show ms\")\n"
751         "Retrieve call on hold\nNumber of call to retrieve")
752 {
753         struct osmocom_ms *ms;
754
755         ms = get_ms(argv[0], vty);
756         if (!ms)
757                 return CMD_WARNING;
758
759         mncc_retrieve(ms, (argc > 1) ? atoi(argv[1]) : 0);
760
761         return CMD_SUCCESS;
762 }
763
764 DEFUN(call_dtmf, call_dtmf_cmd, "call MS_NAME dtmf DIGITS",
765         "Make a call\nName of MS (see \"show ms\")\n"
766         "One or more DTMF digits to transmit")
767 {
768         struct osmocom_ms *ms;
769         struct gsm_settings *set;
770
771         ms = get_ms(argv[0], vty);
772         if (!ms)
773                 return CMD_WARNING;
774         set = &ms->settings;
775
776         if (!set->cc_dtmf) {
777                 vty_out(vty, "DTMF not supported, please enable!%s",
778                         VTY_NEWLINE);
779                 return CMD_WARNING;
780         }
781
782         mncc_dtmf(ms, (char *)argv[1]);
783
784         return CMD_SUCCESS;
785 }
786
787 DEFUN(network_show, network_show_cmd, "network show MS_NAME",
788         "Network ...\nShow results of network search (again)\n"
789         "Name of MS (see \"show ms\")")
790 {
791         struct osmocom_ms *ms;
792         struct gsm_settings *set;
793         struct gsm322_plmn *plmn;
794         struct gsm322_plmn_list *temp;
795
796         ms = get_ms(argv[0], vty);
797         if (!ms)
798                 return CMD_WARNING;
799         set = &ms->settings;
800         plmn = &ms->plmn;
801
802         if (set->plmn_mode != PLMN_MODE_AUTO
803          && plmn->state != GSM322_M3_NOT_ON_PLMN) {
804                 vty_out(vty, "Start network search first!%s", VTY_NEWLINE);
805                 return CMD_WARNING;
806         }
807
808         llist_for_each_entry(temp, &plmn->sorted_plmn, entry)
809                 vty_out(vty, " Network %s, %s (%s, %s)%s",
810                         gsm_print_mcc(temp->mcc), gsm_print_mnc(temp->mnc),
811                         gsm_get_mcc(temp->mcc),
812                         gsm_get_mnc(temp->mcc, temp->mnc), VTY_NEWLINE);
813
814         return CMD_SUCCESS;
815 }
816
817 DEFUN(network_search, network_search_cmd, "network search MS_NAME",
818         "Network ...\nTrigger network search\nName of MS (see \"show ms\")")
819 {
820         struct osmocom_ms *ms;
821         struct msgb *nmsg;
822
823         ms = get_ms(argv[0], vty);
824         if (!ms)
825                 return CMD_WARNING;
826
827         nmsg = gsm322_msgb_alloc(GSM322_EVENT_USER_RESEL);
828         if (!nmsg)
829                 return CMD_WARNING;
830         gsm322_plmn_sendmsg(ms, nmsg);
831
832         return CMD_SUCCESS;
833 }
834
835 DEFUN(cfg_gps_enable, cfg_gps_enable_cmd, "gps enable",
836         "GPS receiver")
837 {
838         if (gps_open()) {
839                 gps.enable = 1;
840                 vty_out(vty, "Failed to open GPS device!%s", VTY_NEWLINE);
841                 return CMD_WARNING;
842         }
843         gps.enable = 1;
844
845         return CMD_SUCCESS;
846 }
847
848 DEFUN(cfg_no_gps_enable, cfg_no_gps_enable_cmd, "no gps enable",
849         NO_STR "Disable GPS receiver")
850 {
851         if (gps.enable)
852                 gps_close();
853         gps.enable = 0;
854
855         return CMD_SUCCESS;
856 }
857
858 DEFUN(cfg_gps_device, cfg_gps_device_cmd, "gps device DEVICE",
859         "GPS receiver\nSelect serial device\n"
860         "Full path of serial device including /dev/")
861 {
862         strncpy(gps.device, argv[0], sizeof(gps.device));
863         gps.device[sizeof(gps.device) - 1] = '\0';
864         if (gps.enable) {
865                 gps_close();
866                 if (gps_open()) {
867                         vty_out(vty, "Failed to open GPS device!%s",
868                                 VTY_NEWLINE);
869                         return CMD_WARNING;
870                 }
871         }
872
873         return CMD_SUCCESS;
874 }
875
876 DEFUN(cfg_gps_baud, cfg_gps_baud_cmd, "gps baudrate "
877         "(default|4800|""9600|19200|38400|57600|115200)",
878         "GPS receiver\nSelect baud rate\nDefault, don't modify\n\n\n\n\n\n")
879 {
880         if (argv[0][0] == 'd')
881                 gps.baud = 0;
882         else
883                 gps.baud = atoi(argv[0]);
884         if (gps.enable) {
885                 gps_close();
886                 if (gps_open()) {
887                         gps.enable = 0;
888                         vty_out(vty, "Failed to open GPS device!%s",
889                                 VTY_NEWLINE);
890                         return CMD_WARNING;
891                 }
892         }
893
894         return CMD_SUCCESS;
895 }
896
897 /* per MS config */
898 DEFUN(cfg_ms, cfg_ms_cmd, "ms MS_NAME",
899         "Select a mobile station to configure\nName of MS (see \"show ms\")")
900 {
901         struct osmocom_ms *ms;
902         int found = 0;
903
904         llist_for_each_entry(ms, &ms_list, entity) {
905                 if (!strcmp(ms->name, argv[0])) {
906                         found = 1;
907                         break;
908                 }
909         }
910
911         if (!found) {
912                 if (!vty_reading) {
913                         vty_out(vty, "MS name '%s' does not exits, try "
914                                 "'ms %s create'%s", argv[0], argv[0],
915                                 VTY_NEWLINE);
916                         return CMD_WARNING;
917                 }
918                 ms = mobile_new((char *)argv[0]);
919                 if (!ms) {
920                         vty_out(vty, "Failed to add MS name '%s'%s", argv[0],
921                                 VTY_NEWLINE);
922                         return CMD_WARNING;
923                 }
924         }
925
926         vty->index = ms;
927         vty->node = MS_NODE;
928
929         return CMD_SUCCESS;
930 }
931
932 DEFUN(cfg_ms_create, cfg_ms_create_cmd, "ms MS_NAME create",
933         "Select a mobile station to configure\nName of MS (see \"show ms\")\n"
934         "Create if MS does not exists")
935 {
936         struct osmocom_ms *ms;
937         int found = 0;
938
939         llist_for_each_entry(ms, &ms_list, entity) {
940                 if (!strcmp(ms->name, argv[0])) {
941                         found = 1;
942                         break;
943                 }
944         }
945
946         if (!found) {
947                 ms = mobile_new((char *)argv[0]);
948                 if (!ms) {
949                         vty_out(vty, "Failed to add MS name '%s'%s", argv[0],
950                                 VTY_NEWLINE);
951                         return CMD_WARNING;
952                 }
953         }
954
955         vty->index = ms;
956         vty->node = MS_NODE;
957
958         vty_out(vty, "MS '%s' created, after configuration, do 'no shutdown'%s",
959                 argv[0], VTY_NEWLINE);
960         return CMD_SUCCESS;
961 }
962
963 DEFUN(cfg_ms_rename, cfg_ms_rename_cmd, "ms MS_NAME rename MS_NAME",
964         "Select a mobile station to configure\nName of MS (see \"show ms\")\n"
965         "Rename MS\nNew name of MS")
966 {
967         struct osmocom_ms *ms;
968         int found = 0;
969
970         llist_for_each_entry(ms, &ms_list, entity) {
971                 if (!strcmp(ms->name, argv[0])) {
972                         found = 1;
973                         break;
974                 }
975         }
976
977         if (!found) {
978                 vty_out(vty, "MS name '%s' does not exist%s", argv[0],
979                         VTY_NEWLINE);
980                 return CMD_WARNING;
981         }
982
983         strncpy(ms->name, argv[1], sizeof(ms->name) - 1);
984
985         return CMD_SUCCESS;
986 }
987
988 DEFUN(cfg_no_ms, cfg_no_ms_cmd, "no ms MS_NAME",
989         NO_STR "Select a mobile station to remove\n"
990         "Name of MS (see \"show ms\")")
991 {
992         struct osmocom_ms *ms;
993         int found = 0;
994
995         llist_for_each_entry(ms, &ms_list, entity) {
996                 if (!strcmp(ms->name, argv[0])) {
997                         found = 1;
998                         break;
999                 }
1000         }
1001
1002         if (!found) {
1003                 vty_out(vty, "MS name '%s' does not exist%s", argv[0],
1004                         VTY_NEWLINE);
1005                 return CMD_WARNING;
1006         }
1007
1008         mobile_delete(ms, 1);
1009
1010         return CMD_SUCCESS;
1011 }
1012
1013 #define SUP_WRITE(item, cmd) \
1014         if (sup->item) \
1015                 vty_out(vty, "  %s%s%s", (set->item) ? "" : "no ", cmd, \
1016                         VTY_NEWLINE);
1017
1018 static void config_write_ms_single(struct vty *vty, struct osmocom_ms *ms)
1019 {
1020         struct gsm_settings *set = &ms->settings;
1021         struct gsm_support *sup = &ms->support;
1022         struct gsm_settings_abbrev *abbrev;
1023
1024         vty_out(vty, "ms %s%s", ms->name, VTY_NEWLINE);
1025         vty_out(vty, " layer2-socket %s%s", set->layer2_socket_path,
1026                 VTY_NEWLINE);
1027         vty_out(vty, " sap-socket %s%s", set->sap_socket_path, VTY_NEWLINE);
1028         switch(set->sim_type) {
1029                 case GSM_SIM_TYPE_NONE:
1030                 vty_out(vty, " sim none%s", VTY_NEWLINE);
1031                 break;
1032                 case GSM_SIM_TYPE_READER:
1033                 vty_out(vty, " sim reader%s", VTY_NEWLINE);
1034                 break;
1035                 case GSM_SIM_TYPE_TEST:
1036                 vty_out(vty, " sim test%s", VTY_NEWLINE);
1037                 break;
1038         }
1039         vty_out(vty, " network-selection-mode %s%s", (set->plmn_mode
1040                         == PLMN_MODE_AUTO) ? "auto" : "manual", VTY_NEWLINE);
1041         vty_out(vty, " imei %s %s%s", set->imei,
1042                 set->imeisv + strlen(set->imei), VTY_NEWLINE);
1043         if (set->imei_random)
1044                 vty_out(vty, " imei-random %d%s", set->imei_random,
1045                         VTY_NEWLINE);
1046         else
1047                 vty_out(vty, " imei-fixed%s", VTY_NEWLINE);
1048         if (set->emergency_imsi[0])
1049                 vty_out(vty, " emergency-imsi %s%s", set->emergency_imsi,
1050                         VTY_NEWLINE);
1051         else
1052                 vty_out(vty, " no emergency-imsi%s", VTY_NEWLINE);
1053         vty_out(vty, " %scall-waiting%s", (set->cw) ? "" : "no ", VTY_NEWLINE);
1054         vty_out(vty, " %sauto-answer%s", (set->auto_answer) ? "" : "no ",
1055                 VTY_NEWLINE);
1056         vty_out(vty, " %sclip%s", (set->clip) ? "" : "no ", VTY_NEWLINE);
1057         vty_out(vty, " %sclir%s", (set->clir) ? "" : "no ", VTY_NEWLINE);
1058         if (set->alter_tx_power)
1059                 if (set->alter_tx_power_value)
1060                         vty_out(vty, " tx-power %d%s",
1061                                 set->alter_tx_power_value, VTY_NEWLINE);
1062                 else
1063                         vty_out(vty, " tx-power full%s", VTY_NEWLINE);
1064         else
1065                 vty_out(vty, " tx-power auto%s", VTY_NEWLINE);
1066         if (set->alter_delay)
1067                 vty_out(vty, " simulated-delay %d%s", set->alter_delay,
1068                         VTY_NEWLINE);
1069         else
1070                 vty_out(vty, " no simulated-delay%s", VTY_NEWLINE);
1071         if (set->stick)
1072                 vty_out(vty, " stick %d%s", set->stick_arfcn,
1073                         VTY_NEWLINE);
1074         else
1075                 vty_out(vty, " no stick%s", VTY_NEWLINE);
1076         if (set->no_lupd)
1077                 vty_out(vty, " no location-updating%s", VTY_NEWLINE);
1078         else
1079                 vty_out(vty, " location-updating%s", VTY_NEWLINE);
1080         if (set->full_v1 || set->full_v2 || set->full_v3) {
1081                 /* mandatory anyway */
1082                 vty_out(vty, " codec full-speed%s%s",
1083                         (!set->half_prefer) ? " prefer" : "",
1084                         VTY_NEWLINE);
1085         }
1086         if (set->half_v1 || set->half_v3) {
1087                 if (set->half)
1088                         vty_out(vty, " codec half-speed%s%s",
1089                                 (set->half_prefer) ? " prefer" : "",
1090                                 VTY_NEWLINE);
1091                 else
1092                         vty_out(vty, " no codec half-speed%s", VTY_NEWLINE);
1093         }
1094         if (llist_empty(&set->abbrev))
1095                 vty_out(vty, " no abbrev%s", VTY_NEWLINE);
1096         else {
1097                 llist_for_each_entry(abbrev, &set->abbrev, list)
1098                         vty_out(vty, " abbrev %s %s%s%s%s", abbrev->abbrev,
1099                                 abbrev->number, (abbrev->name[0]) ? " " : "",
1100                                 abbrev->name, VTY_NEWLINE);
1101         }
1102         vty_out(vty, " support%s", VTY_NEWLINE);
1103         SUP_WRITE(sms_ptp, "sms");
1104         SUP_WRITE(a5_1, "a5/1");
1105         SUP_WRITE(a5_2, "a5/2");
1106         SUP_WRITE(a5_3, "a5/3");
1107         SUP_WRITE(a5_4, "a5/4");
1108         SUP_WRITE(a5_5, "a5/5");
1109         SUP_WRITE(a5_6, "a5/6");
1110         SUP_WRITE(a5_7, "a5/7");
1111         SUP_WRITE(p_gsm, "p-gsm");
1112         SUP_WRITE(e_gsm, "e-gsm");
1113         SUP_WRITE(r_gsm, "r-gsm");
1114         SUP_WRITE(dcs, "dcs");
1115         vty_out(vty, "  class-900 %d%s", set->class_900, VTY_NEWLINE);
1116         vty_out(vty, "  class-dcs %d%s", set->class_dcs, VTY_NEWLINE);
1117         switch (set->ch_cap) {
1118         case GSM_CAP_SDCCH:
1119                 vty_out(vty, "  channel-capability sdcch%s", VTY_NEWLINE);
1120                 break;
1121         case GSM_CAP_SDCCH_TCHF:
1122                 vty_out(vty, "  channel-capability sdcch+tchf%s", VTY_NEWLINE);
1123                 break;
1124         case GSM_CAP_SDCCH_TCHF_TCHH:
1125                 vty_out(vty, "  channel-capability sdcch+tchf+tchh%s",
1126                         VTY_NEWLINE);
1127                 break;
1128         }
1129         SUP_WRITE(full_v1, "full-speech-v1");
1130         SUP_WRITE(full_v2, "full-speech-v2");
1131         SUP_WRITE(full_v3, "full-speech-v3");
1132         SUP_WRITE(half_v1, "half-speech-v1");
1133         SUP_WRITE(half_v3, "half-speech-v3");
1134         vty_out(vty, "  min-rxlev %d%s", set->min_rxlev_db, VTY_NEWLINE);
1135         vty_out(vty, "  dsc-max %d%s", set->dsc_max, VTY_NEWLINE);
1136         vty_out(vty, " exit%s", VTY_NEWLINE);
1137         vty_out(vty, " test-sim%s", VTY_NEWLINE);
1138         vty_out(vty, "  imsi %s%s", set->test_imsi, VTY_NEWLINE);
1139         switch (set->test_ki_type) {
1140         case GSM_SIM_KEY_XOR:
1141                 vty_out(vty, "  ki xor %s%s", hexdump(set->test_ki, 12),
1142                         VTY_NEWLINE);
1143                 break;
1144         case GSM_SIM_KEY_COMP128:
1145                 vty_out(vty, "  ki comp128 %s%s", hexdump(set->test_ki, 16),
1146                         VTY_NEWLINE);
1147                 break;
1148         }
1149         vty_out(vty, "  %sbarred-access%s", (set->test_barr) ? "" : "no ",
1150                 VTY_NEWLINE);
1151         if (set->test_rplmn_valid) {
1152                 vty_out(vty, "  rplmn %s %s",
1153                         gsm_print_mcc(set->test_rplmn_mcc),
1154                         gsm_print_mnc(set->test_rplmn_mnc));
1155                 if (set->test_lac > 0x0000 && set->test_lac < 0xfffe)
1156                         vty_out(vty, " 0x%04x", set->test_lac);
1157                 if (set->test_tmsi != 0xffffffff)
1158                         vty_out(vty, " 0x%08x", set->test_tmsi);
1159                 vty_out(vty, "%s", VTY_NEWLINE);
1160         } else
1161                 vty_out(vty, "  no rplmn%s", VTY_NEWLINE);
1162         vty_out(vty, "  hplmn-search %s%s", (set->test_always) ? "everywhere"
1163                         : "foreign-country", VTY_NEWLINE);
1164         vty_out(vty, " exit%s", VTY_NEWLINE);
1165         vty_out(vty, " %sshutdown%s", (ms->shutdown) ? "" : "no ",
1166                 VTY_NEWLINE);
1167         vty_out(vty, "exit%s", VTY_NEWLINE);
1168         vty_out(vty, "!%s", VTY_NEWLINE);
1169 }
1170
1171 static int config_write_ms(struct vty *vty)
1172 {
1173         struct osmocom_ms *ms;
1174
1175         vty_out(vty, "gps device %s%s", gps.device, VTY_NEWLINE);
1176         if (gps.baud)
1177                 vty_out(vty, "gps baudrate %d%s", gps.baud, VTY_NEWLINE);
1178         else
1179                 vty_out(vty, "gps baudrate default%s", VTY_NEWLINE);
1180         vty_out(vty, "%sgps enable%s", (gps.enable) ? "" : "no ", VTY_NEWLINE);
1181         vty_out(vty, "!%s", VTY_NEWLINE);
1182
1183         llist_for_each_entry(ms, &ms_list, entity)
1184                 config_write_ms_single(vty, ms);
1185
1186         return CMD_SUCCESS;
1187 }
1188
1189 DEFUN(cfg_ms_layer2, cfg_ms_layer2_cmd, "layer2-socket PATH",
1190         "Define socket path to connect between layer 2 and layer 1\n"
1191         "Unix socket, default '/tmp/osmocom_l2'")
1192 {
1193         struct osmocom_ms *ms = vty->index;
1194         struct gsm_settings *set = &ms->settings;
1195
1196         strncpy(set->layer2_socket_path, argv[0],
1197                 sizeof(set->layer2_socket_path) - 1);
1198
1199         vty_restart(vty, ms);
1200         return CMD_SUCCESS;
1201 }
1202
1203 DEFUN(cfg_ms_sap, cfg_ms_sap_cmd, "sap-socket PATH",
1204         "Define socket path to connect to SIM reader\n"
1205         "Unix socket, default '/tmp/osmocom_sap'")
1206 {
1207         struct osmocom_ms *ms = vty->index;
1208         struct gsm_settings *set = &ms->settings;
1209
1210         strncpy(set->sap_socket_path, argv[0],
1211                 sizeof(set->sap_socket_path) - 1);
1212
1213         vty_restart(vty, ms);
1214         return CMD_SUCCESS;
1215 }
1216
1217 DEFUN(cfg_ms_sim, cfg_ms_sim_cmd, "sim (none|reader|test)",
1218         "Set SIM card type when powering on\nNo SIM interted\n"
1219         "Use SIM from reader\nTest SIM inserted")
1220 {
1221         struct osmocom_ms *ms = vty->index;
1222         struct gsm_settings *set = &ms->settings;
1223
1224         switch (argv[0][0]) {
1225         case 'n':
1226                 set->sim_type = GSM_SIM_TYPE_NONE;
1227                 break;
1228         case 'r':
1229                 set->sim_type = GSM_SIM_TYPE_READER;
1230                 break;
1231         case 't':
1232                 set->sim_type = GSM_SIM_TYPE_TEST;
1233                 break;
1234         default:
1235                 vty_out(vty, "unknown SIM type%s", VTY_NEWLINE);
1236                 return CMD_WARNING;
1237         }
1238
1239         vty_restart(vty, ms);
1240         return CMD_SUCCESS;
1241 }
1242
1243 DEFUN(cfg_ms_mode, cfg_ms_mode_cmd, "network-selection-mode (auto|manual)",
1244         "Set network selection mode\nAutomatic network selection\n"
1245         "Manual network selection")
1246 {
1247         struct osmocom_ms *ms = vty->index;
1248         struct gsm_settings *set = &ms->settings;
1249         struct msgb *nmsg;
1250
1251         if (!ms->plmn.state) {
1252                 if (argv[0][0] == 'a')
1253                         set->plmn_mode = PLMN_MODE_AUTO;
1254                 else
1255                         set->plmn_mode = PLMN_MODE_MANUAL;
1256
1257                 return CMD_SUCCESS;
1258         }
1259         if (argv[0][0] == 'a')
1260                 nmsg = gsm322_msgb_alloc(GSM322_EVENT_SEL_AUTO);
1261         else
1262                 nmsg = gsm322_msgb_alloc(GSM322_EVENT_SEL_MANUAL);
1263         if (!nmsg)
1264                 return CMD_WARNING;
1265         gsm322_plmn_sendmsg(ms, nmsg);
1266
1267         return CMD_SUCCESS;
1268 }
1269
1270 DEFUN(cfg_ms_imei, cfg_ms_imei_cmd, "imei IMEI [SV]",
1271         "Set IMEI (enter without control digit)\n15 Digits IMEI\n"
1272         "Software version digit")
1273 {
1274         struct osmocom_ms *ms = vty->index;
1275         struct gsm_settings *set = &ms->settings;
1276         char *error, *sv = "0";
1277
1278         if (argc >= 2)
1279                 sv = (char *)argv[1];
1280
1281         error = gsm_check_imei(argv[0], sv);
1282         if (error) {
1283                 vty_out(vty, "%s%s", error, VTY_NEWLINE);
1284                 return CMD_WARNING;
1285         }
1286
1287         strcpy(set->imei, argv[0]);
1288         strcpy(set->imeisv, argv[0]);
1289         strcpy(set->imeisv + 15, sv);
1290
1291         return CMD_SUCCESS;
1292 }
1293
1294 DEFUN(cfg_ms_imei_fixed, cfg_ms_imei_fixed_cmd, "imei-fixed",
1295         "Use fixed IMEI on every power on")
1296 {
1297         struct osmocom_ms *ms = vty->index;
1298         struct gsm_settings *set = &ms->settings;
1299
1300         set->imei_random = 0;
1301
1302         vty_restart(vty, ms);
1303         return CMD_SUCCESS;
1304 }
1305
1306 DEFUN(cfg_ms_imei_random, cfg_ms_imei_random_cmd, "imei-random <0-15>",
1307         "Use random IMEI on every power on\n"
1308         "Number of trailing digits to randomize")
1309 {
1310         struct osmocom_ms *ms = vty->index;
1311         struct gsm_settings *set = &ms->settings;
1312
1313         set->imei_random = atoi(argv[0]);
1314
1315         vty_restart(vty, ms);
1316         return CMD_SUCCESS;
1317 }
1318
1319 DEFUN(cfg_ms_emerg_imsi, cfg_ms_emerg_imsi_cmd, "emergency-imsi IMSI",
1320         "Use special IMSI for emergency calls\n15 digits IMSI")
1321 {
1322         struct osmocom_ms *ms = vty->index;
1323         struct gsm_settings *set = &ms->settings;
1324         char *error;
1325
1326         error = gsm_check_imsi(argv[0]);
1327         if (error) {
1328                 vty_out(vty, "%s%s", error, VTY_NEWLINE);
1329                 return CMD_WARNING;
1330         }
1331         strcpy(set->emergency_imsi, argv[0]);
1332
1333         return CMD_SUCCESS;
1334 }
1335
1336 DEFUN(cfg_ms_no_emerg_imsi, cfg_ms_no_emerg_imsi_cmd, "no emergency-imsi",
1337         NO_STR "Use IMSI of SIM or IMEI for emergency calls")
1338 {
1339         struct osmocom_ms *ms = vty->index;
1340         struct gsm_settings *set = &ms->settings;
1341
1342         set->emergency_imsi[0] = '\0';
1343
1344         return CMD_SUCCESS;
1345 }
1346
1347 DEFUN(cfg_no_cw, cfg_ms_no_cw_cmd, "no call-waiting",
1348         NO_STR "Disallow waiting calls")
1349 {
1350         struct osmocom_ms *ms = vty->index;
1351         struct gsm_settings *set = &ms->settings;
1352
1353         set->cw = 0;
1354
1355         return CMD_SUCCESS;
1356 }
1357
1358 DEFUN(cfg_cw, cfg_ms_cw_cmd, "call-waiting",
1359         "Allow waiting calls")
1360 {
1361         struct osmocom_ms *ms = vty->index;
1362         struct gsm_settings *set = &ms->settings;
1363
1364         set->cw = 1;
1365
1366         return CMD_SUCCESS;
1367 }
1368
1369 DEFUN(cfg_no_auto_answer, cfg_ms_no_auto_answer_cmd, "no auto-answer",
1370         NO_STR "Disable auto-answering calls")
1371 {
1372         struct osmocom_ms *ms = vty->index;
1373         struct gsm_settings *set = &ms->settings;
1374
1375         set->auto_answer = 0;
1376
1377         return CMD_SUCCESS;
1378 }
1379
1380 DEFUN(cfg_auto_answer, cfg_ms_auto_answer_cmd, "auto-answer",
1381         "Enable auto-answering calls")
1382 {
1383         struct osmocom_ms *ms = vty->index;
1384         struct gsm_settings *set = &ms->settings;
1385
1386         set->auto_answer = 1;
1387
1388         return CMD_SUCCESS;
1389 }
1390
1391 DEFUN(cfg_clip, cfg_ms_clip_cmd, "clip",
1392         "Force caller ID presentation")
1393 {
1394         struct osmocom_ms *ms = vty->index;
1395         struct gsm_settings *set = &ms->settings;
1396
1397         set->clip = 1;
1398         set->clir = 0;
1399
1400         return CMD_SUCCESS;
1401 }
1402
1403 DEFUN(cfg_clir, cfg_ms_clir_cmd, "clir",
1404         "Force caller ID restriction")
1405 {
1406         struct osmocom_ms *ms = vty->index;
1407         struct gsm_settings *set = &ms->settings;
1408
1409         set->clip = 0;
1410         set->clir = 1;
1411
1412         return CMD_SUCCESS;
1413 }
1414
1415 DEFUN(cfg_no_clip, cfg_ms_no_clip_cmd, "no clip",
1416         NO_STR "Disable forcing of caller ID presentation")
1417 {
1418         struct osmocom_ms *ms = vty->index;
1419         struct gsm_settings *set = &ms->settings;
1420
1421         set->clip = 0;
1422
1423         return CMD_SUCCESS;
1424 }
1425
1426 DEFUN(cfg_no_clir, cfg_ms_no_clir_cmd, "no clir",
1427         NO_STR "Disable forcing of caller ID restriction")
1428 {
1429         struct osmocom_ms *ms = vty->index;
1430         struct gsm_settings *set = &ms->settings;
1431
1432         set->clir = 0;
1433
1434         return CMD_SUCCESS;
1435 }
1436
1437 DEFUN(cfg_ms_tx_power, cfg_ms_tx_power_cmd, "tx-power (auto|full)",
1438         "Set the way to choose transmit power\nControlled by BTS\n"
1439         "Always full power\nFixed GSM power value if supported")
1440 {
1441         struct osmocom_ms *ms = vty->index;
1442         struct gsm_settings *set = &ms->settings;
1443
1444         switch (argv[0][0]) {
1445         case 'a':
1446                 set->alter_tx_power = 0;
1447                 break;
1448         case 'f':
1449                 set->alter_tx_power = 1;
1450                 set->alter_tx_power_value = 0;
1451                 break;
1452         }
1453
1454         return CMD_SUCCESS;
1455 }
1456
1457 DEFUN(cfg_ms_tx_power_val, cfg_ms_tx_power_val_cmd, "tx-power <0-31>",
1458         "Set the way to choose transmit power\n"
1459         "Fixed GSM power value if supported")
1460 {
1461         struct osmocom_ms *ms = vty->index;
1462         struct gsm_settings *set = &ms->settings;
1463
1464         set->alter_tx_power = 1;
1465         set->alter_tx_power_value = atoi(argv[0]);
1466
1467         return CMD_SUCCESS;
1468 }
1469
1470 DEFUN(cfg_ms_sim_delay, cfg_ms_sim_delay_cmd, "simulated-delay <-128-127>",
1471         "Simulate a lower or higher distance from the BTS\n"
1472         "Delay in half bits (distance in 553.85 meter steps)")
1473 {
1474         struct osmocom_ms *ms = vty->index;
1475         struct gsm_settings *set = &ms->settings;
1476
1477         set->alter_delay = atoi(argv[0]);
1478         gsm48_rr_alter_delay(ms);
1479
1480         return CMD_SUCCESS;
1481 }
1482
1483 DEFUN(cfg_ms_no_sim_delay, cfg_ms_no_sim_delay_cmd, "no simulated-delay",
1484         NO_STR "Do not simulate a lower or higher distance from the BTS")
1485 {
1486         struct osmocom_ms *ms = vty->index;
1487         struct gsm_settings *set = &ms->settings;
1488
1489         set->alter_delay = 0;
1490         gsm48_rr_alter_delay(ms);
1491
1492         return CMD_SUCCESS;
1493 }
1494
1495 DEFUN(cfg_ms_stick, cfg_ms_stick_cmd, "stick <0-1023>",
1496         "Stick to the given cell\nARFCN of the cell to stick to")
1497 {
1498         struct osmocom_ms *ms = vty->index;
1499         struct gsm_settings *set = &ms->settings;
1500
1501         set->stick = 1;
1502         set->stick_arfcn = atoi(argv[0]);
1503
1504         return CMD_SUCCESS;
1505 }
1506
1507 DEFUN(cfg_ms_no_stick, cfg_ms_no_stick_cmd, "no stick",
1508         NO_STR "Do not stick to any cell")
1509 {
1510         struct osmocom_ms *ms = vty->index;
1511         struct gsm_settings *set = &ms->settings;
1512
1513         set->stick = 0;
1514
1515         return CMD_SUCCESS;
1516 }
1517
1518 DEFUN(cfg_ms_lupd, cfg_ms_lupd_cmd, "location-updating",
1519         "Allow location updating")
1520 {
1521         struct osmocom_ms *ms = vty->index;
1522         struct gsm_settings *set = &ms->settings;
1523
1524         set->no_lupd = 0;
1525
1526         return CMD_SUCCESS;
1527 }
1528
1529 DEFUN(cfg_ms_no_lupd, cfg_ms_no_lupd_cmd, "no location-updating",
1530         NO_STR "Do not allow location updating")
1531 {
1532         struct osmocom_ms *ms = vty->index;
1533         struct gsm_settings *set = &ms->settings;
1534
1535         set->no_lupd = 1;
1536
1537         return CMD_SUCCESS;
1538 }
1539
1540 DEFUN(cfg_codec_full, cfg_ms_codec_full_cmd, "codec full-speed",
1541         "Enable codec\nFull speed speech codec")
1542 {
1543         struct osmocom_ms *ms = vty->index;
1544         struct gsm_settings *set = &ms->settings;
1545
1546         if (!set->full_v1 && !set->full_v2 && !set->full_v3) {
1547                 vty_out(vty, "Full-rate codec not supported%s", VTY_NEWLINE);
1548                 return CMD_WARNING;
1549         }
1550
1551         return CMD_SUCCESS;
1552 }
1553
1554 DEFUN(cfg_codec_full_pref, cfg_ms_codec_full_pref_cmd, "codec full-speed "
1555         "prefer",
1556         "Enable codec\nFull speed speech codec\nPrefer this codec")
1557 {
1558         struct osmocom_ms *ms = vty->index;
1559         struct gsm_settings *set = &ms->settings;
1560
1561         if (!set->full_v1 && !set->full_v2 && !set->full_v3) {
1562                 vty_out(vty, "Full-rate codec not supported%s", VTY_NEWLINE);
1563                 return CMD_WARNING;
1564         }
1565
1566         set->half_prefer = 0;
1567
1568         return CMD_SUCCESS;
1569 }
1570
1571 DEFUN(cfg_codec_half, cfg_ms_codec_half_cmd, "codec half-speed",
1572         "Enable codec\nHalf speed speech codec")
1573 {
1574         struct osmocom_ms *ms = vty->index;
1575         struct gsm_settings *set = &ms->settings;
1576
1577         if (!set->half_v1 && !set->half_v3) {
1578                 vty_out(vty, "Half-rate codec not supported%s", VTY_NEWLINE);
1579                 return CMD_WARNING;
1580         }
1581
1582         set->half = 1;
1583
1584         return CMD_SUCCESS;
1585 }
1586
1587 DEFUN(cfg_codec_half_pref, cfg_ms_codec_half_pref_cmd, "codec half-speed "
1588         "prefer",
1589         "Enable codec\nHalf speed speech codec\nPrefer this codec")
1590 {
1591         struct osmocom_ms *ms = vty->index;
1592         struct gsm_settings *set = &ms->settings;
1593
1594         if (!set->half_v1 && !set->half_v3) {
1595                 vty_out(vty, "Half-rate codec not supported%s", VTY_NEWLINE);
1596                 return CMD_WARNING;
1597         }
1598
1599         set->half = 1;
1600         set->half_prefer = 1;
1601
1602         return CMD_SUCCESS;
1603 }
1604
1605 DEFUN(cfg_no_codec_half, cfg_ms_no_codec_half_cmd, "no codec half-speed",
1606         NO_STR "Disable codec\nHalf speed speech codec")
1607 {
1608         struct osmocom_ms *ms = vty->index;
1609         struct gsm_settings *set = &ms->settings;
1610
1611         if (!set->half_v1 && !set->half_v3) {
1612                 vty_out(vty, "Half-rate codec not supported%s", VTY_NEWLINE);
1613                 return CMD_WARNING;
1614         }
1615
1616         set->half = 0;
1617         set->half_prefer = 0;
1618
1619         return CMD_SUCCESS;
1620 }
1621
1622 DEFUN(cfg_abbrev, cfg_ms_abbrev_cmd, "abbrev ABBREVIATION NUMBER [name]",
1623         "Store given abbreviation number\n1-3 digits abbreviation\n"
1624         "Number to store for the abbreviation "
1625         "(Use digits '0123456789*#abc', and '+' to dial international)\n"
1626         "Name of the abbreviation")
1627 {
1628         struct osmocom_ms *ms = vty->index;
1629         struct gsm_settings *set = &ms->settings;
1630         struct gsm_settings_abbrev *abbrev;
1631         int i;
1632
1633         llist_for_each_entry(abbrev, &set->abbrev, list) {
1634                 if (!strcmp(argv[0], abbrev->abbrev)) {
1635                         vty_out(vty, "Given abbreviation '%s' already stored, "
1636                                 "delete first!%s", argv[0], VTY_NEWLINE);
1637                         return CMD_WARNING;
1638                 }
1639         }
1640
1641         if (strlen(argv[0]) >= sizeof(abbrev->abbrev)) {
1642                 vty_out(vty, "Given abbreviation too long%s", VTY_NEWLINE);
1643                 return CMD_WARNING;
1644         }
1645
1646         for (i = 0; i < strlen(argv[0]); i++) {
1647                 if (argv[0][i] < '0' || argv[0][i] > '9') {
1648                         vty_out(vty, "Given abbreviation must have digits "
1649                                 "0..9 only!%s", VTY_NEWLINE);
1650                         return CMD_WARNING;
1651                 }
1652         }
1653
1654         if (vty_check_number(vty, argv[1]))
1655                 return CMD_WARNING;
1656
1657         abbrev = talloc_zero(l23_ctx, struct gsm_settings_abbrev);
1658         if (!abbrev) {
1659                 vty_out(vty, "No Memory!%s", VTY_NEWLINE);
1660                 return CMD_WARNING;
1661         }
1662         llist_add_tail(&abbrev->list, &set->abbrev);
1663         strncpy(abbrev->abbrev, argv[0], sizeof(abbrev->abbrev) - 1);
1664         strncpy(abbrev->number, argv[1], sizeof(abbrev->number) - 1);
1665         if (argc >= 3)
1666                 strncpy(abbrev->name, argv[2], sizeof(abbrev->name) - 1);
1667
1668         return CMD_SUCCESS;
1669 }
1670
1671 DEFUN(cfg_no_abbrev, cfg_ms_no_abbrev_cmd, "no abbrev [abbreviation]",
1672         NO_STR "Remove given abbreviation number or all numbers\n"
1673         "Abbreviation number to remove")
1674 {
1675         struct osmocom_ms *ms = vty->index;
1676         struct gsm_settings *set = &ms->settings;
1677         struct gsm_settings_abbrev *abbrev, *abbrev2;
1678         uint8_t deleted = 0;
1679
1680         llist_for_each_entry_safe(abbrev, abbrev2, &set->abbrev, list) {
1681                 if (argc < 1 || !strcmp(argv[0], abbrev->abbrev)) {
1682                         llist_del(&abbrev->list);
1683                         deleted = 1;
1684                 }
1685         }
1686
1687         if (argc >= 1 && !deleted) {
1688                 vty_out(vty, "Given abbreviation '%s' not found!%s",
1689                         argv[0], VTY_NEWLINE);
1690                 return CMD_WARNING;
1691         }
1692
1693         return CMD_SUCCESS;
1694 }
1695
1696 static int config_write_dummy(struct vty *vty)
1697 {
1698         return CMD_SUCCESS;
1699 }
1700
1701 /* per support config */
1702 DEFUN(cfg_ms_support, cfg_ms_support_cmd, "support",
1703         "Define supported features")
1704 {
1705         vty->node = SUPPORT_NODE;
1706
1707         return CMD_SUCCESS;
1708 }
1709
1710 #define SUP_EN(cfg, cfg_cmd, item, cmd, desc, restart) \
1711 DEFUN(cfg, cfg_cmd, cmd, "Enable " desc "support") \
1712 { \
1713         struct osmocom_ms *ms = vty->index; \
1714         struct gsm_settings *set = &ms->settings; \
1715         struct gsm_support *sup = &ms->support; \
1716         if (!sup->item) { \
1717                 vty_out(vty, desc " not supported%s", VTY_NEWLINE); \
1718                 if (vty_reading) \
1719                         return CMD_SUCCESS; \
1720                 return CMD_WARNING; \
1721         } \
1722         if (restart) \
1723                 vty_restart(vty, ms); \
1724         set->item = 1; \
1725         return CMD_SUCCESS; \
1726 }
1727
1728 #define SUP_DI(cfg, cfg_cmd, item, cmd, desc, restart) \
1729 DEFUN(cfg, cfg_cmd, "no " cmd, NO_STR "Disable " desc " support") \
1730 { \
1731         struct osmocom_ms *ms = vty->index; \
1732         struct gsm_settings *set = &ms->settings; \
1733         struct gsm_support *sup = &ms->support; \
1734         if (!sup->item) { \
1735                 vty_out(vty, desc " not supported%s", VTY_NEWLINE); \
1736                 if (vty_reading) \
1737                         return CMD_SUCCESS; \
1738                 return CMD_WARNING; \
1739         } \
1740         if (restart) \
1741                 vty_restart(vty, ms); \
1742         set->item = 0; \
1743         return CMD_SUCCESS; \
1744 }
1745
1746 #define SET_EN(cfg, cfg_cmd, item, cmd, desc, restart) \
1747 DEFUN(cfg, cfg_cmd, cmd, "Enable " desc "support") \
1748 { \
1749         struct osmocom_ms *ms = vty->index; \
1750         struct gsm_settings *set = &ms->settings; \
1751         if (restart) \
1752                 vty_restart(vty, ms); \
1753         set->item = 1; \
1754         return CMD_SUCCESS; \
1755 }
1756
1757 #define SET_DI(cfg, cfg_cmd, item, cmd, desc, restart) \
1758 DEFUN(cfg, cfg_cmd, "no " cmd, NO_STR "Disable " desc " support") \
1759 { \
1760         struct osmocom_ms *ms = vty->index; \
1761         struct gsm_settings *set = &ms->settings; \
1762         if (restart) \
1763                 vty_restart(vty, ms); \
1764         set->item = 0; \
1765         return CMD_SUCCESS; \
1766 }
1767
1768 SET_EN(cfg_ms_sup_dtmf, cfg_ms_sup_dtmf_cmd, cc_dtmf, "dtmf", "DTMF", 0);
1769 SET_DI(cfg_ms_sup_no_dtmf, cfg_ms_sup_no_dtmf_cmd, cc_dtmf, "dtmf", "DTMF", 0);
1770 SUP_EN(cfg_ms_sup_sms, cfg_ms_sup_sms_cmd, sms_ptp, "sms", "SMS", 0);
1771 SUP_DI(cfg_ms_sup_no_sms, cfg_ms_sup_no_sms_cmd, sms_ptp, "sms", "SMS", 0);
1772 SUP_EN(cfg_ms_sup_a5_1, cfg_ms_sup_a5_1_cmd, a5_1, "a5/1", "A5/1", 0);
1773 SUP_DI(cfg_ms_sup_no_a5_1, cfg_ms_sup_no_a5_1_cmd, a5_1, "a5/1", "A5/1", 0);
1774 SUP_EN(cfg_ms_sup_a5_2, cfg_ms_sup_a5_2_cmd, a5_2, "a5/2", "A5/2", 0);
1775 SUP_DI(cfg_ms_sup_no_a5_2, cfg_ms_sup_no_a5_2_cmd, a5_2, "a5/2", "A5/2", 0);
1776 SUP_EN(cfg_ms_sup_a5_3, cfg_ms_sup_a5_3_cmd, a5_3, "a5/3", "A5/3", 0);
1777 SUP_DI(cfg_ms_sup_no_a5_3, cfg_ms_sup_no_a5_3_cmd, a5_3, "a5/3", "A5/3", 0);
1778 SUP_EN(cfg_ms_sup_a5_4, cfg_ms_sup_a5_4_cmd, a5_4, "a5/4", "A5/4", 0);
1779 SUP_DI(cfg_ms_sup_no_a5_4, cfg_ms_sup_no_a5_4_cmd, a5_4, "a5/4", "A5/4", 0);
1780 SUP_EN(cfg_ms_sup_a5_5, cfg_ms_sup_a5_5_cmd, a5_5, "a5/5", "A5/5", 0);
1781 SUP_DI(cfg_ms_sup_no_a5_5, cfg_ms_sup_no_a5_5_cmd, a5_5, "a5/5", "A5/5", 0);
1782 SUP_EN(cfg_ms_sup_a5_6, cfg_ms_sup_a5_6_cmd, a5_6, "a5/6", "A5/6", 0);
1783 SUP_DI(cfg_ms_sup_no_a5_6, cfg_ms_sup_no_a5_6_cmd, a5_6, "a5/6", "A5/6", 0);
1784 SUP_EN(cfg_ms_sup_a5_7, cfg_ms_sup_a5_7_cmd, a5_7, "a5/7", "A5/7", 0);
1785 SUP_DI(cfg_ms_sup_no_a5_7, cfg_ms_sup_no_a5_7_cmd, a5_7, "a5/7", "A5/7", 1);
1786 SUP_EN(cfg_ms_sup_p_gsm, cfg_ms_sup_p_gsm_cmd, p_gsm, "p-gsm", "P-GSM (900)",
1787         1);
1788 SUP_DI(cfg_ms_sup_no_p_gsm, cfg_ms_sup_no_p_gsm_cmd, p_gsm, "p-gsm",
1789         "P-GSM (900)", 1);
1790 SUP_EN(cfg_ms_sup_e_gsm, cfg_ms_sup_e_gsm_cmd, e_gsm, "e-gsm", "E-GSM (850)",
1791         1);
1792 SUP_DI(cfg_ms_sup_no_e_gsm, cfg_ms_sup_no_e_gsm_cmd, e_gsm, "e-gsm",
1793         "E-GSM (850)", 1);
1794 SUP_EN(cfg_ms_sup_r_gsm, cfg_ms_sup_r_gsm_cmd, r_gsm, "r-gsm", "R-GSM (850)",
1795         1);
1796 SUP_DI(cfg_ms_sup_no_r_gsm, cfg_ms_sup_no_r_gsm_cmd, r_gsm, "r-gsm",
1797         "R-GSM (850)", 1);
1798 SUP_EN(cfg_ms_sup_dcs, cfg_ms_sup_dcs_cmd, dcs, "dcs", "DCS (1800)", 0);
1799 SUP_DI(cfg_ms_sup_no_dcs, cfg_ms_sup_no_dcs_cmd, dcs, "dcs", "DCS (1800)", 0);
1800
1801 DEFUN(cfg_ms_sup_class_900, cfg_ms_sup_class_900_cmd, "class-900 (1|2|3|4|5)",
1802         "Select power class for GSM 850/900\n"
1803         "20 Watts\n"
1804         "8 Watts\n"
1805         "5 Watts\n"
1806         "2 Watts\n"
1807         "0.8 Watts")
1808 {
1809         struct osmocom_ms *ms = vty->index;
1810         struct gsm_settings *set = &ms->settings;
1811         struct gsm_support *sup = &ms->support;
1812
1813         set->class_900 = atoi(argv[0]);
1814
1815         if (set->class_900 < sup->class_900 && !vty_reading)
1816                 vty_out(vty, "You selected an higher class than supported "
1817                         " by hardware!%s", VTY_NEWLINE);
1818
1819         return CMD_SUCCESS;
1820 }
1821
1822 DEFUN(cfg_ms_sup_class_dcs, cfg_ms_sup_class_dcs_cmd, "class-dcs (1|2|3)",
1823         "Select power class for DCS 1800\n"
1824         "1 Watt\n"
1825         "0.25 Watts\n"
1826         "4 Watts")
1827 {
1828         struct osmocom_ms *ms = vty->index;
1829         struct gsm_settings *set = &ms->settings;
1830         struct gsm_support *sup = &ms->support;
1831
1832         set->class_dcs = atoi(argv[0]);
1833
1834         if (((set->class_dcs + 1) & 3) < ((sup->class_dcs + 1) & 3)
1835          && !vty_reading)
1836                 vty_out(vty, "You selected an higher class than supported "
1837                         " by hardware!%s", VTY_NEWLINE);
1838
1839         return CMD_SUCCESS;
1840 }
1841
1842 DEFUN(cfg_ms_sup_ch_cap, cfg_ms_sup_ch_cap_cmd, "channel-capability "
1843         "(sdcch|sdcch+tchf|sdcch+tchf+tchh)",
1844         "Select channel capability\nSDCCH only\nSDCCH + TCH/F\nSDCCH + TCH/H")
1845 {
1846         struct osmocom_ms *ms = vty->index;
1847         struct gsm_settings *set = &ms->settings;
1848         struct gsm_support *sup = &ms->support;
1849         uint8_t ch_cap;
1850
1851         if (!strcmp(argv[0], "sdcch+tchf+tchh"))
1852                 ch_cap = GSM_CAP_SDCCH_TCHF_TCHH;
1853         else if (!strcmp(argv[0], "sdcch+tchf"))
1854                 ch_cap = GSM_CAP_SDCCH_TCHF;
1855         else
1856                 ch_cap = GSM_CAP_SDCCH;
1857
1858         if (ch_cap > sup->ch_cap && !vty_reading) {
1859                 vty_out(vty, "You selected an higher capability than supported "
1860                         " by hardware!%s", VTY_NEWLINE);
1861                 return CMD_WARNING;
1862         }
1863
1864         if (ch_cap != set->ch_cap
1865          && (ch_cap == GSM_CAP_SDCCH || set->ch_cap == GSM_CAP_SDCCH))
1866                 vty_restart(vty, ms);
1867
1868         set->ch_cap = ch_cap;
1869
1870         return CMD_SUCCESS;
1871 }
1872
1873 SUP_EN(cfg_ms_sup_full_v1, cfg_ms_sup_full_v1_cmd, full_v1, "full-speech-v1",
1874         "Full rate speech V1", 0);
1875 SUP_DI(cfg_ms_sup_no_full_v1, cfg_ms_sup_no_full_v1_cmd, full_v1,
1876         "full-speech-v1", "Full rate speech V1", 0);
1877 SUP_EN(cfg_ms_sup_full_v2, cfg_ms_sup_full_v2_cmd, full_v2, "full-speech-v2",
1878         "Full rate speech V2 (EFR)", 0);
1879 SUP_DI(cfg_ms_sup_no_full_v2, cfg_ms_sup_no_full_v2_cmd, full_v2,
1880         "full-speech-v2", "Full rate speech V2 (EFR)", 0);
1881 SUP_EN(cfg_ms_sup_full_v3, cfg_ms_sup_full_v3_cmd, full_v3, "full-speech-v3",
1882         "Full rate speech V3 (AMR)", 0);
1883 SUP_DI(cfg_ms_sup_no_full_v3, cfg_ms_sup_no_full_v3_cmd, full_v3,
1884         "full-speech-v3", "Full rate speech V3 (AMR)", 0);
1885 SUP_EN(cfg_ms_sup_half_v1, cfg_ms_sup_half_v1_cmd, half_v1, "half-speech-v1",
1886         "Half rate speech V1", 0);
1887 SUP_DI(cfg_ms_sup_no_half_v1, cfg_ms_sup_no_half_v1_cmd, half_v1,
1888         "half-speech-v1", "Half rate speech V1", 0);
1889 SUP_EN(cfg_ms_sup_half_v3, cfg_ms_sup_half_v3_cmd, half_v3, "half-speech-v3",
1890         "Half rate speech V3 (AMR)", 0);
1891 SUP_DI(cfg_ms_sup_no_half_v3, cfg_ms_sup_no_half_v3_cmd, half_v3,
1892         "half-speech-v3", "Half rate speech V3 (AMR)", 0);
1893
1894 DEFUN(cfg_ms_sup_min_rxlev, cfg_ms_sup_min_rxlev_cmd, "min-rxlev <-110--47>",
1895         "Set the minimum receive level to select a cell\n"
1896         "Minimum receive level from -110 dBm to -47 dBm")
1897 {
1898         struct osmocom_ms *ms = vty->index;
1899         struct gsm_settings *set = &ms->settings;
1900
1901         set->min_rxlev_db = atoi(argv[0]);
1902
1903         return CMD_SUCCESS;
1904 }
1905
1906 DEFUN(cfg_ms_sup_dsc_max, cfg_ms_sup_dsc_max_cmd, "dsc-max <90-500>",
1907         "Set the maximum DSC value. Standard is 90. Increase to make mobile "
1908         "more reliable against bad RX signal. This increase the propability "
1909         "of missing a paging requests\n"
1910         "DSC initial and maximum value (standard is 90)")
1911 {
1912         struct osmocom_ms *ms = vty->index;
1913         struct gsm_settings *set = &ms->settings;
1914
1915         set->dsc_max = atoi(argv[0]);
1916
1917         return CMD_SUCCESS;
1918 }
1919
1920 /* per testsim config */
1921 DEFUN(cfg_ms_testsim, cfg_ms_testsim_cmd, "test-sim",
1922         "Configure test SIM emulation")
1923 {
1924         vty->node = TESTSIM_NODE;
1925
1926         return CMD_SUCCESS;
1927 }
1928
1929 DEFUN(cfg_test_imsi, cfg_test_imsi_cmd, "imsi IMSI",
1930         "Set IMSI on test card\n15 digits IMSI")
1931 {
1932         struct osmocom_ms *ms = vty->index;
1933         struct gsm_settings *set = &ms->settings;
1934         char *error = gsm_check_imsi(argv[0]);
1935
1936         if (error) {
1937                 vty_out(vty, "%s%s", error, VTY_NEWLINE);
1938                 return CMD_WARNING;
1939         }
1940
1941         strcpy(set->test_imsi, argv[0]);
1942
1943         vty_restart(vty, ms);
1944         return CMD_SUCCESS;
1945 }
1946
1947 #define HEX_STR "\nByte as two digits hexadecimal"
1948 DEFUN(cfg_test_ki_xor, cfg_test_ki_xor_cmd, "ki xor HEX HEX HEX HEX HEX HEX "
1949         "HEX HEX HEX HEX HEX HEX",
1950         "Set Key (Kc) on test card\nUse XOR algorithm" HEX_STR HEX_STR HEX_STR
1951         HEX_STR HEX_STR HEX_STR HEX_STR HEX_STR HEX_STR HEX_STR HEX_STR HEX_STR)
1952 {
1953         struct osmocom_ms *ms = vty->index;
1954         struct gsm_settings *set = &ms->settings;
1955         uint8_t ki[12];
1956         const char *p;
1957         int i;
1958
1959         for (i = 0; i < 12; i++) {
1960                 p = argv[i];
1961                 if (!strncmp(p, "0x", 2))
1962                         p += 2;
1963                 if (strlen(p) != 2) {
1964                         vty_out(vty, "Expecting two digits hex value (with or "
1965                                 "without 0x in front)%s", VTY_NEWLINE);
1966                         return CMD_WARNING;
1967                 }
1968                 ki[i] = strtoul(p, NULL, 16);
1969         }
1970
1971         set->test_ki_type = GSM_SIM_KEY_XOR;
1972         memcpy(set->test_ki, ki, 12);
1973         return CMD_SUCCESS;
1974 }
1975
1976 DEFUN(cfg_test_ki_comp128, cfg_test_ki_comp128_cmd, "ki comp128 HEX HEX HEX "
1977         "HEX HEX HEX HEX HEX HEX HEX HEX HEX HEX HEX HEX HEX",
1978         "Set Key (Kc) on test card\nUse XOR algorithm" HEX_STR HEX_STR HEX_STR
1979         HEX_STR HEX_STR HEX_STR HEX_STR HEX_STR HEX_STR HEX_STR HEX_STR HEX_STR
1980         HEX_STR HEX_STR HEX_STR HEX_STR)
1981 {
1982         struct osmocom_ms *ms = vty->index;
1983         struct gsm_settings *set = &ms->settings;
1984         uint8_t ki[16];
1985         const char *p;
1986         int i;
1987
1988         for (i = 0; i < 16; i++) {
1989                 p = argv[i];
1990                 if (!strncmp(p, "0x", 2))
1991                         p += 2;
1992                 if (strlen(p) != 2) {
1993                         vty_out(vty, "Expecting two digits hex value (with or "
1994                                 "without 0x in front)%s", VTY_NEWLINE);
1995                         return CMD_WARNING;
1996                 }
1997                 ki[i] = strtoul(p, NULL, 16);
1998         }
1999
2000         set->test_ki_type = GSM_SIM_KEY_COMP128;
2001         memcpy(set->test_ki, ki, 16);
2002         return CMD_SUCCESS;
2003 }
2004
2005 DEFUN(cfg_test_barr, cfg_test_barr_cmd, "barred-access",
2006         "Allow access to barred cells")
2007 {
2008         struct osmocom_ms *ms = vty->index;
2009         struct gsm_settings *set = &ms->settings;
2010
2011         set->test_barr = 1;
2012
2013         return CMD_SUCCESS;
2014 }
2015
2016 DEFUN(cfg_test_no_barr, cfg_test_no_barr_cmd, "no barred-access",
2017         NO_STR "Deny access to barred cells")
2018 {
2019         struct osmocom_ms *ms = vty->index;
2020         struct gsm_settings *set = &ms->settings;
2021
2022         set->test_barr = 0;
2023
2024         return CMD_SUCCESS;
2025 }
2026
2027 DEFUN(cfg_test_no_rplmn, cfg_test_no_rplmn_cmd, "no rplmn",
2028         NO_STR "Unset Registered PLMN")
2029 {
2030         struct osmocom_ms *ms = vty->index;
2031         struct gsm_settings *set = &ms->settings;
2032
2033         set->test_rplmn_valid = 0;
2034
2035         vty_restart(vty, ms);
2036         return CMD_SUCCESS;
2037 }
2038
2039 DEFUN(cfg_test_rplmn, cfg_test_rplmn_cmd, "rplmn MCC MNC [lac] [tmsi]",
2040         "Set Registered PLMN\nMobile Country Code\nMobile Network Code\n"
2041         "Optionally set locatio area code\n"
2042         "Optionally set current assigned TMSI")
2043 {
2044         struct osmocom_ms *ms = vty->index;
2045         struct gsm_settings *set = &ms->settings;
2046         uint16_t mcc = gsm_input_mcc((char *)argv[0]),
2047                  mnc = gsm_input_mnc((char *)argv[1]);
2048
2049         if (!mcc) {
2050                 vty_out(vty, "Given MCC invalid%s", VTY_NEWLINE);
2051                 return CMD_WARNING;
2052         }
2053         if (!mnc) {
2054                 vty_out(vty, "Given MNC invalid%s", VTY_NEWLINE);
2055                 return CMD_WARNING;
2056         }
2057         set->test_rplmn_valid = 1;
2058         set->test_rplmn_mcc = mcc;
2059         set->test_rplmn_mnc = mnc;
2060
2061         if (argc >= 3)
2062                 set->test_lac = strtoul(argv[2], NULL, 16);
2063         else
2064                 set->test_lac = 0xfffe;
2065
2066         if (argc >= 4)
2067                 set->test_tmsi = strtoul(argv[3], NULL, 16);
2068         else
2069                 set->test_tmsi = 0xffffffff;
2070
2071         vty_restart(vty, ms);
2072         return CMD_SUCCESS;
2073 }
2074
2075 DEFUN(cfg_test_hplmn, cfg_test_hplmn_cmd, "hplmn-search (everywhere|foreign-country)",
2076         "Set Home PLMN search mode\n"
2077         "Search for HPLMN when on any other network\n"
2078         "Search for HPLMN when in a different country")
2079 {
2080         struct osmocom_ms *ms = vty->index;
2081         struct gsm_settings *set = &ms->settings;
2082
2083         switch (argv[0][0]) {
2084         case 'e':
2085                 set->test_always = 1;
2086                 break;
2087         case 'f':
2088                 set->test_always = 0;
2089                 break;
2090         }
2091
2092         vty_restart(vty, ms);
2093         return CMD_SUCCESS;
2094 }
2095
2096 DEFUN(cfg_no_shutdown, cfg_ms_no_shutdown_cmd, "no shutdown",
2097         NO_STR "Activate and run MS")
2098 {
2099         struct osmocom_ms *ms = vty->index, *tmp;
2100         int rc;
2101
2102         if (ms->shutdown != 2)
2103                 return CMD_SUCCESS;
2104
2105         llist_for_each_entry(tmp, &ms_list, entity) {
2106                 if (tmp->shutdown == 2)
2107                         continue;
2108                 if (!strcmp(ms->settings.layer2_socket_path,
2109                                 tmp->settings.layer2_socket_path)) {
2110                         vty_out(vty, "Cannot start MS '%s', because MS '%s' "
2111                                 "use the same layer2-socket.%sPlease shutdown "
2112                                 "MS '%s' first.%s", ms->name, tmp->name,
2113                                 VTY_NEWLINE, tmp->name, VTY_NEWLINE);
2114                         return CMD_WARNING;
2115                 }
2116                 if (!strcmp(ms->settings.sap_socket_path,
2117                                 tmp->settings.sap_socket_path)) {
2118                         vty_out(vty, "Cannot start MS '%s', because MS '%s' "
2119                                 "use the same sap-socket.%sPlease shutdown "
2120                                 "MS '%s' first.%s", ms->name, tmp->name,
2121                                 VTY_NEWLINE, tmp->name, VTY_NEWLINE);
2122                         return CMD_WARNING;
2123                 }
2124         }
2125
2126         rc = mobile_init(ms);
2127         if (rc < 0) {
2128                 vty_out(vty, "Connection to layer 1 failed!%s",
2129                         VTY_NEWLINE);
2130                 return CMD_WARNING;
2131         }
2132
2133         return CMD_SUCCESS;
2134 }
2135
2136 DEFUN(cfg_shutdown, cfg_ms_shutdown_cmd, "shutdown",
2137         "Shut down and deactivate MS")
2138 {
2139         struct osmocom_ms *ms = vty->index;
2140
2141         if (ms->shutdown == 0)
2142                 mobile_exit(ms, 0);
2143
2144         return CMD_SUCCESS;
2145 }
2146
2147 DEFUN(cfg_shutdown_force, cfg_ms_shutdown_force_cmd, "shutdown force",
2148         "Shut down and deactivate MS\nDo not perform IMSI detach")
2149 {
2150         struct osmocom_ms *ms = vty->index;
2151
2152         if (ms->shutdown <= 1)
2153                 mobile_exit(ms, 1);
2154
2155         return CMD_SUCCESS;
2156 }
2157
2158 enum node_type ms_vty_go_parent(struct vty *vty)
2159 {
2160         switch (vty->node) {
2161         case MS_NODE:
2162                 vty->node = CONFIG_NODE;
2163                 vty->index = NULL;
2164                 break;
2165         case TESTSIM_NODE:
2166         case SUPPORT_NODE:
2167                 vty->node = MS_NODE;
2168                 break;
2169         default:
2170                 vty->node = CONFIG_NODE;
2171         }
2172
2173         return vty->node;
2174 }
2175
2176 /* Down vty node level. */
2177 gDEFUN(ournode_exit,
2178        ournode_exit_cmd, "exit", "Exit current mode and down to previous mode\n")
2179 {
2180         switch (vty->node) {
2181         case MS_NODE:
2182                 vty->node = CONFIG_NODE;
2183                 vty->index = NULL;
2184                 break;
2185         case TESTSIM_NODE:
2186         case SUPPORT_NODE:
2187                 vty->node = MS_NODE;
2188                 break;
2189         default:
2190                 break;
2191         }
2192         return CMD_SUCCESS;
2193 }
2194
2195 /* End of configuration. */
2196 gDEFUN(ournode_end,
2197        ournode_end_cmd, "end", "End current mode and change to enable mode.")
2198 {
2199         switch (vty->node) {
2200         case VIEW_NODE:
2201         case ENABLE_NODE:
2202                 /* Nothing to do. */
2203                 break;
2204         case CONFIG_NODE:
2205         case VTY_NODE:
2206         case MS_NODE:
2207         case TESTSIM_NODE:
2208         case SUPPORT_NODE:
2209                 vty_config_unlock(vty);
2210                 vty->node = ENABLE_NODE;
2211                 vty->index = NULL;
2212                 vty->index_sub = NULL;
2213                 break;
2214         default:
2215                 break;
2216         }
2217         return CMD_SUCCESS;
2218 }
2219
2220 DEFUN(off, off_cmd, "off",
2221         "Turn mobiles off (shutdown) and exit")
2222 {
2223         dispatch_signal(SS_GLOBAL, S_GLOBAL_SHUTDOWN, NULL);
2224
2225         return CMD_SUCCESS;
2226 }
2227
2228 #define SUP_NODE(item) \
2229         install_element(SUPPORT_NODE, &cfg_ms_sup_item_cmd);
2230
2231 int ms_vty_init(void)
2232 {
2233         install_element_ve(&show_ms_cmd);
2234         install_element_ve(&show_subscr_cmd);
2235         install_element_ve(&show_support_cmd);
2236         install_element_ve(&show_cell_cmd);
2237         install_element_ve(&show_cell_si_cmd);
2238         install_element_ve(&show_ba_cmd);
2239         install_element_ve(&show_forb_la_cmd);
2240         install_element_ve(&show_forb_plmn_cmd);
2241         install_element_ve(&monitor_network_cmd);
2242         install_element_ve(&no_monitor_network_cmd);
2243         install_element(ENABLE_NODE, &off_cmd);
2244
2245         install_element(ENABLE_NODE, &sim_test_cmd);
2246         install_element(ENABLE_NODE, &sim_reader_cmd);
2247         install_element(ENABLE_NODE, &sim_remove_cmd);
2248         install_element(ENABLE_NODE, &sim_pin_cmd);
2249         install_element(ENABLE_NODE, &sim_disable_pin_cmd);
2250         install_element(ENABLE_NODE, &sim_enable_pin_cmd);
2251         install_element(ENABLE_NODE, &sim_change_pin_cmd);
2252         install_element(ENABLE_NODE, &sim_unblock_pin_cmd);
2253         install_element(ENABLE_NODE, &sim_lai_cmd);
2254         install_element(ENABLE_NODE, &network_search_cmd);
2255         install_element(ENABLE_NODE, &network_show_cmd);
2256         install_element(ENABLE_NODE, &network_select_cmd);
2257         install_element(ENABLE_NODE, &call_cmd);
2258         install_element(ENABLE_NODE, &call_retr_cmd);
2259         install_element(ENABLE_NODE, &call_dtmf_cmd);
2260
2261         install_element(CONFIG_NODE, &cfg_gps_device_cmd);
2262         install_element(CONFIG_NODE, &cfg_gps_baud_cmd);
2263         install_element(CONFIG_NODE, &cfg_gps_enable_cmd);
2264         install_element(CONFIG_NODE, &cfg_no_gps_enable_cmd);
2265
2266         install_element(CONFIG_NODE, &cfg_ms_cmd);
2267         install_element(CONFIG_NODE, &cfg_ms_create_cmd);
2268         install_element(CONFIG_NODE, &cfg_ms_rename_cmd);
2269         install_element(CONFIG_NODE, &cfg_no_ms_cmd);
2270         install_element(CONFIG_NODE, &ournode_end_cmd);
2271         install_node(&ms_node, config_write_ms);
2272         install_default(MS_NODE);
2273         install_element(MS_NODE, &ournode_exit_cmd);
2274         install_element(MS_NODE, &ournode_end_cmd);
2275         install_element(MS_NODE, &cfg_ms_layer2_cmd);
2276         install_element(MS_NODE, &cfg_ms_sap_cmd);
2277         install_element(MS_NODE, &cfg_ms_sim_cmd);
2278         install_element(MS_NODE, &cfg_ms_mode_cmd);
2279         install_element(MS_NODE, &cfg_ms_imei_cmd);
2280         install_element(MS_NODE, &cfg_ms_imei_fixed_cmd);
2281         install_element(MS_NODE, &cfg_ms_imei_random_cmd);
2282         install_element(MS_NODE, &cfg_ms_no_emerg_imsi_cmd);
2283         install_element(MS_NODE, &cfg_ms_emerg_imsi_cmd);
2284         install_element(MS_NODE, &cfg_ms_cw_cmd);
2285         install_element(MS_NODE, &cfg_ms_no_cw_cmd);
2286         install_element(MS_NODE, &cfg_ms_auto_answer_cmd);
2287         install_element(MS_NODE, &cfg_ms_no_auto_answer_cmd);
2288         install_element(MS_NODE, &cfg_ms_clip_cmd);
2289         install_element(MS_NODE, &cfg_ms_clir_cmd);
2290         install_element(MS_NODE, &cfg_ms_no_clip_cmd);
2291         install_element(MS_NODE, &cfg_ms_no_clir_cmd);
2292         install_element(MS_NODE, &cfg_ms_tx_power_cmd);
2293         install_element(MS_NODE, &cfg_ms_tx_power_val_cmd);
2294         install_element(MS_NODE, &cfg_ms_sim_delay_cmd);
2295         install_element(MS_NODE, &cfg_ms_no_sim_delay_cmd);
2296         install_element(MS_NODE, &cfg_ms_stick_cmd);
2297         install_element(MS_NODE, &cfg_ms_no_stick_cmd);
2298         install_element(MS_NODE, &cfg_ms_lupd_cmd);
2299         install_element(MS_NODE, &cfg_ms_no_lupd_cmd);
2300         install_element(MS_NODE, &cfg_ms_codec_full_cmd);
2301         install_element(MS_NODE, &cfg_ms_codec_full_pref_cmd);
2302         install_element(MS_NODE, &cfg_ms_codec_half_cmd);
2303         install_element(MS_NODE, &cfg_ms_codec_half_pref_cmd);
2304         install_element(MS_NODE, &cfg_ms_no_codec_half_cmd);
2305         install_element(MS_NODE, &cfg_ms_abbrev_cmd);
2306         install_element(MS_NODE, &cfg_ms_no_abbrev_cmd);
2307         install_element(MS_NODE, &cfg_ms_testsim_cmd);
2308         install_element(MS_NODE, &cfg_ms_support_cmd);
2309         install_node(&support_node, config_write_dummy);
2310         install_default(SUPPORT_NODE);
2311         install_element(SUPPORT_NODE, &ournode_exit_cmd);
2312         install_element(SUPPORT_NODE, &ournode_end_cmd);
2313         install_element(SUPPORT_NODE, &cfg_ms_sup_dtmf_cmd);
2314         install_element(SUPPORT_NODE, &cfg_ms_sup_no_dtmf_cmd);
2315         install_element(SUPPORT_NODE, &cfg_ms_sup_sms_cmd);
2316         install_element(SUPPORT_NODE, &cfg_ms_sup_no_sms_cmd);
2317         install_element(SUPPORT_NODE, &cfg_ms_sup_a5_1_cmd);
2318         install_element(SUPPORT_NODE, &cfg_ms_sup_no_a5_1_cmd);
2319         install_element(SUPPORT_NODE, &cfg_ms_sup_a5_2_cmd);
2320         install_element(SUPPORT_NODE, &cfg_ms_sup_no_a5_2_cmd);
2321         install_element(SUPPORT_NODE, &cfg_ms_sup_a5_3_cmd);
2322         install_element(SUPPORT_NODE, &cfg_ms_sup_no_a5_3_cmd);
2323         install_element(SUPPORT_NODE, &cfg_ms_sup_a5_4_cmd);
2324         install_element(SUPPORT_NODE, &cfg_ms_sup_no_a5_4_cmd);
2325         install_element(SUPPORT_NODE, &cfg_ms_sup_a5_5_cmd);
2326         install_element(SUPPORT_NODE, &cfg_ms_sup_no_a5_5_cmd);
2327         install_element(SUPPORT_NODE, &cfg_ms_sup_a5_6_cmd);
2328         install_element(SUPPORT_NODE, &cfg_ms_sup_no_a5_6_cmd);
2329         install_element(SUPPORT_NODE, &cfg_ms_sup_a5_7_cmd);
2330         install_element(SUPPORT_NODE, &cfg_ms_sup_no_a5_7_cmd);
2331         install_element(SUPPORT_NODE, &cfg_ms_sup_p_gsm_cmd);
2332         install_element(SUPPORT_NODE, &cfg_ms_sup_no_p_gsm_cmd);
2333         install_element(SUPPORT_NODE, &cfg_ms_sup_e_gsm_cmd);
2334         install_element(SUPPORT_NODE, &cfg_ms_sup_no_e_gsm_cmd);
2335         install_element(SUPPORT_NODE, &cfg_ms_sup_r_gsm_cmd);
2336         install_element(SUPPORT_NODE, &cfg_ms_sup_no_r_gsm_cmd);
2337         install_element(SUPPORT_NODE, &cfg_ms_sup_dcs_cmd);
2338         install_element(SUPPORT_NODE, &cfg_ms_sup_no_dcs_cmd);
2339         install_element(SUPPORT_NODE, &cfg_ms_sup_class_900_cmd);
2340         install_element(SUPPORT_NODE, &cfg_ms_sup_class_dcs_cmd);
2341         install_element(SUPPORT_NODE, &cfg_ms_sup_ch_cap_cmd);
2342         install_element(SUPPORT_NODE, &cfg_ms_sup_full_v1_cmd);
2343         install_element(SUPPORT_NODE, &cfg_ms_sup_no_full_v1_cmd);
2344         install_element(SUPPORT_NODE, &cfg_ms_sup_full_v2_cmd);
2345         install_element(SUPPORT_NODE, &cfg_ms_sup_no_full_v2_cmd);
2346         install_element(SUPPORT_NODE, &cfg_ms_sup_full_v3_cmd);
2347         install_element(SUPPORT_NODE, &cfg_ms_sup_no_full_v3_cmd);
2348         install_element(SUPPORT_NODE, &cfg_ms_sup_half_v1_cmd);
2349         install_element(SUPPORT_NODE, &cfg_ms_sup_no_half_v1_cmd);
2350         install_element(SUPPORT_NODE, &cfg_ms_sup_half_v3_cmd);
2351         install_element(SUPPORT_NODE, &cfg_ms_sup_no_half_v3_cmd);
2352         install_element(SUPPORT_NODE, &cfg_ms_sup_min_rxlev_cmd);
2353         install_element(SUPPORT_NODE, &cfg_ms_sup_dsc_max_cmd);
2354         install_node(&testsim_node, config_write_dummy);
2355         install_default(TESTSIM_NODE);
2356         install_element(TESTSIM_NODE, &ournode_exit_cmd);
2357         install_element(TESTSIM_NODE, &ournode_end_cmd);
2358         install_element(TESTSIM_NODE, &cfg_test_imsi_cmd);
2359         install_element(TESTSIM_NODE, &cfg_test_ki_xor_cmd);
2360         install_element(TESTSIM_NODE, &cfg_test_ki_comp128_cmd);
2361         install_element(TESTSIM_NODE, &cfg_test_barr_cmd);
2362         install_element(TESTSIM_NODE, &cfg_test_no_barr_cmd);
2363         install_element(TESTSIM_NODE, &cfg_test_no_rplmn_cmd);
2364         install_element(TESTSIM_NODE, &cfg_test_rplmn_cmd);
2365         install_element(TESTSIM_NODE, &cfg_test_hplmn_cmd);
2366         install_element(MS_NODE, &cfg_ms_shutdown_cmd);
2367         install_element(MS_NODE, &cfg_ms_shutdown_force_cmd);
2368         install_element(MS_NODE, &cfg_ms_no_shutdown_cmd);
2369
2370         return 0;
2371 }
2372
2373 void vty_notify(struct osmocom_ms *ms, const char *fmt, ...)
2374 {
2375         struct telnet_connection *connection;
2376         char buffer[1000];
2377         va_list args;
2378         struct vty *vty;
2379
2380         if (fmt) {
2381                 va_start(args, fmt);
2382                 vsnprintf(buffer, sizeof(buffer) - 1, fmt, args);
2383                 buffer[sizeof(buffer) - 1] = '\0';
2384                 va_end(args);
2385
2386                 if (!buffer[0])
2387                         return;
2388         }
2389
2390         llist_for_each_entry(connection, &active_connections, entry) {
2391                 vty = connection->vty;
2392                 if (!vty)
2393                         continue;
2394                 if (!fmt) {
2395                         vty_out(vty, "%s%% (MS %s)%s", VTY_NEWLINE, ms->name,
2396                                 VTY_NEWLINE);
2397                         continue;
2398                 }
2399                 if (buffer[strlen(buffer) - 1] == '\n') {
2400                         buffer[strlen(buffer) - 1] = '\0';
2401                         vty_out(vty, "%% %s%s", buffer, VTY_NEWLINE);
2402                         buffer[strlen(buffer)] = '\n';
2403                 } else
2404                         vty_out(vty, "%% %s", buffer);
2405         }
2406 }
2407