blob: 7b8ebec99aa89c6e5f149265dc134609a6c03690 [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
Sylvain Munaut76504e02010-12-07 00:24:32 +010026
27class SimCardCommands(object):
28 def __init__(self, transport):
Daniel Willmann677d41b2020-10-19 10:34:31 +020029 self._tp = transport
Jan Balke14b350f2015-01-26 11:15:25 +010030 self._cla_byte = "a0"
Philipp Maier41460862017-03-21 12:05:30 +010031 self.sel_ctrl = "0000"
Jan Balke14b350f2015-01-26 11:15:25 +010032
Philipp Maiercdfdd412019-12-20 13:39:24 +010033 # Extract a single FCP item from TLV
34 def __parse_fcp(self, fcp):
Philipp Maier0e3fcaa2018-06-13 12:34:03 +020035 # see also: ETSI TS 102 221, chapter 11.1.1.3.1 Response for MF,
36 # DF or ADF
Denis 'GNUtoo' Carikli84d2cb32019-09-12 01:46:25 +020037 from pytlv.TLV import TLV
Philipp Maier91f26d72019-03-20 12:12:51 +010038 tlvparser = TLV(['82', '83', '84', 'a5', '8a', '8b', '8c', '80', 'ab', 'c6', '81', '88'])
Philipp Maier0e3fcaa2018-06-13 12:34:03 +020039
40 # pytlv is case sensitive!
41 fcp = fcp.lower()
42
43 if fcp[0:2] != '62':
44 raise ValueError('Tag of the FCP template does not match, expected 62 but got %s'%fcp[0:2])
45
46 # Unfortunately the spec is not very clear if the FCP length is
47 # coded as one or two byte vale, so we have to try it out by
48 # checking if the length of the remaining TLV string matches
49 # what we get in the length field.
50 # See also ETSI TS 102 221, chapter 11.1.1.3.0 Base coding.
51 exp_tlv_len = int(fcp[2:4], 16)
Vadim Yanitskiy99affe12020-02-15 05:03:09 +070052 if len(fcp[4:]) // 2 == exp_tlv_len:
Philipp Maier0e3fcaa2018-06-13 12:34:03 +020053 skip = 4
54 else:
55 exp_tlv_len = int(fcp[2:6], 16)
Vadim Yanitskiy99affe12020-02-15 05:03:09 +070056 if len(fcp[4:]) // 2 == exp_tlv_len:
Philipp Maier0e3fcaa2018-06-13 12:34:03 +020057 skip = 6
58
59 # Skip FCP tag and length
60 tlv = fcp[skip:]
Philipp Maiercdfdd412019-12-20 13:39:24 +010061 return tlvparser.parse(tlv)
Philipp Maier0e3fcaa2018-06-13 12:34:03 +020062
Denis 'GNUtoo' Carikli84d2cb32019-09-12 01:46:25 +020063 # Tell the length of a record by the card response
64 # USIMs respond with an FCP template, which is different
65 # from what SIMs responds. See also:
66 # USIM: ETSI TS 102 221, chapter 11.1.1.3 Response Data
67 # SIM: GSM 11.11, chapter 9.2.1 SELECT
Philipp Maier0e3fcaa2018-06-13 12:34:03 +020068 def __record_len(self, r):
Denis 'GNUtoo' Carikli84d2cb32019-09-12 01:46:25 +020069 if self.sel_ctrl == "0004":
Philipp Maiercdfdd412019-12-20 13:39:24 +010070 tlv_parsed = self.__parse_fcp(r[-1])
71 file_descriptor = tlv_parsed['82']
72 # See also ETSI TS 102 221, chapter 11.1.1.4.3 File Descriptor
73 return int(file_descriptor[4:8], 16)
Denis 'GNUtoo' Carikli84d2cb32019-09-12 01:46:25 +020074 else:
75 return int(r[-1][28:30], 16)
Philipp Maier0e3fcaa2018-06-13 12:34:03 +020076
Denis 'GNUtoo' Carikli84d2cb32019-09-12 01:46:25 +020077 # Tell the length of a binary file. See also comment
78 # above.
Philipp Maier0e3fcaa2018-06-13 12:34:03 +020079 def __len(self, r):
Denis 'GNUtoo' Carikli84d2cb32019-09-12 01:46:25 +020080 if self.sel_ctrl == "0004":
Philipp Maiercdfdd412019-12-20 13:39:24 +010081 tlv_parsed = self.__parse_fcp(r[-1])
82 return int(tlv_parsed['80'], 16)
Denis 'GNUtoo' Carikli84d2cb32019-09-12 01:46:25 +020083 else:
84 return int(r[-1][4:8], 16)
Philipp Maier0e3fcaa2018-06-13 12:34:03 +020085
Alexander Chemerisd2d660a2017-07-18 16:52:25 +030086 def get_atr(self):
87 return self._tp.get_atr()
88
Jan Balke14b350f2015-01-26 11:15:25 +010089 @property
90 def cla_byte(self):
91 return self._cla_byte
92 @cla_byte.setter
93 def cla_byte(self, value):
94 self._cla_byte = value
95
Philipp Maier41460862017-03-21 12:05:30 +010096 @property
97 def sel_ctrl(self):
98 return self._sel_ctrl
99 @sel_ctrl.setter
100 def sel_ctrl(self, value):
101 self._sel_ctrl = value
Sylvain Munaut76504e02010-12-07 00:24:32 +0100102
Harald Welteca673942020-06-03 15:19:40 +0200103 def try_select_file(self, dir_list):
104 rv = []
105 if type(dir_list) is not list:
106 dir_list = [dir_list]
107 for i in dir_list:
108 data, sw = self._tp.send_apdu(self.cla_byte + "a4" + self.sel_ctrl + "02" + i)
109 rv.append((data, sw))
110 if sw != '9000':
111 return rv
112 return rv
113
Sylvain Munaut76504e02010-12-07 00:24:32 +0100114 def select_file(self, dir_list):
115 rv = []
Vadim Yanitskiyedf873d2020-02-27 01:40:14 +0700116 if type(dir_list) is not list:
117 dir_list = [dir_list]
Sylvain Munaut76504e02010-12-07 00:24:32 +0100118 for i in dir_list:
Philipp Maier41460862017-03-21 12:05:30 +0100119 data, sw = self._tp.send_apdu_checksw(self.cla_byte + "a4" + self.sel_ctrl + "02" + i)
Sylvain Munaut76504e02010-12-07 00:24:32 +0100120 rv.append(data)
121 return rv
122
Philipp Maier0ad5bcf2019-12-31 17:55:47 +0100123 def select_adf(self, aid):
Vadim Yanitskiy99affe12020-02-15 05:03:09 +0700124 aidlen = ("0" + format(len(aid) // 2, 'x'))[-2:]
Philipp Maier0ad5bcf2019-12-31 17:55:47 +0100125 return self._tp.send_apdu_checksw(self.cla_byte + "a4" + "0404" + aidlen + aid)
126
Sylvain Munaut76504e02010-12-07 00:24:32 +0100127 def read_binary(self, ef, length=None, offset=0):
Sylvain Munaut76504e02010-12-07 00:24:32 +0100128 r = self.select_file(ef)
Max5491c482019-01-03 11:29:25 +0100129 if len(r[-1]) == 0:
130 return (None, None)
Sylvain Munaut76504e02010-12-07 00:24:32 +0100131 if length is None:
Philipp Maier0e3fcaa2018-06-13 12:34:03 +0200132 length = self.__len(r) - offset
Sebastian Viviani0e9f93f2020-04-17 16:42:09 +0100133 total_data = ''
134 while offset < length:
135 chunk_len = min(255, length-offset)
136 pdu = self.cla_byte + 'b0%04x%02x' % (offset, chunk_len)
137 data,sw = self._tp.send_apdu(pdu)
138 if sw == '9000':
139 total_data += data
140 offset += chunk_len
141 else:
142 raise ValueError('Failed to read (offset %d)' % (offset))
143 return total_data, sw
Sylvain Munaut76504e02010-12-07 00:24:32 +0100144
Philipp Maier30eb8ca2020-05-11 22:51:37 +0200145 def update_binary(self, ef, data, offset=0, verify=False):
Sylvain Munaut76504e02010-12-07 00:24:32 +0100146 self.select_file(ef)
Vadim Yanitskiy99affe12020-02-15 05:03:09 +0700147 pdu = self.cla_byte + 'd6%04x%02x' % (offset, len(data) // 2) + data
Philipp Maier30eb8ca2020-05-11 22:51:37 +0200148 res = self._tp.send_apdu_checksw(pdu)
149 if verify:
150 self.verify_binary(ef, data, offset)
151 return res
152
153 def verify_binary(self, ef, data, offset=0):
154 res = self.read_binary(ef, len(data) // 2, offset)
155 if res[0].lower() != data.lower():
156 raise ValueError('Binary verification failed (expected %s, got %s)' % (data.lower(), res[0].lower()))
Sylvain Munaut76504e02010-12-07 00:24:32 +0100157
158 def read_record(self, ef, rec_no):
Sylvain Munaut76504e02010-12-07 00:24:32 +0100159 r = self.select_file(ef)
Philipp Maier0e3fcaa2018-06-13 12:34:03 +0200160 rec_length = self.__record_len(r)
Jan Balke14b350f2015-01-26 11:15:25 +0100161 pdu = self.cla_byte + 'b2%02x04%02x' % (rec_no, rec_length)
Sylvain Munaut76504e02010-12-07 00:24:32 +0100162 return self._tp.send_apdu(pdu)
163
Philipp Maier30eb8ca2020-05-11 22:51:37 +0200164 def update_record(self, ef, rec_no, data, force_len=False, verify=False):
Sylvain Munaut76504e02010-12-07 00:24:32 +0100165 r = self.select_file(ef)
166 if not force_len:
Philipp Maier0e3fcaa2018-06-13 12:34:03 +0200167 rec_length = self.__record_len(r)
Vadim Yanitskiy99affe12020-02-15 05:03:09 +0700168 if (len(data) // 2 != rec_length):
169 raise ValueError('Invalid data length (expected %d, got %d)' % (rec_length, len(data) // 2))
Sylvain Munaut76504e02010-12-07 00:24:32 +0100170 else:
Vadim Yanitskiy99affe12020-02-15 05:03:09 +0700171 rec_length = len(data) // 2
Jan Balke14b350f2015-01-26 11:15:25 +0100172 pdu = (self.cla_byte + 'dc%02x04%02x' % (rec_no, rec_length)) + data
Philipp Maier30eb8ca2020-05-11 22:51:37 +0200173 res = self._tp.send_apdu_checksw(pdu)
174 if verify:
175 self.verify_record(ef, rec_no, data)
176 return res
177
178 def verify_record(self, ef, rec_no, data):
179 res = self.read_record(ef, rec_no)
180 if res[0].lower() != data.lower():
181 raise ValueError('Record verification failed (expected %s, got %s)' % (data.lower(), res[0].lower()))
Sylvain Munaut76504e02010-12-07 00:24:32 +0100182
183 def record_size(self, ef):
184 r = self.select_file(ef)
Philipp Maier0e3fcaa2018-06-13 12:34:03 +0200185 return self.__record_len(r)
Sylvain Munaut76504e02010-12-07 00:24:32 +0100186
187 def record_count(self, ef):
188 r = self.select_file(ef)
Philipp Maier0e3fcaa2018-06-13 12:34:03 +0200189 return self.__len(r) // self.__record_len(r)
Sylvain Munaut76504e02010-12-07 00:24:32 +0100190
Philipp Maier32daaf52020-05-11 21:48:33 +0200191 def binary_size(self, ef):
192 r = self.select_file(ef)
193 return self.__len(r)
194
Sylvain Munaut76504e02010-12-07 00:24:32 +0100195 def run_gsm(self, rand):
196 if len(rand) != 32:
197 raise ValueError('Invalid rand')
198 self.select_file(['3f00', '7f20'])
Jan Balke14b350f2015-01-26 11:15:25 +0100199 return self._tp.send_apdu(self.cla_byte + '88000010' + rand)
Sylvain Munaut76504e02010-12-07 00:24:32 +0100200
201 def reset_card(self):
202 return self._tp.reset_card()
203
204 def verify_chv(self, chv_no, code):
205 fc = rpad(b2h(code), 16)
Neels Hofmeyr3ce84d92017-03-21 13:07:46 +0100206 return self._tp.send_apdu_checksw(self.cla_byte + '2000' + ('%02X' % chv_no) + '08' + fc)