blob: b7fb77f717064cc0eeebf9e62efba558dae989c3 [file] [log] [blame]
Sylvain Munaut76504e02010-12-07 00:24:32 +01001#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3
4""" pySim: SIM Card commands according to ISO 7816-4 and TS 11.11
5"""
6
7#
8# Copyright (C) 2009-2010 Sylvain Munaut <tnt@246tNt.com>
9# Copyright (C) 2010 Harald Welte <laforge@gnumonks.org>
10#
11# This program is free software: you can redistribute it and/or modify
12# it under the terms of the GNU General Public License as published by
13# the Free Software Foundation, either version 2 of the License, or
14# (at your option) any later version.
15#
16# This program is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with this program. If not, see <http://www.gnu.org/licenses/>.
23#
24
Sylvain Munaut530076e2010-12-23 20:28:58 +010025from pySim.utils import rpad, b2h
26
Sylvain Munaut76504e02010-12-07 00:24:32 +010027
28class SimCardCommands(object):
29 def __init__(self, transport):
30 self._tp = transport;
Jan Balke14b350f2015-01-26 11:15:25 +010031 self._cla_byte = "a0"
32
33 @property
34 def cla_byte(self):
35 return self._cla_byte
36 @cla_byte.setter
37 def cla_byte(self, value):
38 self._cla_byte = value
39
Sylvain Munaut76504e02010-12-07 00:24:32 +010040
41 def select_file(self, dir_list):
42 rv = []
43 for i in dir_list:
Harald Welte9a1dcea2016-10-27 14:40:02 +020044 data, sw = self._tp.send_apdu_checksw(self.cla_byte + "a4000002" + i)
Sylvain Munaut76504e02010-12-07 00:24:32 +010045 rv.append(data)
46 return rv
47
48 def read_binary(self, ef, length=None, offset=0):
49 if not hasattr(type(ef), '__iter__'):
50 ef = [ef]
51 r = self.select_file(ef)
52 if length is None:
53 length = int(r[-1][4:8], 16) - offset
Jan Balke14b350f2015-01-26 11:15:25 +010054 pdu = self.cla_byte + 'b0%04x%02x' % (offset, (min(256, length) & 0xff))
Sylvain Munaut76504e02010-12-07 00:24:32 +010055 return self._tp.send_apdu(pdu)
56
57 def update_binary(self, ef, data, offset=0):
58 if not hasattr(type(ef), '__iter__'):
59 ef = [ef]
60 self.select_file(ef)
Jan Balke14b350f2015-01-26 11:15:25 +010061 pdu = self.cla_byte + 'd6%04x%02x' % (offset, len(data)/2) + data
Harald Welte982a3072011-03-22 21:47:20 +010062 return self._tp.send_apdu_checksw(pdu)
Sylvain Munaut76504e02010-12-07 00:24:32 +010063
64 def read_record(self, ef, rec_no):
65 if not hasattr(type(ef), '__iter__'):
66 ef = [ef]
67 r = self.select_file(ef)
68 rec_length = int(r[-1][28:30], 16)
Jan Balke14b350f2015-01-26 11:15:25 +010069 pdu = self.cla_byte + 'b2%02x04%02x' % (rec_no, rec_length)
Sylvain Munaut76504e02010-12-07 00:24:32 +010070 return self._tp.send_apdu(pdu)
71
72 def update_record(self, ef, rec_no, data, force_len=False):
73 if not hasattr(type(ef), '__iter__'):
74 ef = [ef]
75 r = self.select_file(ef)
76 if not force_len:
77 rec_length = int(r[-1][28:30], 16)
78 if (len(data)/2 != rec_length):
79 raise ValueError('Invalid data length (expected %d, got %d)' % (rec_length, len(data)/2))
80 else:
81 rec_length = len(data)/2
Jan Balke14b350f2015-01-26 11:15:25 +010082 pdu = (self.cla_byte + 'dc%02x04%02x' % (rec_no, rec_length)) + data
Harald Welte982a3072011-03-22 21:47:20 +010083 return self._tp.send_apdu_checksw(pdu)
Sylvain Munaut76504e02010-12-07 00:24:32 +010084
85 def record_size(self, ef):
86 r = self.select_file(ef)
87 return int(r[-1][28:30], 16)
88
89 def record_count(self, ef):
90 r = self.select_file(ef)
91 return int(r[-1][4:8], 16) // int(r[-1][28:30], 16)
92
93 def run_gsm(self, rand):
94 if len(rand) != 32:
95 raise ValueError('Invalid rand')
96 self.select_file(['3f00', '7f20'])
Jan Balke14b350f2015-01-26 11:15:25 +010097 return self._tp.send_apdu(self.cla_byte + '88000010' + rand)
Sylvain Munaut76504e02010-12-07 00:24:32 +010098
99 def reset_card(self):
100 return self._tp.reset_card()
101
102 def verify_chv(self, chv_no, code):
103 fc = rpad(b2h(code), 16)
Neels Hofmeyr3ce84d92017-03-21 13:07:46 +0100104 return self._tp.send_apdu_checksw(self.cla_byte + '2000' + ('%02X' % chv_no) + '08' + fc)