blob: 385cacf93b81a82f951e829dd0d7fa97e9f562c9 [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):
29 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)
52 if len(fcp[4:])/2 == exp_tlv_len:
53 skip = 4
54 else:
55 exp_tlv_len = int(fcp[2:6], 16)
56 if len(fcp[4:])/2 == exp_tlv_len:
57 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
103 def select_file(self, dir_list):
104 rv = []
105 for i in dir_list:
Philipp Maier41460862017-03-21 12:05:30 +0100106 data, sw = self._tp.send_apdu_checksw(self.cla_byte + "a4" + self.sel_ctrl + "02" + i)
Sylvain Munaut76504e02010-12-07 00:24:32 +0100107 rv.append(data)
108 return rv
109
Philipp Maier0ad5bcf2019-12-31 17:55:47 +0100110 def select_adf(self, aid):
111 aidlen = ("0" + format(len(aid)/2, 'x'))[-2:]
112 return self._tp.send_apdu_checksw(self.cla_byte + "a4" + "0404" + aidlen + aid)
113
Sylvain Munaut76504e02010-12-07 00:24:32 +0100114 def read_binary(self, ef, length=None, offset=0):
115 if not hasattr(type(ef), '__iter__'):
116 ef = [ef]
117 r = self.select_file(ef)
Max5491c482019-01-03 11:29:25 +0100118 if len(r[-1]) == 0:
119 return (None, None)
Sylvain Munaut76504e02010-12-07 00:24:32 +0100120 if length is None:
Philipp Maier0e3fcaa2018-06-13 12:34:03 +0200121 length = self.__len(r) - offset
Jan Balke14b350f2015-01-26 11:15:25 +0100122 pdu = self.cla_byte + 'b0%04x%02x' % (offset, (min(256, length) & 0xff))
Sylvain Munaut76504e02010-12-07 00:24:32 +0100123 return self._tp.send_apdu(pdu)
124
125 def update_binary(self, ef, data, offset=0):
126 if not hasattr(type(ef), '__iter__'):
127 ef = [ef]
128 self.select_file(ef)
Jan Balke14b350f2015-01-26 11:15:25 +0100129 pdu = self.cla_byte + 'd6%04x%02x' % (offset, len(data)/2) + data
Harald Welte982a3072011-03-22 21:47:20 +0100130 return self._tp.send_apdu_checksw(pdu)
Sylvain Munaut76504e02010-12-07 00:24:32 +0100131
132 def read_record(self, ef, rec_no):
133 if not hasattr(type(ef), '__iter__'):
134 ef = [ef]
135 r = self.select_file(ef)
Philipp Maier0e3fcaa2018-06-13 12:34:03 +0200136 rec_length = self.__record_len(r)
Jan Balke14b350f2015-01-26 11:15:25 +0100137 pdu = self.cla_byte + 'b2%02x04%02x' % (rec_no, rec_length)
Sylvain Munaut76504e02010-12-07 00:24:32 +0100138 return self._tp.send_apdu(pdu)
139
140 def update_record(self, ef, rec_no, data, force_len=False):
141 if not hasattr(type(ef), '__iter__'):
142 ef = [ef]
143 r = self.select_file(ef)
144 if not force_len:
Philipp Maier0e3fcaa2018-06-13 12:34:03 +0200145 rec_length = self.__record_len(r)
Sylvain Munaut76504e02010-12-07 00:24:32 +0100146 if (len(data)/2 != rec_length):
147 raise ValueError('Invalid data length (expected %d, got %d)' % (rec_length, len(data)/2))
148 else:
149 rec_length = len(data)/2
Jan Balke14b350f2015-01-26 11:15:25 +0100150 pdu = (self.cla_byte + 'dc%02x04%02x' % (rec_no, rec_length)) + data
Harald Welte982a3072011-03-22 21:47:20 +0100151 return self._tp.send_apdu_checksw(pdu)
Sylvain Munaut76504e02010-12-07 00:24:32 +0100152
153 def record_size(self, ef):
154 r = self.select_file(ef)
Philipp Maier0e3fcaa2018-06-13 12:34:03 +0200155 return self.__record_len(r)
Sylvain Munaut76504e02010-12-07 00:24:32 +0100156
157 def record_count(self, ef):
158 r = self.select_file(ef)
Philipp Maier0e3fcaa2018-06-13 12:34:03 +0200159 return self.__len(r) // self.__record_len(r)
Sylvain Munaut76504e02010-12-07 00:24:32 +0100160
161 def run_gsm(self, rand):
162 if len(rand) != 32:
163 raise ValueError('Invalid rand')
164 self.select_file(['3f00', '7f20'])
Jan Balke14b350f2015-01-26 11:15:25 +0100165 return self._tp.send_apdu(self.cla_byte + '88000010' + rand)
Sylvain Munaut76504e02010-12-07 00:24:32 +0100166
167 def reset_card(self):
168 return self._tp.reset_card()
169
170 def verify_chv(self, chv_no, code):
171 fc = rpad(b2h(code), 16)
Neels Hofmeyr3ce84d92017-03-21 13:07:46 +0100172 return self._tp.send_apdu_checksw(self.cla_byte + '2000' + ('%02X' % chv_no) + '08' + fc)