blob: 6acdb2eb6aa86e88442281fdc68ff01cf452fc24 [file] [log] [blame]
Sylvain Munaut76504e02010-12-07 00:24:32 +01001# -*- coding: utf-8 -*-
2
3""" pySim: SIM Card commands according to ISO 7816-4 and TS 11.11
4"""
5
6#
7# Copyright (C) 2009-2010 Sylvain Munaut <tnt@246tNt.com>
Harald Welte917d98c2021-04-21 11:51:25 +02008# Copyright (C) 2010-2021 Harald Welte <laforge@gnumonks.org>
Sylvain Munaut76504e02010-12-07 00:24:32 +01009#
10# This program is free software: you can redistribute it and/or modify
11# it under the terms of the GNU General Public License as published by
12# the Free Software Foundation, either version 2 of the License, or
13# (at your option) any later version.
14#
15# This program is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18# GNU General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with this program. If not, see <http://www.gnu.org/licenses/>.
22#
23
Harald Welte15fae982021-04-10 10:22:27 +020024from construct import *
25from pySim.construct import LV
Philipp Maier40ea4a42022-06-02 14:45:41 +020026from pySim.utils import rpad, b2h, h2b, sw_match, bertlv_encode_len, Hexstr, h2i, str_sanitize, expand_hex
Philipp Maier46f09af2021-03-25 20:24:27 +010027from pySim.exceptions import SwMatchError
Sylvain Munaut76504e02010-12-07 00:24:32 +010028
Harald Weltec91085e2022-02-10 18:05:45 +010029
Vadim Yanitskiy04b5d9d2022-07-07 03:05:30 +070030class SimCardCommands:
Harald Weltec91085e2022-02-10 18:05:45 +010031 def __init__(self, transport):
32 self._tp = transport
33 self.cla_byte = "a0"
34 self.sel_ctrl = "0000"
Jan Balke14b350f2015-01-26 11:15:25 +010035
Harald Weltec91085e2022-02-10 18:05:45 +010036 # Extract a single FCP item from TLV
37 def __parse_fcp(self, fcp):
38 # see also: ETSI TS 102 221, chapter 11.1.1.3.1 Response for MF,
39 # DF or ADF
40 from pytlv.TLV import TLV
41 tlvparser = TLV(['82', '83', '84', 'a5', '8a', '8b',
42 '8c', '80', 'ab', 'c6', '81', '88'])
Philipp Maier0e3fcaa2018-06-13 12:34:03 +020043
Harald Weltec91085e2022-02-10 18:05:45 +010044 # pytlv is case sensitive!
45 fcp = fcp.lower()
Philipp Maier0e3fcaa2018-06-13 12:34:03 +020046
Harald Weltec91085e2022-02-10 18:05:45 +010047 if fcp[0:2] != '62':
48 raise ValueError(
49 'Tag of the FCP template does not match, expected 62 but got %s' % fcp[0:2])
Philipp Maier0e3fcaa2018-06-13 12:34:03 +020050
Harald Weltec91085e2022-02-10 18:05:45 +010051 # Unfortunately the spec is not very clear if the FCP length is
52 # coded as one or two byte vale, so we have to try it out by
53 # checking if the length of the remaining TLV string matches
54 # what we get in the length field.
55 # See also ETSI TS 102 221, chapter 11.1.1.3.0 Base coding.
56 exp_tlv_len = int(fcp[2:4], 16)
57 if len(fcp[4:]) // 2 == exp_tlv_len:
58 skip = 4
59 else:
60 exp_tlv_len = int(fcp[2:6], 16)
61 if len(fcp[4:]) // 2 == exp_tlv_len:
62 skip = 6
Philipp Maier0e3fcaa2018-06-13 12:34:03 +020063
Harald Weltec91085e2022-02-10 18:05:45 +010064 # Skip FCP tag and length
65 tlv = fcp[skip:]
66 return tlvparser.parse(tlv)
Philipp Maier0e3fcaa2018-06-13 12:34:03 +020067
Harald Weltec91085e2022-02-10 18:05:45 +010068 # Tell the length of a record by the card response
69 # USIMs respond with an FCP template, which is different
70 # from what SIMs responds. See also:
71 # USIM: ETSI TS 102 221, chapter 11.1.1.3 Response Data
72 # SIM: GSM 11.11, chapter 9.2.1 SELECT
73 def __record_len(self, r) -> int:
74 if self.sel_ctrl == "0004":
75 tlv_parsed = self.__parse_fcp(r[-1])
76 file_descriptor = tlv_parsed['82']
77 # See also ETSI TS 102 221, chapter 11.1.1.4.3 File Descriptor
78 return int(file_descriptor[4:8], 16)
79 else:
80 return int(r[-1][28:30], 16)
Philipp Maier0e3fcaa2018-06-13 12:34:03 +020081
Harald Weltec91085e2022-02-10 18:05:45 +010082 # Tell the length of a binary file. See also comment
83 # above.
84 def __len(self, r) -> int:
85 if self.sel_ctrl == "0004":
86 tlv_parsed = self.__parse_fcp(r[-1])
87 return int(tlv_parsed['80'], 16)
88 else:
89 return int(r[-1][4:8], 16)
Philipp Maier0e3fcaa2018-06-13 12:34:03 +020090
Harald Weltec91085e2022-02-10 18:05:45 +010091 def get_atr(self) -> str:
92 """Return the ATR of the currently inserted card."""
93 return self._tp.get_atr()
Alexander Chemerisd2d660a2017-07-18 16:52:25 +030094
Harald Weltec91085e2022-02-10 18:05:45 +010095 def try_select_path(self, dir_list):
96 """ Try to select a specified path
Philipp Maier712251a2021-11-04 17:09:37 +010097
Harald Weltec91085e2022-02-10 18:05:45 +010098 Args:
99 dir_list : list of hex-string FIDs
100 """
Philipp Maier712251a2021-11-04 17:09:37 +0100101
Harald Weltec91085e2022-02-10 18:05:45 +0100102 rv = []
103 if type(dir_list) is not list:
104 dir_list = [dir_list]
105 for i in dir_list:
106 data, sw = self._tp.send_apdu(
107 self.cla_byte + "a4" + self.sel_ctrl + "02" + i)
108 rv.append((data, sw))
109 if sw != '9000':
110 return rv
111 return rv
Harald Welteca673942020-06-03 15:19:40 +0200112
Harald Weltec91085e2022-02-10 18:05:45 +0100113 def select_path(self, dir_list):
114 """Execute SELECT for an entire list/path of FIDs.
Harald Welteee3501f2021-04-02 13:00:18 +0200115
Harald Weltec91085e2022-02-10 18:05:45 +0100116 Args:
117 dir_list: list of FIDs representing the path to select
Harald Welteee3501f2021-04-02 13:00:18 +0200118
Harald Weltec91085e2022-02-10 18:05:45 +0100119 Returns:
120 list of return values (FCP in hex encoding) for each element of the path
121 """
122 rv = []
123 if type(dir_list) is not list:
124 dir_list = [dir_list]
125 for i in dir_list:
126 data, sw = self.select_file(i)
127 rv.append(data)
128 return rv
Sylvain Munaut76504e02010-12-07 00:24:32 +0100129
Harald Weltec91085e2022-02-10 18:05:45 +0100130 def select_file(self, fid: str):
131 """Execute SELECT a given file by FID.
Philipp Maier712251a2021-11-04 17:09:37 +0100132
Harald Weltec91085e2022-02-10 18:05:45 +0100133 Args:
134 fid : file identifier as hex string
135 """
Philipp Maier712251a2021-11-04 17:09:37 +0100136
Harald Weltec91085e2022-02-10 18:05:45 +0100137 return self._tp.send_apdu_checksw(self.cla_byte + "a4" + self.sel_ctrl + "02" + fid)
Harald Welte85484a92021-01-21 16:08:56 +0100138
Harald Welte3729c472022-02-12 14:36:37 +0100139 def select_parent_df(self):
140 """Execute SELECT to switch to the parent DF """
141 return self._tp.send_apdu_checksw(self.cla_byte + "a4030400")
142
Harald Weltec91085e2022-02-10 18:05:45 +0100143 def select_adf(self, aid: str):
144 """Execute SELECT a given Applicaiton ADF.
Philipp Maier712251a2021-11-04 17:09:37 +0100145
Harald Weltec91085e2022-02-10 18:05:45 +0100146 Args:
147 aid : application identifier as hex string
148 """
Philipp Maier712251a2021-11-04 17:09:37 +0100149
Harald Weltec91085e2022-02-10 18:05:45 +0100150 aidlen = ("0" + format(len(aid) // 2, 'x'))[-2:]
151 return self._tp.send_apdu_checksw(self.cla_byte + "a4" + "0404" + aidlen + aid)
Philipp Maier0ad5bcf2019-12-31 17:55:47 +0100152
Harald Weltec91085e2022-02-10 18:05:45 +0100153 def read_binary(self, ef, length: int = None, offset: int = 0):
154 """Execute READD BINARY.
Harald Welteee3501f2021-04-02 13:00:18 +0200155
Harald Weltec91085e2022-02-10 18:05:45 +0100156 Args:
157 ef : string or list of strings indicating name or path of transparent EF
158 length : number of bytes to read
159 offset : byte offset in file from which to start reading
160 """
161 r = self.select_path(ef)
162 if len(r[-1]) == 0:
163 return (None, None)
164 if length is None:
165 length = self.__len(r) - offset
166 if length < 0:
167 return (None, None)
Philipp Maiere087f902021-11-03 11:46:05 +0100168
Harald Weltec91085e2022-02-10 18:05:45 +0100169 total_data = ''
170 chunk_offset = 0
171 while chunk_offset < length:
172 chunk_len = min(255, length-chunk_offset)
173 pdu = self.cla_byte + \
174 'b0%04x%02x' % (offset + chunk_offset, chunk_len)
175 try:
176 data, sw = self._tp.send_apdu_checksw(pdu)
177 except Exception as e:
178 raise ValueError('%s, failed to read (offset %d)' %
179 (str_sanitize(str(e)), offset))
180 total_data += data
181 chunk_offset += chunk_len
182 return total_data, sw
Sylvain Munaut76504e02010-12-07 00:24:32 +0100183
Harald Weltec91085e2022-02-10 18:05:45 +0100184 def update_binary(self, ef, data: str, offset: int = 0, verify: bool = False, conserve: bool = False):
185 """Execute UPDATE BINARY.
Harald Welteee3501f2021-04-02 13:00:18 +0200186
Harald Weltec91085e2022-02-10 18:05:45 +0100187 Args:
188 ef : string or list of strings indicating name or path of transparent EF
189 data : hex string of data to be written
190 offset : byte offset in file from which to start writing
191 verify : Whether or not to verify data after write
192 """
Philipp Maier40ea4a42022-06-02 14:45:41 +0200193
194 file_len = self.binary_size(ef)
195 data = expand_hex(data, file_len)
196
Harald Weltec91085e2022-02-10 18:05:45 +0100197 data_length = len(data) // 2
Philipp Maier38c74f62021-03-17 17:19:52 +0100198
Harald Weltec91085e2022-02-10 18:05:45 +0100199 # Save write cycles by reading+comparing before write
200 if conserve:
201 data_current, sw = self.read_binary(ef, data_length, offset)
202 if data_current == data:
203 return None, sw
Philipp Maier38c74f62021-03-17 17:19:52 +0100204
Harald Weltec91085e2022-02-10 18:05:45 +0100205 self.select_path(ef)
206 total_data = ''
207 chunk_offset = 0
208 while chunk_offset < data_length:
209 chunk_len = min(255, data_length - chunk_offset)
210 # chunk_offset is bytes, but data slicing is hex chars, so we need to multiply by 2
211 pdu = self.cla_byte + \
212 'd6%04x%02x' % (offset + chunk_offset, chunk_len) + \
213 data[chunk_offset*2: (chunk_offset+chunk_len)*2]
214 try:
215 chunk_data, chunk_sw = self._tp.send_apdu_checksw(pdu)
216 except Exception as e:
217 raise ValueError('%s, failed to write chunk (chunk_offset %d, chunk_len %d)' %
218 (str_sanitize(str(e)), chunk_offset, chunk_len))
219 total_data += data
220 chunk_offset += chunk_len
221 if verify:
222 self.verify_binary(ef, data, offset)
223 return total_data, chunk_sw
Philipp Maier30eb8ca2020-05-11 22:51:37 +0200224
Harald Weltec91085e2022-02-10 18:05:45 +0100225 def verify_binary(self, ef, data: str, offset: int = 0):
226 """Verify contents of transparent EF.
Harald Welteee3501f2021-04-02 13:00:18 +0200227
Harald Weltec91085e2022-02-10 18:05:45 +0100228 Args:
229 ef : string or list of strings indicating name or path of transparent EF
230 data : hex string of expected data
231 offset : byte offset in file from which to start verifying
232 """
233 res = self.read_binary(ef, len(data) // 2, offset)
234 if res[0].lower() != data.lower():
235 raise ValueError('Binary verification failed (expected %s, got %s)' % (
236 data.lower(), res[0].lower()))
Sylvain Munaut76504e02010-12-07 00:24:32 +0100237
Harald Weltec91085e2022-02-10 18:05:45 +0100238 def read_record(self, ef, rec_no: int):
239 """Execute READ RECORD.
Harald Welteee3501f2021-04-02 13:00:18 +0200240
Harald Weltec91085e2022-02-10 18:05:45 +0100241 Args:
242 ef : string or list of strings indicating name or path of linear fixed EF
243 rec_no : record number to read
244 """
245 r = self.select_path(ef)
246 rec_length = self.__record_len(r)
247 pdu = self.cla_byte + 'b2%02x04%02x' % (rec_no, rec_length)
248 return self._tp.send_apdu_checksw(pdu)
Sylvain Munaut76504e02010-12-07 00:24:32 +0100249
Harald Weltec91085e2022-02-10 18:05:45 +0100250 def update_record(self, ef, rec_no: int, data: str, force_len: bool = False, verify: bool = False,
251 conserve: bool = False):
252 """Execute UPDATE RECORD.
Philipp Maier712251a2021-11-04 17:09:37 +0100253
Harald Weltec91085e2022-02-10 18:05:45 +0100254 Args:
255 ef : string or list of strings indicating name or path of linear fixed EF
256 rec_no : record number to read
257 data : hex string of data to be written
258 force_len : enforce record length by using the actual data length
259 verify : verify data by re-reading the record
260 conserve : read record and compare it with data, skip write on match
261 """
Philipp Maier40ea4a42022-06-02 14:45:41 +0200262
Harald Weltec91085e2022-02-10 18:05:45 +0100263 res = self.select_path(ef)
Philipp Maier40ea4a42022-06-02 14:45:41 +0200264 rec_length = self.__record_len(res)
265 data = expand_hex(data, rec_length)
Philipp Maier42804d72021-04-30 11:56:23 +0200266
Harald Weltec91085e2022-02-10 18:05:45 +0100267 if force_len:
268 # enforce the record length by the actual length of the given data input
269 rec_length = len(data) // 2
270 else:
Philipp Maier40ea4a42022-06-02 14:45:41 +0200271 # make sure the input data is padded to the record length using 0xFF.
272 # In cases where the input data exceed we throw an exception.
Harald Weltec91085e2022-02-10 18:05:45 +0100273 if (len(data) // 2 > rec_length):
274 raise ValueError('Data length exceeds record length (expected max %d, got %d)' % (
275 rec_length, len(data) // 2))
276 elif (len(data) // 2 < rec_length):
277 data = rpad(data, rec_length * 2)
Philipp Maier38c74f62021-03-17 17:19:52 +0100278
Harald Weltec91085e2022-02-10 18:05:45 +0100279 # Save write cycles by reading+comparing before write
280 if conserve:
281 data_current, sw = self.read_record(ef, rec_no)
282 data_current = data_current[0:rec_length*2]
283 if data_current == data:
284 return None, sw
Philipp Maier38c74f62021-03-17 17:19:52 +0100285
Harald Weltec91085e2022-02-10 18:05:45 +0100286 pdu = (self.cla_byte + 'dc%02x04%02x' % (rec_no, rec_length)) + data
287 res = self._tp.send_apdu_checksw(pdu)
288 if verify:
289 self.verify_record(ef, rec_no, data)
290 return res
Philipp Maier30eb8ca2020-05-11 22:51:37 +0200291
Harald Weltec91085e2022-02-10 18:05:45 +0100292 def verify_record(self, ef, rec_no: int, data: str):
293 """Verify record against given data
Philipp Maier712251a2021-11-04 17:09:37 +0100294
Harald Weltec91085e2022-02-10 18:05:45 +0100295 Args:
296 ef : string or list of strings indicating name or path of linear fixed EF
297 rec_no : record number to read
298 data : hex string of data to be verified
299 """
300 res = self.read_record(ef, rec_no)
301 if res[0].lower() != data.lower():
302 raise ValueError('Record verification failed (expected %s, got %s)' % (
303 data.lower(), res[0].lower()))
Sylvain Munaut76504e02010-12-07 00:24:32 +0100304
Harald Weltec91085e2022-02-10 18:05:45 +0100305 def record_size(self, ef):
306 """Determine the record size of given file.
Harald Welteee3501f2021-04-02 13:00:18 +0200307
Harald Weltec91085e2022-02-10 18:05:45 +0100308 Args:
309 ef : string or list of strings indicating name or path of linear fixed EF
310 """
311 r = self.select_path(ef)
312 return self.__record_len(r)
Sylvain Munaut76504e02010-12-07 00:24:32 +0100313
Harald Weltec91085e2022-02-10 18:05:45 +0100314 def record_count(self, ef):
315 """Determine the number of records in given file.
Harald Welteee3501f2021-04-02 13:00:18 +0200316
Harald Weltec91085e2022-02-10 18:05:45 +0100317 Args:
318 ef : string or list of strings indicating name or path of linear fixed EF
319 """
320 r = self.select_path(ef)
321 return self.__len(r) // self.__record_len(r)
Sylvain Munaut76504e02010-12-07 00:24:32 +0100322
Harald Weltec91085e2022-02-10 18:05:45 +0100323 def binary_size(self, ef):
324 """Determine the size of given transparent file.
325
326 Args:
327 ef : string or list of strings indicating name or path of transparent EF
328 """
329 r = self.select_path(ef)
330 return self.__len(r)
Harald Welteee3501f2021-04-02 13:00:18 +0200331
Harald Weltec91085e2022-02-10 18:05:45 +0100332 # TS 102 221 Section 11.3.1 low-level helper
333 def _retrieve_data(self, tag: int, first: bool = True):
334 if first:
335 pdu = '80cb008001%02x' % (tag)
336 else:
337 pdu = '80cb000000'
338 return self._tp.send_apdu_checksw(pdu)
Philipp Maier32daaf52020-05-11 21:48:33 +0200339
Harald Weltec91085e2022-02-10 18:05:45 +0100340 def retrieve_data(self, ef, tag: int):
341 """Execute RETRIEVE DATA, see also TS 102 221 Section 11.3.1.
Harald Welte917d98c2021-04-21 11:51:25 +0200342
Harald Weltec91085e2022-02-10 18:05:45 +0100343 Args
344 ef : string or list of strings indicating name or path of transparent EF
345 tag : BER-TLV Tag of value to be retrieved
346 """
347 r = self.select_path(ef)
348 if len(r[-1]) == 0:
349 return (None, None)
350 total_data = ''
351 # retrieve first block
352 data, sw = self._retrieve_data(tag, first=True)
353 total_data += data
354 while sw == '62f1' or sw == '62f2':
355 data, sw = self._retrieve_data(tag, first=False)
356 total_data += data
357 return total_data, sw
Harald Welte917d98c2021-04-21 11:51:25 +0200358
Harald Weltec91085e2022-02-10 18:05:45 +0100359 # TS 102 221 Section 11.3.2 low-level helper
360 def _set_data(self, data: str, first: bool = True):
361 if first:
362 p1 = 0x80
363 else:
364 p1 = 0x00
365 if isinstance(data, bytes) or isinstance(data, bytearray):
366 data = b2h(data)
367 pdu = '80db00%02x%02x%s' % (p1, len(data)//2, data)
368 return self._tp.send_apdu_checksw(pdu)
Harald Welte917d98c2021-04-21 11:51:25 +0200369
Harald Weltec91085e2022-02-10 18:05:45 +0100370 def set_data(self, ef, tag: int, value: str, verify: bool = False, conserve: bool = False):
371 """Execute SET DATA.
Harald Welte917d98c2021-04-21 11:51:25 +0200372
Harald Weltec91085e2022-02-10 18:05:45 +0100373 Args
374 ef : string or list of strings indicating name or path of transparent EF
375 tag : BER-TLV Tag of value to be stored
376 value : BER-TLV value to be stored
377 """
378 r = self.select_path(ef)
379 if len(r[-1]) == 0:
380 return (None, None)
Harald Welte917d98c2021-04-21 11:51:25 +0200381
Harald Weltec91085e2022-02-10 18:05:45 +0100382 # in case of deleting the data, we only have 'tag' but no 'value'
383 if not value:
384 return self._set_data('%02x' % tag, first=True)
Harald Welte917d98c2021-04-21 11:51:25 +0200385
Harald Weltec91085e2022-02-10 18:05:45 +0100386 # FIXME: proper BER-TLV encode
387 tl = '%02x%s' % (tag, b2h(bertlv_encode_len(len(value)//2)))
388 tlv = tl + value
389 tlv_bin = h2b(tlv)
Harald Welte917d98c2021-04-21 11:51:25 +0200390
Harald Weltec91085e2022-02-10 18:05:45 +0100391 first = True
392 total_len = len(tlv_bin)
393 remaining = tlv_bin
394 while len(remaining) > 0:
395 fragment = remaining[:255]
396 rdata, sw = self._set_data(fragment, first=first)
397 first = False
398 remaining = remaining[255:]
399 return rdata, sw
Harald Welte917d98c2021-04-21 11:51:25 +0200400
Harald Weltec91085e2022-02-10 18:05:45 +0100401 def run_gsm(self, rand: str):
402 """Execute RUN GSM ALGORITHM.
Harald Welte917d98c2021-04-21 11:51:25 +0200403
Harald Weltec91085e2022-02-10 18:05:45 +0100404 Args:
405 rand : 16 byte random data as hex string (RAND)
406 """
407 if len(rand) != 32:
408 raise ValueError('Invalid rand')
409 self.select_path(['3f00', '7f20'])
Vadim Yanitskiy9970f592022-04-22 00:29:10 +0300410 return self._tp.send_apdu_checksw('a0' + '88000010' + rand, sw='9000')
Philipp Maier712251a2021-11-04 17:09:37 +0100411
Harald Weltec91085e2022-02-10 18:05:45 +0100412 def authenticate(self, rand: str, autn: str, context='3g'):
413 """Execute AUTHENTICATE (USIM/ISIM).
Sylvain Munaut76504e02010-12-07 00:24:32 +0100414
Harald Weltec91085e2022-02-10 18:05:45 +0100415 Args:
416 rand : 16 byte random data as hex string (RAND)
417 autn : 8 byte Autentication Token (AUTN)
418 context : 16 byte random data ('3g' or 'gsm')
419 """
420 # 3GPP TS 31.102 Section 7.1.2.1
421 AuthCmd3G = Struct('rand'/LV, 'autn'/Optional(LV))
422 AuthResp3GSyncFail = Struct(Const(b'\xDC'), 'auts'/LV)
423 AuthResp3GSuccess = Struct(
424 Const(b'\xDB'), 'res'/LV, 'ck'/LV, 'ik'/LV, 'kc'/Optional(LV))
425 AuthResp3G = Select(AuthResp3GSyncFail, AuthResp3GSuccess)
426 # build parameters
427 cmd_data = {'rand': rand, 'autn': autn}
428 if context == '3g':
429 p2 = '81'
430 elif context == 'gsm':
431 p2 = '80'
432 (data, sw) = self._tp.send_apdu_constr_checksw(
433 self.cla_byte, '88', '00', p2, AuthCmd3G, cmd_data, AuthResp3G)
434 if 'auts' in data:
435 ret = {'synchronisation_failure': data}
436 else:
437 ret = {'successful_3g_authentication': data}
438 return (ret, sw)
Philipp Maier712251a2021-11-04 17:09:37 +0100439
Harald Weltec91085e2022-02-10 18:05:45 +0100440 def status(self):
441 """Execute a STATUS command as per TS 102 221 Section 11.1.2."""
442 return self._tp.send_apdu_checksw('80F20000ff')
Harald Welte15fae982021-04-10 10:22:27 +0200443
Harald Weltec91085e2022-02-10 18:05:45 +0100444 def deactivate_file(self):
445 """Execute DECATIVATE FILE command as per TS 102 221 Section 11.1.14."""
446 return self._tp.send_apdu_constr_checksw(self.cla_byte, '04', '00', '00', None, None, None)
Harald Welte34b05d32021-05-25 22:03:13 +0200447
Harald Weltec91085e2022-02-10 18:05:45 +0100448 def activate_file(self, fid):
449 """Execute ACTIVATE FILE command as per TS 102 221 Section 11.1.15.
Harald Weltea4631612021-04-10 18:17:55 +0200450
Harald Weltec91085e2022-02-10 18:05:45 +0100451 Args:
452 fid : file identifier as hex string
453 """
454 return self._tp.send_apdu_checksw(self.cla_byte + '44000002' + fid)
Philipp Maier712251a2021-11-04 17:09:37 +0100455
Harald Welte3c9b7842021-10-19 21:44:24 +0200456 def create_file(self, payload: Hexstr):
457 """Execute CREEATE FILE command as per TS 102 222 Section 6.3"""
458 return self._tp.send_apdu_checksw(self.cla_byte + 'e00000%02x%s' % (len(payload)//2, payload))
459
Harald Welte0707b802023-03-07 11:43:37 +0100460 def resize_file(self, payload: Hexstr):
461 """Execute RESIZE FILE command as per TS 102 222 Section 6.10"""
462 return self._tp.send_apdu_checksw('80d40000%02x%s' % (len(payload)//2, payload))
463
Harald Welte3c9b7842021-10-19 21:44:24 +0200464 def delete_file(self, fid):
465 """Execute DELETE FILE command as per TS 102 222 Section 6.4"""
466 return self._tp.send_apdu_checksw(self.cla_byte + 'e4000002' + fid)
467
468 def terminate_df(self, fid):
469 """Execute TERMINATE DF command as per TS 102 222 Section 6.7"""
470 return self._tp.send_apdu_checksw(self.cla_byte + 'e6000002' + fid)
471
472 def terminate_ef(self, fid):
473 """Execute TERMINATE EF command as per TS 102 222 Section 6.8"""
474 return self._tp.send_apdu_checksw(self.cla_byte + 'e8000002' + fid)
475
476 def terminate_card_usage(self):
477 """Execute TERMINATE CARD USAGE command as per TS 102 222 Section 6.9"""
478 return self._tp.send_apdu_checksw(self.cla_byte + 'fe000000')
479
Harald Weltec91085e2022-02-10 18:05:45 +0100480 def manage_channel(self, mode='open', lchan_nr=0):
481 """Execute MANAGE CHANNEL command as per TS 102 221 Section 11.1.17.
Harald Weltea4631612021-04-10 18:17:55 +0200482
Harald Weltec91085e2022-02-10 18:05:45 +0100483 Args:
484 mode : logical channel operation code ('open' or 'close')
485 lchan_nr : logical channel number (1-19, 0=assigned by UICC)
486 """
487 if mode == 'close':
488 p1 = 0x80
489 else:
490 p1 = 0x00
491 pdu = self.cla_byte + '70%02x%02x00' % (p1, lchan_nr)
492 return self._tp.send_apdu_checksw(pdu)
Philipp Maier712251a2021-11-04 17:09:37 +0100493
Harald Weltec91085e2022-02-10 18:05:45 +0100494 def reset_card(self):
495 """Physically reset the card"""
496 return self._tp.reset_card()
Harald Welte703f9332021-04-10 18:39:32 +0200497
Harald Weltec91085e2022-02-10 18:05:45 +0100498 def _chv_process_sw(self, op_name, chv_no, pin_code, sw):
499 if sw_match(sw, '63cx'):
500 raise RuntimeError('Failed to %s chv_no 0x%02X with code 0x%s, %i tries left.' %
501 (op_name, chv_no, b2h(pin_code).upper(), int(sw[3])))
502 elif (sw != '9000'):
503 raise SwMatchError(sw, '9000')
Sylvain Munaut76504e02010-12-07 00:24:32 +0100504
Harald Weltec91085e2022-02-10 18:05:45 +0100505 def verify_chv(self, chv_no: int, code: str):
506 """Verify a given CHV (Card Holder Verification == PIN)
Philipp Maier46f09af2021-03-25 20:24:27 +0100507
Harald Weltec91085e2022-02-10 18:05:45 +0100508 Args:
509 chv_no : chv number (1=CHV1, 2=CHV2, ...)
510 code : chv code as hex string
511 """
512 fc = rpad(b2h(code), 16)
513 data, sw = self._tp.send_apdu(
514 self.cla_byte + '2000' + ('%02X' % chv_no) + '08' + fc)
515 self._chv_process_sw('verify', chv_no, code, sw)
516 return (data, sw)
Philipp Maier712251a2021-11-04 17:09:37 +0100517
Harald Weltec91085e2022-02-10 18:05:45 +0100518 def unblock_chv(self, chv_no: int, puk_code: str, pin_code: str):
519 """Unblock a given CHV (Card Holder Verification == PIN)
Philipp Maier46f09af2021-03-25 20:24:27 +0100520
Harald Weltec91085e2022-02-10 18:05:45 +0100521 Args:
522 chv_no : chv number (1=CHV1, 2=CHV2, ...)
523 puk_code : puk code as hex string
524 pin_code : new chv code as hex string
525 """
526 fc = rpad(b2h(puk_code), 16) + rpad(b2h(pin_code), 16)
527 data, sw = self._tp.send_apdu(
528 self.cla_byte + '2C00' + ('%02X' % chv_no) + '10' + fc)
529 self._chv_process_sw('unblock', chv_no, pin_code, sw)
530 return (data, sw)
Philipp Maier712251a2021-11-04 17:09:37 +0100531
Harald Weltec91085e2022-02-10 18:05:45 +0100532 def change_chv(self, chv_no: int, pin_code: str, new_pin_code: str):
533 """Change a given CHV (Card Holder Verification == PIN)
Philipp Maier46f09af2021-03-25 20:24:27 +0100534
Harald Weltec91085e2022-02-10 18:05:45 +0100535 Args:
536 chv_no : chv number (1=CHV1, 2=CHV2, ...)
537 pin_code : current chv code as hex string
538 new_pin_code : new chv code as hex string
539 """
540 fc = rpad(b2h(pin_code), 16) + rpad(b2h(new_pin_code), 16)
541 data, sw = self._tp.send_apdu(
542 self.cla_byte + '2400' + ('%02X' % chv_no) + '10' + fc)
543 self._chv_process_sw('change', chv_no, pin_code, sw)
544 return (data, sw)
Philipp Maier712251a2021-11-04 17:09:37 +0100545
Harald Weltec91085e2022-02-10 18:05:45 +0100546 def disable_chv(self, chv_no: int, pin_code: str):
547 """Disable a given CHV (Card Holder Verification == PIN)
Philipp Maier46f09af2021-03-25 20:24:27 +0100548
Harald Weltec91085e2022-02-10 18:05:45 +0100549 Args:
550 chv_no : chv number (1=CHV1, 2=CHV2, ...)
551 pin_code : current chv code as hex string
552 new_pin_code : new chv code as hex string
553 """
554 fc = rpad(b2h(pin_code), 16)
555 data, sw = self._tp.send_apdu(
556 self.cla_byte + '2600' + ('%02X' % chv_no) + '08' + fc)
557 self._chv_process_sw('disable', chv_no, pin_code, sw)
558 return (data, sw)
Philipp Maier712251a2021-11-04 17:09:37 +0100559
Harald Weltec91085e2022-02-10 18:05:45 +0100560 def enable_chv(self, chv_no: int, pin_code: str):
561 """Enable a given CHV (Card Holder Verification == PIN)
Philipp Maier46f09af2021-03-25 20:24:27 +0100562
Harald Weltec91085e2022-02-10 18:05:45 +0100563 Args:
564 chv_no : chv number (1=CHV1, 2=CHV2, ...)
565 pin_code : chv code as hex string
566 """
567 fc = rpad(b2h(pin_code), 16)
568 data, sw = self._tp.send_apdu(
569 self.cla_byte + '2800' + ('%02X' % chv_no) + '08' + fc)
570 self._chv_process_sw('enable', chv_no, pin_code, sw)
571 return (data, sw)
Philipp Maier712251a2021-11-04 17:09:37 +0100572
Harald Weltec91085e2022-02-10 18:05:45 +0100573 def envelope(self, payload: str):
574 """Send one ENVELOPE command to the SIM
Harald Weltef2011662021-05-24 23:19:30 +0200575
Harald Weltec91085e2022-02-10 18:05:45 +0100576 Args:
577 payload : payload as hex string
578 """
579 return self._tp.send_apdu_checksw('80c20000%02x%s' % (len(payload)//2, payload))
Philipp Maier712251a2021-11-04 17:09:37 +0100580
Harald Weltec91085e2022-02-10 18:05:45 +0100581 def terminal_profile(self, payload: str):
582 """Send TERMINAL PROFILE to card
Harald Welte846a8982021-10-08 15:47:16 +0200583
Harald Weltec91085e2022-02-10 18:05:45 +0100584 Args:
585 payload : payload as hex string
586 """
587 data_length = len(payload) // 2
588 data, sw = self._tp.send_apdu(('80100000%02x' % data_length) + payload)
589 return (data, sw)
Philipp Maier712251a2021-11-04 17:09:37 +0100590
Harald Weltec91085e2022-02-10 18:05:45 +0100591 # ETSI TS 102 221 11.1.22
592 def suspend_uicc(self, min_len_secs: int = 60, max_len_secs: int = 43200):
593 """Send SUSPEND UICC to the card.
Harald Welteec950532021-10-20 13:09:00 +0200594
Harald Weltec91085e2022-02-10 18:05:45 +0100595 Args:
596 min_len_secs : mimumum suspend time seconds
597 max_len_secs : maximum suspend time seconds
598 """
599 def encode_duration(secs: int) -> Hexstr:
600 if secs >= 10*24*60*60:
601 return '04%02x' % (secs // (10*24*60*60))
602 elif secs >= 24*60*60:
603 return '03%02x' % (secs // (24*60*60))
604 elif secs >= 60*60:
605 return '02%02x' % (secs // (60*60))
606 elif secs >= 60:
607 return '01%02x' % (secs // 60)
608 else:
609 return '00%02x' % secs
Philipp Maier712251a2021-11-04 17:09:37 +0100610
Harald Weltec91085e2022-02-10 18:05:45 +0100611 def decode_duration(enc: Hexstr) -> int:
612 time_unit = enc[:2]
Harald Weltec85ae412023-06-06 09:03:27 +0200613 length = h2i(enc[2:4])[0]
Harald Weltec91085e2022-02-10 18:05:45 +0100614 if time_unit == '04':
615 return length * 10*24*60*60
616 elif time_unit == '03':
617 return length * 24*60*60
618 elif time_unit == '02':
619 return length * 60*60
620 elif time_unit == '01':
621 return length * 60
622 elif time_unit == '00':
623 return length
624 else:
625 raise ValueError('Time unit must be 0x00..0x04')
626 min_dur_enc = encode_duration(min_len_secs)
627 max_dur_enc = encode_duration(max_len_secs)
628 data, sw = self._tp.send_apdu_checksw(
629 '8076000004' + min_dur_enc + max_dur_enc)
630 negotiated_duration_secs = decode_duration(data[:4])
631 resume_token = data[4:]
632 return (negotiated_duration_secs, resume_token, sw)
Harald Welte34eb5042022-02-21 17:19:28 +0100633
634 def get_data(self, tag: int, cla: int = 0x00):
635 data, sw = self._tp.send_apdu('%02xca%04x00' % (cla, tag))
636 return (data, sw)