blob: 7f48d58c8e4cfcf5692dbd3ae101687bdd4b80b5 [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()
Harald Welte1748b932021-04-06 21:12:25 +020075 self.json_pretty_print = True
76 self.add_settable(cmd2.Settable('json_pretty_print', bool, 'Pretty-Print JSON output'))
77
78 def poutput_json(self, data, force_no_pretty = False):
79 """line cmd2.putput() but for a json serializable dict."""
80 if force_no_pretty or self.json_pretty_print == False:
81 output = json.dumps(data)
82 else:
83 output = json.dumps(data, indent=4)
84 self.poutput(output)
Harald Welteb2edd142021-01-08 23:29:35 +010085
86 def _onchange_numeric_path(self, param_name, old, new):
87 self.update_prompt()
88
Philipp Maier38c74f62021-03-17 17:19:52 +010089 def _onchange_conserve_write(self, param_name, old, new):
90 self.rs.conserve_write = new
91
Harald Welteb2edd142021-01-08 23:29:35 +010092 def update_prompt(self):
93 path_list = self.rs.selected_file.fully_qualified_path(not self.numeric_path)
94 self.prompt = 'pySIM-shell (%s)> ' % ('/'.join(path_list))
95
96 @cmd2.with_category(CUSTOM_CATEGORY)
97 def do_intro(self, _):
98 """Display the intro banner"""
99 self.poutput(self.intro)
100
101 @cmd2.with_category(CUSTOM_CATEGORY)
102 def do_verify_adm(self, arg):
103 """VERIFY the ADM1 PIN"""
Philipp Maier2b11c322021-03-17 12:37:39 +0100104 if arg:
105 # use specified ADM-PIN
106 pin_adm = sanitize_pin_adm(arg)
107 else:
108 # try to find an ADM-PIN if none is specified
Harald Welte4442b3d2021-04-03 09:00:16 +0200109 result = card_key_provider_get_field('ADM1', key='ICCID', value=self.iccid)
Philipp Maier2b11c322021-03-17 12:37:39 +0100110 pin_adm = sanitize_pin_adm(result)
111 if pin_adm:
Philipp Maierb63766b2021-03-26 11:50:21 +0100112 self.poutput("found ADM-PIN '%s' for ICCID '%s'" % (result, self.iccid))
113 else:
114 self.poutput("cannot find ADM-PIN for ICCID '%s'" % (self._cmd.iccid))
115 return
Philipp Maier2b11c322021-03-17 12:37:39 +0100116
117 if pin_adm:
118 self.card.verify_adm(h2b(pin_adm))
119 else:
120 self.poutput("error: cannot authenticate, no adm-pin!")
Harald Welteb2edd142021-01-08 23:29:35 +0100121
Philipp Maier2558aa62021-03-10 16:20:02 +0100122 @cmd2.with_category(CUSTOM_CATEGORY)
123 def do_desc(self, opts):
124 """Display human readable file description for the currently selected file"""
125 desc = self.rs.selected_file.desc
126 if desc:
127 self.poutput(desc)
128 else:
129 self.poutput("no description available")
Harald Welteb2edd142021-01-08 23:29:35 +0100130
Harald Welte31d2cf02021-04-03 10:47:29 +0200131@with_default_category('pySim Commands')
132class PySimCommands(CommandSet):
Harald Welteb2edd142021-01-08 23:29:35 +0100133 def __init__(self):
134 super().__init__()
135
Philipp Maier5d3e2592021-02-22 17:22:16 +0100136 dir_parser = argparse.ArgumentParser()
137 dir_parser.add_argument('--fids', help='Show file identifiers', action='store_true')
138 dir_parser.add_argument('--names', help='Show file names', action='store_true')
139 dir_parser.add_argument('--apps', help='Show applications', action='store_true')
140 dir_parser.add_argument('--all', help='Show all selectable identifiers and names', action='store_true')
141
142 @cmd2.with_argparser(dir_parser)
143 def do_dir(self, opts):
144 """Show a listing of files available in currently selected DF or MF"""
145 if opts.all:
146 flags = []
147 elif opts.fids or opts.names or opts.apps:
148 flags = ['PARENT', 'SELF']
149 if opts.fids:
150 flags += ['FIDS', 'AIDS']
151 if opts.names:
152 flags += ['FNAMES', 'ANAMES']
153 if opts.apps:
154 flags += ['ANAMES', 'AIDS']
155 else:
156 flags = ['PARENT', 'SELF', 'FNAMES', 'ANAMES']
157 selectables = list(self._cmd.rs.selected_file.get_selectable_names(flags = flags))
158 directory_str = tabulate_str_list(selectables, width = 79, hspace = 2, lspace = 1, align_left = True)
159 path_list = self._cmd.rs.selected_file.fully_qualified_path(True)
160 self._cmd.poutput('/'.join(path_list))
161 path_list = self._cmd.rs.selected_file.fully_qualified_path(False)
162 self._cmd.poutput('/'.join(path_list))
163 self._cmd.poutput(directory_str)
164 self._cmd.poutput("%d files" % len(selectables))
Harald Welteb2edd142021-01-08 23:29:35 +0100165
Philipp Maierff9dae22021-02-25 17:03:21 +0100166 def walk(self, indent = 0, action = None, context = None):
167 """Recursively walk through the file system, starting at the currently selected DF"""
168 files = self._cmd.rs.selected_file.get_selectables(flags = ['FNAMES', 'ANAMES'])
169 for f in files:
170 if not action:
171 output_str = " " * indent + str(f) + (" " * 250)
172 output_str = output_str[0:25]
173 if isinstance(files[f], CardADF):
174 output_str += " " + str(files[f].aid)
175 else:
176 output_str += " " + str(files[f].fid)
177 output_str += " " + str(files[f].desc)
178 self._cmd.poutput(output_str)
179 if isinstance(files[f], CardDF):
180 fcp_dec = self._cmd.rs.select(f, self._cmd)
181 self.walk(indent + 1, action, context)
182 fcp_dec = self._cmd.rs.select("..", self._cmd)
183 elif action:
Philipp Maierb152a9e2021-04-01 17:13:03 +0200184 df_before_action = self._cmd.rs.selected_file
Philipp Maierff9dae22021-02-25 17:03:21 +0100185 action(f, context)
Philipp Maierb152a9e2021-04-01 17:13:03 +0200186 # When walking through the file system tree the action must not
187 # always restore the currently selected file to the file that
188 # was selected before executing the action() callback.
189 if df_before_action != self._cmd.rs.selected_file:
190 raise RuntimeError("inconsistant walk, %s is currently selected but expecting %s to be selected"
191 % (str(self._cmd.rs.selected_file), str(df_before_action)))
Philipp Maierff9dae22021-02-25 17:03:21 +0100192
193 def do_tree(self, opts):
194 """Display a filesystem-tree with all selectable files"""
195 self.walk()
196
Philipp Maier24f7bd32021-02-25 17:06:18 +0100197 def export(self, filename, context):
Philipp Maierac34dcc2021-04-01 17:19:05 +0200198 """ Select and export a single file """
Philipp Maier24f7bd32021-02-25 17:06:18 +0100199 context['COUNT'] += 1
Philipp Maierac34dcc2021-04-01 17:19:05 +0200200 df = self._cmd.rs.selected_file
201
202 if not isinstance(df, CardDF):
203 raise RuntimeError("currently selected file %s is not a DF or ADF" % str(df))
204
205 df_path_list = df.fully_qualified_path(True)
206 df_path_list_fid = df.fully_qualified_path(False)
Philipp Maier24f7bd32021-02-25 17:06:18 +0100207
208 self._cmd.poutput("#" * 80)
Philipp Maierac34dcc2021-04-01 17:19:05 +0200209 file_str = '/'.join(df_path_list) + "/" + str(filename) + " " * 80
Philipp Maier24f7bd32021-02-25 17:06:18 +0100210 self._cmd.poutput("# " + file_str[0:77] + "#")
211 self._cmd.poutput("#" * 80)
212
Philipp Maierac34dcc2021-04-01 17:19:05 +0200213 self._cmd.poutput("# directory: %s (%s)" % ('/'.join(df_path_list), '/'.join(df_path_list_fid)))
Philipp Maier24f7bd32021-02-25 17:06:18 +0100214 try:
215 fcp_dec = self._cmd.rs.select(filename, self._cmd)
Philipp Maierac34dcc2021-04-01 17:19:05 +0200216 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 +0100217
218 fd = fcp_dec['file_descriptor']
219 structure = fd['structure']
220 self._cmd.poutput("# structure: %s" % str(structure))
221
Philipp Maierac34dcc2021-04-01 17:19:05 +0200222 for f in df_path_list:
Philipp Maier24f7bd32021-02-25 17:06:18 +0100223 self._cmd.poutput("select " + str(f))
Philipp Maierac34dcc2021-04-01 17:19:05 +0200224 self._cmd.poutput("select " + self._cmd.rs.selected_file.name)
Philipp Maier24f7bd32021-02-25 17:06:18 +0100225
226 if structure == 'transparent':
227 result = self._cmd.rs.read_binary()
228 self._cmd.poutput("update_binary " + str(result[0]))
229 if structure == 'cyclic' or structure == 'linear_fixed':
230 num_of_rec = fd['num_of_rec']
231 for r in range(1, num_of_rec + 1):
232 result = self._cmd.rs.read_record(r)
233 self._cmd.poutput("update_record %d %s" % (r, str(result[0])))
Philipp Maier24f7bd32021-02-25 17:06:18 +0100234 except Exception as e:
Philipp Maierac34dcc2021-04-01 17:19:05 +0200235 bad_file_str = '/'.join(df_path_list) + "/" + str(filename) + ", " + str(e)
Philipp Maier24f7bd32021-02-25 17:06:18 +0100236 self._cmd.poutput("# bad file: %s" % bad_file_str)
237 context['ERR'] += 1
238 context['BAD'].append(bad_file_str)
239
Philipp Maierac34dcc2021-04-01 17:19:05 +0200240 # When reading the file is done, make sure the parent file is
241 # selected again. This will be the usual case, however we need
242 # to check before since we must not select the same DF twice
243 if df != self._cmd.rs.selected_file:
244 self._cmd.rs.select(df.fid or df.aid, self._cmd)
245
Philipp Maier24f7bd32021-02-25 17:06:18 +0100246 self._cmd.poutput("#")
247
248 export_parser = argparse.ArgumentParser()
249 export_parser.add_argument('--filename', type=str, default=None, help='only export specific file')
250
251 @cmd2.with_argparser(export_parser)
252 def do_export(self, opts):
253 """Export files to script that can be imported back later"""
254 context = {'ERR':0, 'COUNT':0, 'BAD':[]}
255 if opts.filename:
256 self.export(opts.filename, context)
257 else:
258 self.walk(0, self.export, context)
259 self._cmd.poutput("# total files visited: %u" % context['COUNT'])
260 self._cmd.poutput("# bad files: %u" % context['ERR'])
261 for b in context['BAD']:
262 self._cmd.poutput("# " + b)
263 if context['ERR']:
264 raise RuntimeError("unable to export %i file(s)" % context['ERR'])
Harald Welteb2edd142021-01-08 23:29:35 +0100265
266
Harald Welte31d2cf02021-04-03 10:47:29 +0200267@with_default_category('ISO7816 Commands')
268class Iso7816Commands(CommandSet):
269 def __init__(self):
270 super().__init__()
271
272 def do_select(self, opts):
273 """SELECT a File (ADF/DF/EF)"""
274 if len(opts.arg_list) == 0:
275 path_list = self._cmd.rs.selected_file.fully_qualified_path(True)
276 path_list_fid = self._cmd.rs.selected_file.fully_qualified_path(False)
277 self._cmd.poutput("currently selected file: " + '/'.join(path_list) + " (" + '/'.join(path_list_fid) + ")")
278 return
279
280 path = opts.arg_list[0]
281 fcp_dec = self._cmd.rs.select(path, self._cmd)
282 self._cmd.update_prompt()
283 self._cmd.poutput(json.dumps(fcp_dec, indent=4))
284
285 def complete_select(self, text, line, begidx, endidx) -> List[str]:
286 """Command Line tab completion for SELECT"""
287 index_dict = { 1: self._cmd.rs.selected_file.get_selectable_names() }
288 return self._cmd.index_based_complete(text, line, begidx, endidx, index_dict=index_dict)
289
290 def get_code(self, code):
291 """Use code either directly or try to get it from external data source"""
292 auto = ('PIN1', 'PIN2', 'PUK1', 'PUK2')
293
294 if str(code).upper() not in auto:
295 return sanitize_pin_adm(code)
296
297 result = card_key_provider_get_field(str(code), key='ICCID', value=self._cmd.iccid)
298 result = sanitize_pin_adm(result)
299 if result:
300 self._cmd.poutput("found %s '%s' for ICCID '%s'" % (code.upper(), result, self._cmd.iccid))
301 else:
302 self._cmd.poutput("cannot find %s for ICCID '%s'" % (code.upper(), self._cmd.iccid))
303 return result
304
305 verify_chv_parser = argparse.ArgumentParser()
306 verify_chv_parser.add_argument('--pin-nr', type=int, default=1, help='PIN Number, 1=PIN1, 2=PIN2 or custom value (decimal)')
307 verify_chv_parser.add_argument('pin_code', type=str, help='PIN code digits, \"PIN1\" or \"PIN2\" to get PIN code from external data source')
308
309 @cmd2.with_argparser(verify_chv_parser)
310 def do_verify_chv(self, opts):
311 """Verify (authenticate) using specified PIN code"""
312 pin = self.get_code(opts.pin_code)
313 (data, sw) = self._cmd.card._scc.verify_chv(opts.pin_nr, h2b(pin))
314 self._cmd.poutput("CHV verfication successful")
315
316 unblock_chv_parser = argparse.ArgumentParser()
317 unblock_chv_parser.add_argument('--pin-nr', type=int, default=1, help='PUK Number, 1=PIN1, 2=PIN2 or custom value (decimal)')
318 unblock_chv_parser.add_argument('puk_code', type=str, help='PUK code digits \"PUK1\" or \"PUK2\" to get PUK code from external data source')
319 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')
320
321 @cmd2.with_argparser(unblock_chv_parser)
322 def do_unblock_chv(self, opts):
323 """Unblock PIN code using specified PUK code"""
324 new_pin = self.get_code(opts.new_pin_code)
325 puk = self.get_code(opts.puk_code)
326 (data, sw) = self._cmd.card._scc.unblock_chv(opts.pin_nr, h2b(puk), h2b(new_pin))
327 self._cmd.poutput("CHV unblock successful")
328
329 change_chv_parser = argparse.ArgumentParser()
330 change_chv_parser.add_argument('--pin-nr', type=int, default=1, help='PUK Number, 1=PIN1, 2=PIN2 or custom value (decimal)')
331 change_chv_parser.add_argument('pin_code', type=str, help='PIN code digits \"PIN1\" or \"PIN2\" to get PIN code from external data source')
332 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')
333
334 @cmd2.with_argparser(change_chv_parser)
335 def do_change_chv(self, opts):
336 """Change PIN code to a new PIN code"""
337 new_pin = self.get_code(opts.new_pin_code)
338 pin = self.get_code(opts.pin_code)
339 (data, sw) = self._cmd.card._scc.change_chv(opts.pin_nr, h2b(pin), h2b(new_pin))
340 self._cmd.poutput("CHV change successful")
341
342 disable_chv_parser = argparse.ArgumentParser()
343 disable_chv_parser.add_argument('--pin-nr', type=int, default=1, help='PIN Number, 1=PIN1, 2=PIN2 or custom value (decimal)')
344 disable_chv_parser.add_argument('pin_code', type=str, help='PIN code digits, \"PIN1\" or \"PIN2\" to get PIN code from external data source')
345
346 @cmd2.with_argparser(disable_chv_parser)
347 def do_disable_chv(self, opts):
348 """Disable PIN code using specified PIN code"""
349 pin = self.get_code(opts.pin_code)
350 (data, sw) = self._cmd.card._scc.disable_chv(opts.pin_nr, h2b(pin))
351 self._cmd.poutput("CHV disable successful")
352
353 enable_chv_parser = argparse.ArgumentParser()
354 enable_chv_parser.add_argument('--pin-nr', type=int, default=1, help='PIN Number, 1=PIN1, 2=PIN2 or custom value (decimal)')
355 enable_chv_parser.add_argument('pin_code', type=str, help='PIN code digits, \"PIN1\" or \"PIN2\" to get PIN code from external data source')
356
357 @cmd2.with_argparser(enable_chv_parser)
358 def do_enable_chv(self, opts):
359 """Enable PIN code using specified PIN code"""
360 pin = self.get_code(opts.pin_code)
361 (data, sw) = self._cmd.card._scc.enable_chv(opts.pin_nr, h2b(pin))
362 self._cmd.poutput("CHV enable successful")
363
364
Harald Welteb2edd142021-01-08 23:29:35 +0100365def parse_options():
366
367 parser = OptionParser(usage="usage: %prog [options]")
368
369 parser.add_option("-d", "--device", dest="device", metavar="DEV",
370 help="Serial Device for SIM access [default: %default]",
371 default="/dev/ttyUSB0",
372 )
373 parser.add_option("-b", "--baud", dest="baudrate", type="int", metavar="BAUD",
374 help="Baudrate used for SIM access [default: %default]",
375 default=9600,
376 )
377 parser.add_option("-p", "--pcsc-device", dest="pcsc_dev", type='int', metavar="PCSC",
378 help="Which PC/SC reader number for SIM access",
379 default=None,
380 )
381 parser.add_option("--modem-device", dest="modem_dev", metavar="DEV",
382 help="Serial port of modem for Generic SIM Access (3GPP TS 27.007)",
383 default=None,
384 )
385 parser.add_option("--modem-baud", dest="modem_baud", type="int", metavar="BAUD",
386 help="Baudrate used for modem's port [default: %default]",
387 default=115200,
388 )
389 parser.add_option("--osmocon", dest="osmocon_sock", metavar="PATH",
390 help="Socket path for Calypso (e.g. Motorola C1XX) based reader (via OsmocomBB)",
391 default=None,
392 )
Philipp Maier681bc7b2021-03-10 19:52:41 +0100393 parser.add_option("--script", dest="script", metavar="PATH",
394 help="script with shell commands to be executed automatically",
395 default=None,
396 )
Harald Welteb2edd142021-01-08 23:29:35 +0100397
Philipp Maier2b11c322021-03-17 12:37:39 +0100398 parser.add_option("--csv", dest="csv", metavar="FILE",
399 help="Read card data from CSV file",
400 default=None,
401 )
402
Harald Welteb2edd142021-01-08 23:29:35 +0100403 parser.add_option("-a", "--pin-adm", dest="pin_adm",
404 help="ADM PIN used for provisioning (overwrites default)",
405 )
406 parser.add_option("-A", "--pin-adm-hex", dest="pin_adm_hex",
407 help="ADM PIN used for provisioning, as hex string (16 characters long",
408 )
409
410 (options, args) = parser.parse_args()
411
412 if args:
413 parser.error("Extraneous arguments")
414
415 return options
416
417
418
419if __name__ == '__main__':
420
421 # Parse options
422 opts = parse_options()
423
424 # Init card reader driver
425 sl = init_reader(opts)
426 if (sl == None):
427 exit(1)
428
429 # Create command layer
430 scc = SimCardCommands(transport=sl)
431
432 sl.wait_for_card();
433
434 card_handler = card_handler(sl)
435
436 card = card_detect("auto", scc)
437 if card is None:
438 print("No card detected!")
439 sys.exit(2)
440
441 profile = CardProfileUICC()
Harald Welte5ce35242021-04-02 20:27:05 +0200442 profile.add_application(CardApplicationUSIM)
443 profile.add_application(CardApplicationISIM)
Philipp Maier1e896f32021-03-10 17:02:53 +0100444
Harald Welteb2edd142021-01-08 23:29:35 +0100445 rs = RuntimeState(card, profile)
Harald Welte4f2c5462021-04-03 11:48:22 +0200446 # inform the transport that we can do context-specific SW interpretation
447 sl.set_sw_interpreter(rs)
Harald Welteb2edd142021-01-08 23:29:35 +0100448
449 # FIXME: do this dynamically
450 rs.mf.add_file(DF_TELECOM())
451 rs.mf.add_file(DF_GSM())
Harald Welteb2edd142021-01-08 23:29:35 +0100452
Philipp Maier681bc7b2021-03-10 19:52:41 +0100453 app = PysimApp(card, rs, opts.script)
Philipp Maier9c1a4ec2021-03-10 12:38:15 +0100454 rs.select('MF', app)
Philipp Maier228c98e2021-03-10 20:14:06 +0100455
Philipp Maier2b11c322021-03-17 12:37:39 +0100456 # Register csv-file as card data provider, either from specified CSV
457 # or from CSV file in home directory
458 csv_default = str(Path.home()) + "/.osmocom/pysim/card_data.csv"
459 if opts.csv:
Harald Welte4442b3d2021-04-03 09:00:16 +0200460 card_key_provider_register(CardKeyProviderCsv(opts.csv))
Philipp Maier2b11c322021-03-17 12:37:39 +0100461 if os.path.isfile(csv_default):
Harald Welte4442b3d2021-04-03 09:00:16 +0200462 card_key_provider_register(CardKeyProviderCsv(csv_default))
Philipp Maier2b11c322021-03-17 12:37:39 +0100463
Philipp Maier228c98e2021-03-10 20:14:06 +0100464 # If the user supplies an ADM PIN at via commandline args authenticate
465 # immediatley so that the user does not have to use the shell commands
466 pin_adm = sanitize_pin_adm(opts.pin_adm, opts.pin_adm_hex)
467 if pin_adm:
468 try:
469 card.verify_adm(h2b(pin_adm))
470 except Exception as e:
471 print(e)
472
Harald Welteb2edd142021-01-08 23:29:35 +0100473 app.cmdloop()