FreeCalypso > hg > freecalypso-hwlab
annotate simtool/dispatch.c @ 157:239ebdb8f2af
fc-simtool: grcard2-set-super command implemented
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 07 Feb 2021 02:47:51 +0000 |
parents | 6d9d0cfc9ed8 |
children |
rev | line source |
---|---|
85
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1 /* |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
2 * This module implements the command dispatch for fc-simtool |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
3 */ |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
4 |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
5 #include <ctype.h> |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
6 #include <stdio.h> |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
7 #include <string.h> |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
8 #include <strings.h> |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
9 #include <stdlib.h> |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
10 |
127
141489d31667
fc-simtool: a38 command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
124
diff
changeset
|
11 extern int cmd_a38(); |
108
6f80cfdc7e05
fc-simtool: CHV commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
12 extern int cmd_change_chv(); |
6f80cfdc7e05
fc-simtool: CHV commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
13 extern int cmd_disable_chv(); |
6f80cfdc7e05
fc-simtool: CHV commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
14 extern int cmd_enable_chv(); |
123
b391204d3cd5
fc-simtool: add scripting facility in the form of exec command
Mychaela Falconia <falcon@freecalypso.org>
parents:
122
diff
changeset
|
15 extern int cmd_exec(); |
114
34c090f35515
fc-simtool: fix-sysmo-msisdn command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
112
diff
changeset
|
16 extern int cmd_fix_sysmo_msisdn(); |
149
451ed3bbfe96
fc-simtool: grcard1-set-adm[12] commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
148
diff
changeset
|
17 extern int cmd_grcard1_set_adm(); |
153
a63e4c64f1f0
fc-simtool: grcard1-set-ki command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
149
diff
changeset
|
18 extern int cmd_grcard1_set_ki(); |
148
1232dea1d66a
fc-simtool: grcard1-set-pin[12] commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
143
diff
changeset
|
19 extern int cmd_grcard1_set_pin(); |
156
6d9d0cfc9ed8
fc-simtool: grcard2-set-adm command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
155
diff
changeset
|
20 extern int cmd_grcard2_set_adm(); |
154
ed34c8b7e2c9
fc-simtool: grcard2-set-pin[12] commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
153
diff
changeset
|
21 extern int cmd_grcard2_set_pin(); |
155
804a5b0797c6
fc-simtool: grcard2-set-puk[12] commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
154
diff
changeset
|
22 extern int cmd_grcard2_set_puk(); |
157
239ebdb8f2af
fc-simtool: grcard2-set-super command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
156
diff
changeset
|
23 extern int cmd_grcard2_set_super(); |
96
a5dfab380a90
fc-simtool: iccid high-level read command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
24 extern int cmd_iccid(); |
97
597c4e87a1f4
fc-simtool: imsi high-level read command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
96
diff
changeset
|
25 extern int cmd_imsi(); |
104
a60645b75a57
fc-simtool: phonebook dump implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
103
diff
changeset
|
26 extern int cmd_pb_dump(); |
122
f18704e91393
fc-simtool: pb-dump-rec command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
121
diff
changeset
|
27 extern int cmd_pb_dump_rec(); |
112
87d459d9797a
fc-simtool: pb-erase command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
111
diff
changeset
|
28 extern int cmd_pb_erase(); |
115
0dcd666292e4
fc-simtool: pb-erase-one command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
114
diff
changeset
|
29 extern int cmd_pb_erase_one(); |
121
87b34a244901
fc-simtool: pb-erase-range command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
120
diff
changeset
|
30 extern int cmd_pb_erase_range(); |
111
5bfb5a7262c1
fc-simtool: pb-update command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
109
diff
changeset
|
31 extern int cmd_pb_update(); |
117
06e2d5c60cbd
fc-simtool: pb-update-imm command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
116
diff
changeset
|
32 extern int cmd_pb_update_imm(); |
120
70219d92c32e
fc-simtool: pb-update-imm-hex command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
119
diff
changeset
|
33 extern int cmd_pb_update_imm_hex(); |
90
53e2c00566af
fc-simtool: readbin command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
88
diff
changeset
|
34 extern int cmd_readbin(); |
95
5f826e428641
fc-simtool: readef command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
91
diff
changeset
|
35 extern int cmd_readef(); |
91
226b231d00f3
fc-simtool: readrec command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
90
diff
changeset
|
36 extern int cmd_readrec(); |
100
fa7005185b84
fc-simtool: restore-file command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
99
diff
changeset
|
37 extern int cmd_restore_file(); |
99
2e35070d289f
fc-simtool: savebin command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
98
diff
changeset
|
38 extern int cmd_savebin(); |
119
c77b0d4cf89f
fc-simtool: save-sms-bin command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
117
diff
changeset
|
39 extern int cmd_save_sms_bin(); |
85
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
40 extern int cmd_select(); |
103
90eff13a72fd
fc-simtool: implemented alpha field decoding and spn command
Mychaela Falconia <falcon@freecalypso.org>
parents:
102
diff
changeset
|
41 extern int cmd_spn(); |
98
66c0cb0e9876
fc-simtool: telecom-sum (summary info) command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
97
diff
changeset
|
42 extern int cmd_telecom_sum(); |
143
431194b772e1
fc-simtool: uicc-dump command ported over
Mychaela Falconia <falcon@freecalypso.org>
parents:
129
diff
changeset
|
43 extern int cmd_uicc_dir(); |
108
6f80cfdc7e05
fc-simtool: CHV commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
44 extern int cmd_unblock_chv(); |
101
454ff8bd0b83
fc-simtool: update-bin command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
100
diff
changeset
|
45 extern int cmd_update_bin(); |
109
4aaf722ab933
fc-simtool: update-bin-imm command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
108
diff
changeset
|
46 extern int cmd_update_bin_imm(); |
102
29cc5612797a
fc-simtool: update-rec command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
101
diff
changeset
|
47 extern int cmd_update_rec(); |
108
6f80cfdc7e05
fc-simtool: CHV commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
48 extern int cmd_verify_chv(); |
129
2adb802b2a98
fc-simtool: verify-ext command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
127
diff
changeset
|
49 extern int cmd_verify_ext(); |
85
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
50 |
88
91486a77643e
fc-simtool: implement hex display of full SIM responses
Mychaela Falconia <falcon@freecalypso.org>
parents:
85
diff
changeset
|
51 extern int display_sim_resp_in_hex(); |
124
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
52 extern int good_exit(); |
85
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
53 |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
54 static struct cmdtab { |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
55 char *cmd; |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
56 int minargs; |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
57 int maxargs; |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
58 int (*func)(); |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
59 } cmdtab[] = { |
127
141489d31667
fc-simtool: a38 command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
124
diff
changeset
|
60 {"a38", 1, 1, cmd_a38}, |
108
6f80cfdc7e05
fc-simtool: CHV commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
61 {"change-chv1", 2, 2, cmd_change_chv}, |
6f80cfdc7e05
fc-simtool: CHV commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
62 {"change-chv2", 2, 2, cmd_change_chv}, |
6f80cfdc7e05
fc-simtool: CHV commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
63 {"change-pin1", 2, 2, cmd_change_chv}, |
6f80cfdc7e05
fc-simtool: CHV commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
64 {"change-pin2", 2, 2, cmd_change_chv}, |
6f80cfdc7e05
fc-simtool: CHV commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
65 {"disable-chv", 1, 1, cmd_disable_chv}, |
6f80cfdc7e05
fc-simtool: CHV commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
66 {"disable-pin", 1, 1, cmd_disable_chv}, |
6f80cfdc7e05
fc-simtool: CHV commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
67 {"enable-chv", 1, 1, cmd_enable_chv}, |
6f80cfdc7e05
fc-simtool: CHV commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
68 {"enable-pin", 1, 1, cmd_enable_chv}, |
123
b391204d3cd5
fc-simtool: add scripting facility in the form of exec command
Mychaela Falconia <falcon@freecalypso.org>
parents:
122
diff
changeset
|
69 {"exec", 1, 1, cmd_exec}, |
124
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
70 {"exit", 0, 0, good_exit}, |
114
34c090f35515
fc-simtool: fix-sysmo-msisdn command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
112
diff
changeset
|
71 {"fix-sysmo-msisdn", 0, 0, cmd_fix_sysmo_msisdn}, |
149
451ed3bbfe96
fc-simtool: grcard1-set-adm[12] commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
148
diff
changeset
|
72 {"grcard1-set-adm1", 2, 2, cmd_grcard1_set_adm}, |
451ed3bbfe96
fc-simtool: grcard1-set-adm[12] commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
148
diff
changeset
|
73 {"grcard1-set-adm2", 2, 2, cmd_grcard1_set_adm}, |
153
a63e4c64f1f0
fc-simtool: grcard1-set-ki command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
149
diff
changeset
|
74 {"grcard1-set-ki", 1, 1, cmd_grcard1_set_ki}, |
148
1232dea1d66a
fc-simtool: grcard1-set-pin[12] commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
143
diff
changeset
|
75 {"grcard1-set-pin1", 2, 2, cmd_grcard1_set_pin}, |
1232dea1d66a
fc-simtool: grcard1-set-pin[12] commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
143
diff
changeset
|
76 {"grcard1-set-pin2", 2, 2, cmd_grcard1_set_pin}, |
156
6d9d0cfc9ed8
fc-simtool: grcard2-set-adm command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
155
diff
changeset
|
77 {"grcard2-set-adm", 1, 1, cmd_grcard2_set_adm}, |
154
ed34c8b7e2c9
fc-simtool: grcard2-set-pin[12] commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
153
diff
changeset
|
78 {"grcard2-set-pin1", 1, 1, cmd_grcard2_set_pin}, |
ed34c8b7e2c9
fc-simtool: grcard2-set-pin[12] commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
153
diff
changeset
|
79 {"grcard2-set-pin2", 1, 1, cmd_grcard2_set_pin}, |
155
804a5b0797c6
fc-simtool: grcard2-set-puk[12] commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
154
diff
changeset
|
80 {"grcard2-set-puk1", 1, 1, cmd_grcard2_set_puk}, |
804a5b0797c6
fc-simtool: grcard2-set-puk[12] commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
154
diff
changeset
|
81 {"grcard2-set-puk2", 1, 1, cmd_grcard2_set_puk}, |
157
239ebdb8f2af
fc-simtool: grcard2-set-super command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
156
diff
changeset
|
82 {"grcard2-set-super", 1, 1, cmd_grcard2_set_super}, |
96
a5dfab380a90
fc-simtool: iccid high-level read command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
95
diff
changeset
|
83 {"iccid", 0, 0, cmd_iccid}, |
97
597c4e87a1f4
fc-simtool: imsi high-level read command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
96
diff
changeset
|
84 {"imsi", 0, 0, cmd_imsi}, |
104
a60645b75a57
fc-simtool: phonebook dump implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
103
diff
changeset
|
85 {"pb-dump", 1, 2, cmd_pb_dump}, |
122
f18704e91393
fc-simtool: pb-dump-rec command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
121
diff
changeset
|
86 {"pb-dump-rec", 2, 3, cmd_pb_dump_rec}, |
112
87d459d9797a
fc-simtool: pb-erase command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
111
diff
changeset
|
87 {"pb-erase", 1, 1, cmd_pb_erase}, |
115
0dcd666292e4
fc-simtool: pb-erase-one command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
114
diff
changeset
|
88 {"pb-erase-one", 2, 2, cmd_pb_erase_one}, |
121
87b34a244901
fc-simtool: pb-erase-range command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
120
diff
changeset
|
89 {"pb-erase-range", 3, 3, cmd_pb_erase_range}, |
111
5bfb5a7262c1
fc-simtool: pb-update command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
109
diff
changeset
|
90 {"pb-update", 2, 2, cmd_pb_update}, |
117
06e2d5c60cbd
fc-simtool: pb-update-imm command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
116
diff
changeset
|
91 {"pb-update-imm", 3, 4, cmd_pb_update_imm}, |
120
70219d92c32e
fc-simtool: pb-update-imm-hex command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
119
diff
changeset
|
92 {"pb-update-imm-hex", 4, 4, cmd_pb_update_imm_hex}, |
124
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
93 {"quit", 0, 0, good_exit}, |
90
53e2c00566af
fc-simtool: readbin command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
88
diff
changeset
|
94 {"readbin", 2, 2, cmd_readbin}, |
95
5f826e428641
fc-simtool: readef command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
91
diff
changeset
|
95 {"readef", 1, 1, cmd_readef}, |
91
226b231d00f3
fc-simtool: readrec command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
90
diff
changeset
|
96 {"readrec", 1, 2, cmd_readrec}, |
100
fa7005185b84
fc-simtool: restore-file command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
99
diff
changeset
|
97 {"restore-file", 2, 2, cmd_restore_file}, |
99
2e35070d289f
fc-simtool: savebin command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
98
diff
changeset
|
98 {"savebin", 2, 2, cmd_savebin}, |
119
c77b0d4cf89f
fc-simtool: save-sms-bin command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
117
diff
changeset
|
99 {"save-sms-bin", 1, 1, cmd_save_sms_bin}, |
85
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
100 {"select", 1, 1, cmd_select}, |
88
91486a77643e
fc-simtool: implement hex display of full SIM responses
Mychaela Falconia <falcon@freecalypso.org>
parents:
85
diff
changeset
|
101 {"sim-resp", 0, 0, display_sim_resp_in_hex}, |
103
90eff13a72fd
fc-simtool: implemented alpha field decoding and spn command
Mychaela Falconia <falcon@freecalypso.org>
parents:
102
diff
changeset
|
102 {"spn", 0, 0, cmd_spn}, |
98
66c0cb0e9876
fc-simtool: telecom-sum (summary info) command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
97
diff
changeset
|
103 {"telecom-sum", 0, 0, cmd_telecom_sum}, |
143
431194b772e1
fc-simtool: uicc-dump command ported over
Mychaela Falconia <falcon@freecalypso.org>
parents:
129
diff
changeset
|
104 {"uicc-dir", 0, 0, cmd_uicc_dir}, |
108
6f80cfdc7e05
fc-simtool: CHV commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
105 {"unblock-chv1", 2, 2, cmd_unblock_chv}, |
6f80cfdc7e05
fc-simtool: CHV commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
106 {"unblock-chv2", 2, 2, cmd_unblock_chv}, |
6f80cfdc7e05
fc-simtool: CHV commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
107 {"unblock-pin1", 2, 2, cmd_unblock_chv}, |
6f80cfdc7e05
fc-simtool: CHV commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
108 {"unblock-pin2", 2, 2, cmd_unblock_chv}, |
101
454ff8bd0b83
fc-simtool: update-bin command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
100
diff
changeset
|
109 {"update-bin", 2, 2, cmd_update_bin}, |
109
4aaf722ab933
fc-simtool: update-bin-imm command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
108
diff
changeset
|
110 {"update-bin-imm", 2, 2, cmd_update_bin_imm}, |
102
29cc5612797a
fc-simtool: update-rec command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
101
diff
changeset
|
111 {"update-rec", 2, 2, cmd_update_rec}, |
108
6f80cfdc7e05
fc-simtool: CHV commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
112 {"verify-chv1", 1, 1, cmd_verify_chv}, |
6f80cfdc7e05
fc-simtool: CHV commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
113 {"verify-chv2", 1, 1, cmd_verify_chv}, |
129
2adb802b2a98
fc-simtool: verify-ext command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
127
diff
changeset
|
114 {"verify-ext", 2, 2, cmd_verify_ext}, |
108
6f80cfdc7e05
fc-simtool: CHV commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
115 {"verify-pin1", 1, 1, cmd_verify_chv}, |
6f80cfdc7e05
fc-simtool: CHV commands implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
104
diff
changeset
|
116 {"verify-pin2", 1, 1, cmd_verify_chv}, |
85
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
117 {0, 0, 0, 0} |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
118 }; |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
119 |
123
b391204d3cd5
fc-simtool: add scripting facility in the form of exec command
Mychaela Falconia <falcon@freecalypso.org>
parents:
122
diff
changeset
|
120 simtool_dispatch_cmd(cmd, is_script) |
85
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
121 char *cmd; |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
122 { |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
123 char *argv[10]; |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
124 char *cp, **ap; |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
125 struct cmdtab *tp; |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
126 |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
127 for (cp = cmd; isspace(*cp); cp++) |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
128 ; |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
129 if (!*cp || *cp == '#') |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
130 return(0); |
123
b391204d3cd5
fc-simtool: add scripting facility in the form of exec command
Mychaela Falconia <falcon@freecalypso.org>
parents:
122
diff
changeset
|
131 if (is_script) |
b391204d3cd5
fc-simtool: add scripting facility in the form of exec command
Mychaela Falconia <falcon@freecalypso.org>
parents:
122
diff
changeset
|
132 printf("Script command: %s\n", cp); |
85
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
133 argv[0] = cp; |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
134 while (*cp && !isspace(*cp)) |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
135 cp++; |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
136 if (*cp) |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
137 *cp++ = '\0'; |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
138 for (tp = cmdtab; tp->cmd; tp++) |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
139 if (!strcmp(tp->cmd, argv[0])) |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
140 break; |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
141 if (!tp->func) { |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
142 fprintf(stderr, "error: no such command\n"); |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
143 return(-1); |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
144 } |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
145 for (ap = argv + 1; ; ) { |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
146 while (isspace(*cp)) |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
147 cp++; |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
148 if (!*cp || *cp == '#') |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
149 break; |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
150 if (ap - argv - 1 >= tp->maxargs) { |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
151 fprintf(stderr, "error: too many arguments\n"); |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
152 return(-1); |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
153 } |
109
4aaf722ab933
fc-simtool: update-bin-imm command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
108
diff
changeset
|
154 if (*cp == '"') { |
4aaf722ab933
fc-simtool: update-bin-imm command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
108
diff
changeset
|
155 *ap++ = ++cp; |
116
c8685074c845
fc-simtool command parser: fancier handling of quoted strings
Mychaela Falconia <falcon@freecalypso.org>
parents:
115
diff
changeset
|
156 for (;;) { |
c8685074c845
fc-simtool command parser: fancier handling of quoted strings
Mychaela Falconia <falcon@freecalypso.org>
parents:
115
diff
changeset
|
157 if (!*cp) { |
c8685074c845
fc-simtool command parser: fancier handling of quoted strings
Mychaela Falconia <falcon@freecalypso.org>
parents:
115
diff
changeset
|
158 unterm_qstring: fprintf(stderr, |
109
4aaf722ab933
fc-simtool: update-bin-imm command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
108
diff
changeset
|
159 "error: unterminated quoted string\n"); |
116
c8685074c845
fc-simtool command parser: fancier handling of quoted strings
Mychaela Falconia <falcon@freecalypso.org>
parents:
115
diff
changeset
|
160 return(-1); |
c8685074c845
fc-simtool command parser: fancier handling of quoted strings
Mychaela Falconia <falcon@freecalypso.org>
parents:
115
diff
changeset
|
161 } |
c8685074c845
fc-simtool command parser: fancier handling of quoted strings
Mychaela Falconia <falcon@freecalypso.org>
parents:
115
diff
changeset
|
162 if (*cp == '"') |
c8685074c845
fc-simtool command parser: fancier handling of quoted strings
Mychaela Falconia <falcon@freecalypso.org>
parents:
115
diff
changeset
|
163 break; |
c8685074c845
fc-simtool command parser: fancier handling of quoted strings
Mychaela Falconia <falcon@freecalypso.org>
parents:
115
diff
changeset
|
164 if (*cp++ == '\\') { |
c8685074c845
fc-simtool command parser: fancier handling of quoted strings
Mychaela Falconia <falcon@freecalypso.org>
parents:
115
diff
changeset
|
165 if (!*cp) |
c8685074c845
fc-simtool command parser: fancier handling of quoted strings
Mychaela Falconia <falcon@freecalypso.org>
parents:
115
diff
changeset
|
166 goto unterm_qstring; |
c8685074c845
fc-simtool command parser: fancier handling of quoted strings
Mychaela Falconia <falcon@freecalypso.org>
parents:
115
diff
changeset
|
167 cp++; |
c8685074c845
fc-simtool command parser: fancier handling of quoted strings
Mychaela Falconia <falcon@freecalypso.org>
parents:
115
diff
changeset
|
168 } |
109
4aaf722ab933
fc-simtool: update-bin-imm command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
108
diff
changeset
|
169 } |
85
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
170 *cp++ = '\0'; |
109
4aaf722ab933
fc-simtool: update-bin-imm command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
108
diff
changeset
|
171 } else { |
4aaf722ab933
fc-simtool: update-bin-imm command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
108
diff
changeset
|
172 *ap++ = cp; |
4aaf722ab933
fc-simtool: update-bin-imm command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
108
diff
changeset
|
173 while (*cp && !isspace(*cp)) |
4aaf722ab933
fc-simtool: update-bin-imm command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
108
diff
changeset
|
174 cp++; |
4aaf722ab933
fc-simtool: update-bin-imm command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
108
diff
changeset
|
175 if (*cp) |
4aaf722ab933
fc-simtool: update-bin-imm command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
108
diff
changeset
|
176 *cp++ = '\0'; |
4aaf722ab933
fc-simtool: update-bin-imm command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents:
108
diff
changeset
|
177 } |
85
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
178 } |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
179 if (ap - argv - 1 < tp->minargs) { |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
180 fprintf(stderr, "error: too few arguments\n"); |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
181 return(-1); |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
182 } |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
183 *ap = 0; |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
184 return tp->func(ap - argv, argv); |
b57cf64ece29
fc-simtool project started
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
185 } |
124
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
186 |
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
187 dispatch_ready_argv(argc, argv) |
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
188 char **argv; |
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
189 { |
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
190 struct cmdtab *tp; |
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
191 |
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
192 for (tp = cmdtab; tp->cmd; tp++) |
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
193 if (!strcmp(tp->cmd, argv[0])) |
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
194 break; |
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
195 if (!tp->func) { |
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
196 fprintf(stderr, "error: no such command\n"); |
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
197 return(-1); |
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
198 } |
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
199 if (argc - 1 > tp->maxargs) { |
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
200 fprintf(stderr, "error: too many arguments\n"); |
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
201 return(-1); |
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
202 } |
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
203 if (argc - 1 < tp->minargs) { |
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
204 fprintf(stderr, "error: too few arguments\n"); |
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
205 return(-1); |
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
206 } |
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
207 return tp->func(argc, argv); |
6c4567dd8946
fc-simtool: add non-interactive one-shot command (or script) mode
Mychaela Falconia <falcon@freecalypso.org>
parents:
123
diff
changeset
|
208 } |