blob: e73ec3515c1c9cd4cc6686d87bcc42b07d92ad4a [file] [log] [blame]
Harald Welteb2edd142021-01-08 23:29:35 +01001#!/usr/bin/env python3
2
3# Interactive shell for working with SIM / UICC / USIM / ISIM cards
4#
5# (C) 2021 by Harald Welte <laforge@osmocom.org>
6#
7# This program is free software: you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation, either version 2 of the License, or
10# (at your option) any later version.
11#
12# This program is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with this program. If not, see <http://www.gnu.org/licenses/>.
19
20from typing import List
21
22import json
23
24import cmd2
25from cmd2 import style, fg, bg
26from cmd2 import CommandSet, with_default_category, with_argparser
27import argparse
28
29import os
30import sys
31from optparse import OptionParser
Philipp Maier2b11c322021-03-17 12:37:39 +010032from pathlib import Path
Harald Welteb2edd142021-01-08 23:29:35 +010033
34from pySim.ts_51_011 import EF, DF, EF_SST_map, EF_AD_mode_map
35from pySim.ts_31_102 import EF_UST_map, EF_USIM_ADF_map
36from pySim.ts_31_103 import EF_IST_map, EF_ISIM_ADF_map
37
38from pySim.exceptions import *
39from pySim.commands import SimCardCommands
Harald Welte6e0458d2021-04-03 11:52:37 +020040from pySim.transport import init_reader
Harald Welteb2edd142021-01-08 23:29:35 +010041from pySim.cards import card_detect, Card
42from pySim.utils import h2b, swap_nibbles, rpad, h2s
Harald Welte6e0458d2021-04-03 11:52:37 +020043from pySim.utils import dec_st, sanitize_pin_adm, tabulate_str_list, is_hex
Harald Welteb2edd142021-01-08 23:29:35 +010044from pySim.card_handler import card_handler
45
Philipp Maierff9dae22021-02-25 17:03:21 +010046from pySim.filesystem import CardMF, RuntimeState, CardDF, CardADF
Harald Welteb2edd142021-01-08 23:29:35 +010047from pySim.ts_51_011 import CardProfileSIM, DF_TELECOM, DF_GSM
48from pySim.ts_102_221 import CardProfileUICC
Harald Welte5ce35242021-04-02 20:27:05 +020049from pySim.ts_31_102 import CardApplicationUSIM
50from pySim.ts_31_103 import CardApplicationISIM
Harald Welteb2edd142021-01-08 23:29:35 +010051
Harald Welte4442b3d2021-04-03 09:00:16 +020052from pySim.card_key_provider import CardKeyProviderCsv, card_key_provider_register, card_key_provider_get_field
Philipp Maier2b11c322021-03-17 12:37:39 +010053
54
Harald Welteb2edd142021-01-08 23:29:35 +010055class PysimApp(cmd2.Cmd):
56 CUSTOM_CATEGORY = 'pySim Commands'
Philipp Maier681bc7b2021-03-10 19:52:41 +010057 def __init__(self, card, rs, script = None):
Harald Welte31d2cf02021-04-03 10:47:29 +020058 basic_commands = [Iso7816Commands(), PySimCommands()]
Harald Welteb2edd142021-01-08 23:29:35 +010059 super().__init__(persistent_history_file='~/.pysim_shell_history', allow_cli_args=False,
Philipp Maier681bc7b2021-03-10 19:52:41 +010060 use_ipython=True, auto_load_commands=False, command_sets=basic_commands, startup_script=script)
Harald Welteb2edd142021-01-08 23:29:35 +010061 self.intro = style('Welcome to pySim-shell!', fg=fg.red)
62 self.default_category = 'pySim-shell built-in commands'
63 self.card = card
Philipp Maier2b11c322021-03-17 12:37:39 +010064 iccid, sw = self.card.read_iccid()
65 self.iccid = iccid
Harald Welteb2edd142021-01-08 23:29:35 +010066 self.rs = rs
67 self.py_locals = { 'card': self.card, 'rs' : self.rs }
Harald Welteb2edd142021-01-08 23:29:35 +010068 self.numeric_path = False
69 self.add_settable(cmd2.Settable('numeric_path', bool, 'Print File IDs instead of names',
70 onchange_cb=self._onchange_numeric_path))
Philipp Maier38c74f62021-03-17 17:19:52 +010071 self.conserve_write = True
72 self.add_settable(cmd2.Settable('conserve_write', bool, 'Read and compare before write',
73 onchange_cb=self._onchange_conserve_write))
Harald Welteb2edd142021-01-08 23:29:35 +010074 self.update_prompt()
75
76 def _onchange_numeric_path(self, param_name, old, new):
77 self.update_prompt()
78
Philipp Maier38c74f62021-03-17 17:19:52 +010079 def _onchange_conserve_write(self, param_name, old, new):
80 self.rs.conserve_write = new
81
Harald Welteb2edd142021-01-08 23:29:35 +010082 def update_prompt(self):
83 path_list = self.rs.selected_file.fully_qualified_path(not self.numeric_path)
84 self.prompt = 'pySIM-shell (%s)> ' % ('/'.join(path_list))
85
86 @cmd2.with_category(CUSTOM_CATEGORY)
87 def do_intro(self, _):
88 """Display the intro banner"""
89 self.poutput(self.intro)
90
91 @cmd2.with_category(CUSTOM_CATEGORY)
92 def do_verify_adm(self, arg):
93 """VERIFY the ADM1 PIN"""
Philipp Maier2b11c322021-03-17 12:37:39 +010094 if arg:
95 # use specified ADM-PIN
96 pin_adm = sanitize_pin_adm(arg)
97 else:
98 # try to find an ADM-PIN if none is specified
Harald Welte4442b3d2021-04-03 09:00:16 +020099 result = card_key_provider_get_field('ADM1', key='ICCID', value=self.iccid)
Philipp Maier2b11c322021-03-17 12:37:39 +0100100 pin_adm = sanitize_pin_adm(result)
101 if pin_adm:
Philipp Maierb63766b2021-03-26 11:50:21 +0100102 self.poutput("found ADM-PIN '%s' for ICCID '%s'" % (result, self.iccid))
103 else:
104 self.poutput("cannot find ADM-PIN for ICCID '%s'" % (self._cmd.iccid))
105 return
Philipp Maier2b11c322021-03-17 12:37:39 +0100106
107 if pin_adm:
108 self.card.verify_adm(h2b(pin_adm))
109 else:
110 self.poutput("error: cannot authenticate, no adm-pin!")
Harald Welteb2edd142021-01-08 23:29:35 +0100111
Philipp Maier2558aa62021-03-10 16:20:02 +0100112 @cmd2.with_category(CUSTOM_CATEGORY)
113 def do_desc(self, opts):
114 """Display human readable file description for the currently selected file"""
115 desc = self.rs.selected_file.desc
116 if desc:
117 self.poutput(desc)
118 else:
119 self.poutput("no description available")
Harald Welteb2edd142021-01-08 23:29:35 +0100120
Harald Welte31d2cf02021-04-03 10:47:29 +0200121@with_default_category('pySim Commands')
122class PySimCommands(CommandSet):
Harald Welteb2edd142021-01-08 23:29:35 +0100123 def __init__(self):
124 super().__init__()
125
Philipp Maier5d3e2592021-02-22 17:22:16 +0100126 dir_parser = argparse.ArgumentParser()
127 dir_parser.add_argument('--fids', help='Show file identifiers', action='store_true')
128 dir_parser.add_argument('--names', help='Show file names', action='store_true')
129 dir_parser.add_argument('--apps', help='Show applications', action='store_true')
130 dir_parser.add_argument('--all', help='Show all selectable identifiers and names', action='store_true')
131
132 @cmd2.with_argparser(dir_parser)
133 def do_dir(self, opts):
134 """Show a listing of files available in currently selected DF or MF"""
135 if opts.all:
136 flags = []
137 elif opts.fids or opts.names or opts.apps:
138 flags = ['PARENT', 'SELF']
139 if opts.fids:
140 flags += ['FIDS', 'AIDS']
141 if opts.names:
142 flags += ['FNAMES', 'ANAMES']
143 if opts.apps:
144 flags += ['ANAMES', 'AIDS']
145 else:
146 flags = ['PARENT', 'SELF', 'FNAMES', 'ANAMES']
147 selectables = list(self._cmd.rs.selected_file.get_selectable_names(flags = flags))
148 directory_str = tabulate_str_list(selectables, width = 79, hspace = 2, lspace = 1, align_left = True)
149 path_list = self._cmd.rs.selected_file.fully_qualified_path(True)
150 self._cmd.poutput('/'.join(path_list))
151 path_list = self._cmd.rs.selected_file.fully_qualified_path(False)
152 self._cmd.poutput('/'.join(path_list))
153 self._cmd.poutput(directory_str)
154 self._cmd.poutput("%d files" % len(selectables))
Harald Welteb2edd142021-01-08 23:29:35 +0100155
Philipp Maierff9dae22021-02-25 17:03:21 +0100156 def walk(self, indent = 0, action = None, context = None):
157 """Recursively walk through the file system, starting at the currently selected DF"""
158 files = self._cmd.rs.selected_file.get_selectables(flags = ['FNAMES', 'ANAMES'])
159 for f in files:
160 if not action:
161 output_str = " " * indent + str(f) + (" " * 250)
162 output_str = output_str[0:25]
163 if isinstance(files[f], CardADF):
164 output_str += " " + str(files[f].aid)
165 else:
166 output_str += " " + str(files[f].fid)
167 output_str += " " + str(files[f].desc)
168 self._cmd.poutput(output_str)
169 if isinstance(files[f], CardDF):
170 fcp_dec = self._cmd.rs.select(f, self._cmd)
171 self.walk(indent + 1, action, context)
172 fcp_dec = self._cmd.rs.select("..", self._cmd)
173 elif action:
Philipp Maierb152a9e2021-04-01 17:13:03 +0200174 df_before_action = self._cmd.rs.selected_file
Philipp Maierff9dae22021-02-25 17:03:21 +0100175 action(f, context)
Philipp Maierb152a9e2021-04-01 17:13:03 +0200176 # When walking through the file system tree the action must not
177 # always restore the currently selected file to the file that
178 # was selected before executing the action() callback.
179 if df_before_action != self._cmd.rs.selected_file:
180 raise RuntimeError("inconsistant walk, %s is currently selected but expecting %s to be selected"
181 % (str(self._cmd.rs.selected_file), str(df_before_action)))
Philipp Maierff9dae22021-02-25 17:03:21 +0100182
183 def do_tree(self, opts):
184 """Display a filesystem-tree with all selectable files"""
185 self.walk()
186
Philipp Maier24f7bd32021-02-25 17:06:18 +0100187 def export(self, filename, context):
Philipp Maierac34dcc2021-04-01 17:19:05 +0200188 """ Select and export a single file """
Philipp Maier24f7bd32021-02-25 17:06:18 +0100189 context['COUNT'] += 1
Philipp Maierac34dcc2021-04-01 17:19:05 +0200190 df = self._cmd.rs.selected_file
191
192 if not isinstance(df, CardDF):
193 raise RuntimeError("currently selected file %s is not a DF or ADF" % str(df))
194
195 df_path_list = df.fully_qualified_path(True)
196 df_path_list_fid = df.fully_qualified_path(False)
Philipp Maier24f7bd32021-02-25 17:06:18 +0100197
198 self._cmd.poutput("#" * 80)
Philipp Maierac34dcc2021-04-01 17:19:05 +0200199 file_str = '/'.join(df_path_list) + "/" + str(filename) + " " * 80
Philipp Maier24f7bd32021-02-25 17:06:18 +0100200 self._cmd.poutput("# " + file_str[0:77] + "#")
201 self._cmd.poutput("#" * 80)
202
Philipp Maierac34dcc2021-04-01 17:19:05 +0200203 self._cmd.poutput("# directory: %s (%s)" % ('/'.join(df_path_list), '/'.join(df_path_list_fid)))
Philipp Maier24f7bd32021-02-25 17:06:18 +0100204 try:
205 fcp_dec = self._cmd.rs.select(filename, self._cmd)
Philipp Maierac34dcc2021-04-01 17:19:05 +0200206 self._cmd.poutput("# file: %s (%s)" % (self._cmd.rs.selected_file.name, self._cmd.rs.selected_file.fid))
Philipp Maier24f7bd32021-02-25 17:06:18 +0100207
208 fd = fcp_dec['file_descriptor']
209 structure = fd['structure']
210 self._cmd.poutput("# structure: %s" % str(structure))
211
Philipp Maierac34dcc2021-04-01 17:19:05 +0200212 for f in df_path_list:
Philipp Maier24f7bd32021-02-25 17:06:18 +0100213 self._cmd.poutput("select " + str(f))
Philipp Maierac34dcc2021-04-01 17:19:05 +0200214 self._cmd.poutput("select " + self._cmd.rs.selected_file.name)
Philipp Maier24f7bd32021-02-25 17:06:18 +0100215
216 if structure == 'transparent':
217 result = self._cmd.rs.read_binary()
218 self._cmd.poutput("update_binary " + str(result[0]))
219 if structure == 'cyclic' or structure == 'linear_fixed':
220 num_of_rec = fd['num_of_rec']
221 for r in range(1, num_of_rec + 1):
222 result = self._cmd.rs.read_record(r)
223 self._cmd.poutput("update_record %d %s" % (r, str(result[0])))
Philipp Maier24f7bd32021-02-25 17:06:18 +0100224 except Exception as e:
Philipp Maierac34dcc2021-04-01 17:19:05 +0200225 bad_file_str = '/'.join(df_path_list) + "/" + str(filename) + ", " + str(e)
Philipp Maier24f7bd32021-02-25 17:06:18 +0100226 self._cmd.poutput("# bad file: %s" % bad_file_str)
227 context['ERR'] += 1
228 context['BAD'].append(bad_file_str)
229
Philipp Maierac34dcc2021-04-01 17:19:05 +0200230 # When reading the file is done, make sure the parent file is
231 # selected again. This will be the usual case, however we need
232 # to check before since we must not select the same DF twice
233 if df != self._cmd.rs.selected_file:
234 self._cmd.rs.select(df.fid or df.aid, self._cmd)
235
Philipp Maier24f7bd32021-02-25 17:06:18 +0100236 self._cmd.poutput("#")
237
238 export_parser = argparse.ArgumentParser()
239 export_parser.add_argument('--filename', type=str, default=None, help='only export specific file')
240
241 @cmd2.with_argparser(export_parser)
242 def do_export(self, opts):
243 """Export files to script that can be imported back later"""
244 context = {'ERR':0, 'COUNT':0, 'BAD':[]}
245 if opts.filename:
246 self.export(opts.filename, context)
247 else:
248 self.walk(0, self.export, context)
249 self._cmd.poutput("# total files visited: %u" % context['COUNT'])
250 self._cmd.poutput("# bad files: %u" % context['ERR'])
251 for b in context['BAD']:
252 self._cmd.poutput("# " + b)
253 if context['ERR']:
254 raise RuntimeError("unable to export %i file(s)" % context['ERR'])
Harald Welteb2edd142021-01-08 23:29:35 +0100255
256
Harald Welte31d2cf02021-04-03 10:47:29 +0200257@with_default_category('ISO7816 Commands')
258class Iso7816Commands(CommandSet):
259 def __init__(self):
260 super().__init__()
261
262 def do_select(self, opts):
263 """SELECT a File (ADF/DF/EF)"""
264 if len(opts.arg_list) == 0:
265 path_list = self._cmd.rs.selected_file.fully_qualified_path(True)
266 path_list_fid = self._cmd.rs.selected_file.fully_qualified_path(False)
267 self._cmd.poutput("currently selected file: " + '/'.join(path_list) + " (" + '/'.join(path_list_fid) + ")")
268 return
269
270 path = opts.arg_list[0]
271 fcp_dec = self._cmd.rs.select(path, self._cmd)
272 self._cmd.update_prompt()
273 self._cmd.poutput(json.dumps(fcp_dec, indent=4))
274
275 def complete_select(self, text, line, begidx, endidx) -> List[str]:
276 """Command Line tab completion for SELECT"""
277 index_dict = { 1: self._cmd.rs.selected_file.get_selectable_names() }
278 return self._cmd.index_based_complete(text, line, begidx, endidx, index_dict=index_dict)
279
280 def get_code(self, code):
281 """Use code either directly or try to get it from external data source"""
282 auto = ('PIN1', 'PIN2', 'PUK1', 'PUK2')
283
284 if str(code).upper() not in auto:
285 return sanitize_pin_adm(code)
286
287 result = card_key_provider_get_field(str(code), key='ICCID', value=self._cmd.iccid)
288 result = sanitize_pin_adm(result)
289 if result:
290 self._cmd.poutput("found %s '%s' for ICCID '%s'" % (code.upper(), result, self._cmd.iccid))
291 else:
292 self._cmd.poutput("cannot find %s for ICCID '%s'" % (code.upper(), self._cmd.iccid))
293 return result
294
295 verify_chv_parser = argparse.ArgumentParser()
296 verify_chv_parser.add_argument('--pin-nr', type=int, default=1, help='PIN Number, 1=PIN1, 2=PIN2 or custom value (decimal)')
297 verify_chv_parser.add_argument('pin_code', type=str, help='PIN code digits, \"PIN1\" or \"PIN2\" to get PIN code from external data source')
298
299 @cmd2.with_argparser(verify_chv_parser)
300 def do_verify_chv(self, opts):
301 """Verify (authenticate) using specified PIN code"""
302 pin = self.get_code(opts.pin_code)
303 (data, sw) = self._cmd.card._scc.verify_chv(opts.pin_nr, h2b(pin))
304 self._cmd.poutput("CHV verfication successful")
305
306 unblock_chv_parser = argparse.ArgumentParser()
307 unblock_chv_parser.add_argument('--pin-nr', type=int, default=1, help='PUK Number, 1=PIN1, 2=PIN2 or custom value (decimal)')
308 unblock_chv_parser.add_argument('puk_code', type=str, help='PUK code digits \"PUK1\" or \"PUK2\" to get PUK code from external data source')
309 unblock_chv_parser.add_argument('new_pin_code', type=str, help='PIN code digits \"PIN1\" or \"PIN2\" to get PIN code from external data source')
310
311 @cmd2.with_argparser(unblock_chv_parser)
312 def do_unblock_chv(self, opts):
313 """Unblock PIN code using specified PUK code"""
314 new_pin = self.get_code(opts.new_pin_code)
315 puk = self.get_code(opts.puk_code)
316 (data, sw) = self._cmd.card._scc.unblock_chv(opts.pin_nr, h2b(puk), h2b(new_pin))
317 self._cmd.poutput("CHV unblock successful")
318
319 change_chv_parser = argparse.ArgumentParser()
320 change_chv_parser.add_argument('--pin-nr', type=int, default=1, help='PUK Number, 1=PIN1, 2=PIN2 or custom value (decimal)')
321 change_chv_parser.add_argument('pin_code', type=str, help='PIN code digits \"PIN1\" or \"PIN2\" to get PIN code from external data source')
322 change_chv_parser.add_argument('new_pin_code', type=str, help='PIN code digits \"PIN1\" or \"PIN2\" to get PIN code from external data source')
323
324 @cmd2.with_argparser(change_chv_parser)
325 def do_change_chv(self, opts):
326 """Change PIN code to a new PIN code"""
327 new_pin = self.get_code(opts.new_pin_code)
328 pin = self.get_code(opts.pin_code)
329 (data, sw) = self._cmd.card._scc.change_chv(opts.pin_nr, h2b(pin), h2b(new_pin))
330 self._cmd.poutput("CHV change successful")
331
332 disable_chv_parser = argparse.ArgumentParser()
333 disable_chv_parser.add_argument('--pin-nr', type=int, default=1, help='PIN Number, 1=PIN1, 2=PIN2 or custom value (decimal)')
334 disable_chv_parser.add_argument('pin_code', type=str, help='PIN code digits, \"PIN1\" or \"PIN2\" to get PIN code from external data source')
335
336 @cmd2.with_argparser(disable_chv_parser)
337 def do_disable_chv(self, opts):
338 """Disable PIN code using specified PIN code"""
339 pin = self.get_code(opts.pin_code)
340 (data, sw) = self._cmd.card._scc.disable_chv(opts.pin_nr, h2b(pin))
341 self._cmd.poutput("CHV disable successful")
342
343 enable_chv_parser = argparse.ArgumentParser()
344 enable_chv_parser.add_argument('--pin-nr', type=int, default=1, help='PIN Number, 1=PIN1, 2=PIN2 or custom value (decimal)')
345 enable_chv_parser.add_argument('pin_code', type=str, help='PIN code digits, \"PIN1\" or \"PIN2\" to get PIN code from external data source')
346
347 @cmd2.with_argparser(enable_chv_parser)
348 def do_enable_chv(self, opts):
349 """Enable PIN code using specified PIN code"""
350 pin = self.get_code(opts.pin_code)
351 (data, sw) = self._cmd.card._scc.enable_chv(opts.pin_nr, h2b(pin))
352 self._cmd.poutput("CHV enable successful")
353
354
Harald Welteb2edd142021-01-08 23:29:35 +0100355def parse_options():
356
357 parser = OptionParser(usage="usage: %prog [options]")
358
359 parser.add_option("-d", "--device", dest="device", metavar="DEV",
360 help="Serial Device for SIM access [default: %default]",
361 default="/dev/ttyUSB0",
362 )
363 parser.add_option("-b", "--baud", dest="baudrate", type="int", metavar="BAUD",
364 help="Baudrate used for SIM access [default: %default]",
365 default=9600,
366 )
367 parser.add_option("-p", "--pcsc-device", dest="pcsc_dev", type='int', metavar="PCSC",
368 help="Which PC/SC reader number for SIM access",
369 default=None,
370 )
371 parser.add_option("--modem-device", dest="modem_dev", metavar="DEV",
372 help="Serial port of modem for Generic SIM Access (3GPP TS 27.007)",
373 default=None,
374 )
375 parser.add_option("--modem-baud", dest="modem_baud", type="int", metavar="BAUD",
376 help="Baudrate used for modem's port [default: %default]",
377 default=115200,
378 )
379 parser.add_option("--osmocon", dest="osmocon_sock", metavar="PATH",
380 help="Socket path for Calypso (e.g. Motorola C1XX) based reader (via OsmocomBB)",
381 default=None,
382 )
Philipp Maier681bc7b2021-03-10 19:52:41 +0100383 parser.add_option("--script", dest="script", metavar="PATH",
384 help="script with shell commands to be executed automatically",
385 default=None,
386 )
Harald Welteb2edd142021-01-08 23:29:35 +0100387
Philipp Maier2b11c322021-03-17 12:37:39 +0100388 parser.add_option("--csv", dest="csv", metavar="FILE",
389 help="Read card data from CSV file",
390 default=None,
391 )
392
Harald Welteb2edd142021-01-08 23:29:35 +0100393 parser.add_option("-a", "--pin-adm", dest="pin_adm",
394 help="ADM PIN used for provisioning (overwrites default)",
395 )
396 parser.add_option("-A", "--pin-adm-hex", dest="pin_adm_hex",
397 help="ADM PIN used for provisioning, as hex string (16 characters long",
398 )
399
400 (options, args) = parser.parse_args()
401
402 if args:
403 parser.error("Extraneous arguments")
404
405 return options
406
407
408
409if __name__ == '__main__':
410
411 # Parse options
412 opts = parse_options()
413
414 # Init card reader driver
415 sl = init_reader(opts)
416 if (sl == None):
417 exit(1)
418
419 # Create command layer
420 scc = SimCardCommands(transport=sl)
421
422 sl.wait_for_card();
423
424 card_handler = card_handler(sl)
425
426 card = card_detect("auto", scc)
427 if card is None:
428 print("No card detected!")
429 sys.exit(2)
430
431 profile = CardProfileUICC()
Harald Welte5ce35242021-04-02 20:27:05 +0200432 profile.add_application(CardApplicationUSIM)
433 profile.add_application(CardApplicationISIM)
Philipp Maier1e896f32021-03-10 17:02:53 +0100434
Harald Welteb2edd142021-01-08 23:29:35 +0100435 rs = RuntimeState(card, profile)
Harald Welte4f2c5462021-04-03 11:48:22 +0200436 # inform the transport that we can do context-specific SW interpretation
437 sl.set_sw_interpreter(rs)
Harald Welteb2edd142021-01-08 23:29:35 +0100438
439 # FIXME: do this dynamically
440 rs.mf.add_file(DF_TELECOM())
441 rs.mf.add_file(DF_GSM())
Harald Welteb2edd142021-01-08 23:29:35 +0100442
Philipp Maier681bc7b2021-03-10 19:52:41 +0100443 app = PysimApp(card, rs, opts.script)
Philipp Maier9c1a4ec2021-03-10 12:38:15 +0100444 rs.select('MF', app)
Philipp Maier228c98e2021-03-10 20:14:06 +0100445
Philipp Maier2b11c322021-03-17 12:37:39 +0100446 # Register csv-file as card data provider, either from specified CSV
447 # or from CSV file in home directory
448 csv_default = str(Path.home()) + "/.osmocom/pysim/card_data.csv"
449 if opts.csv:
Harald Welte4442b3d2021-04-03 09:00:16 +0200450 card_key_provider_register(CardKeyProviderCsv(opts.csv))
Philipp Maier2b11c322021-03-17 12:37:39 +0100451 if os.path.isfile(csv_default):
Harald Welte4442b3d2021-04-03 09:00:16 +0200452 card_key_provider_register(CardKeyProviderCsv(csv_default))
Philipp Maier2b11c322021-03-17 12:37:39 +0100453
Philipp Maier228c98e2021-03-10 20:14:06 +0100454 # If the user supplies an ADM PIN at via commandline args authenticate
455 # immediatley so that the user does not have to use the shell commands
456 pin_adm = sanitize_pin_adm(opts.pin_adm, opts.pin_adm_hex)
457 if pin_adm:
458 try:
459 card.verify_adm(h2b(pin_adm))
460 except Exception as e:
461 print(e)
462
Harald Welteb2edd142021-01-08 23:29:35 +0100463 app.cmdloop()