blob: 0a1a2b0d8c2cb7d924fe7b79726a87c6ab9f9bd5 [file] [log] [blame]
Oliver Smith05b13322020-02-24 14:18:20 +01001/* Copyright 2020 sysmocom s.f.m.c. GmbH
2 * SPDX-License-Identifier: Apache-2.0 */
Oliver Smith4e5e5162020-02-21 08:47:36 +01003package org.osmocom.IMSIPseudo;
4
Oliver Smith4eee13d2020-02-24 11:28:39 +01005import sim.access.*;
6import sim.toolkit.*;
7import javacard.framework.*;
Oliver Smith4e5e5162020-02-21 08:47:36 +01008
9public class IMSIPseudo extends Applet implements ToolkitInterface, ToolkitConstants {
10 // DON'T DECLARE USELESS INSTANCE VARIABLES! They get saved to the EEPROM,
11 // which has a limited number of write cycles.
Oliver Smith4e5e5162020-02-21 08:47:36 +010012
Oliver Smithca866fe2020-02-24 09:56:30 +010013 private byte STKServicesMenuId;
Oliver Smith2259cb92020-02-24 11:36:31 +010014 private SIMView gsmFile;
Oliver Smith1e5cc462020-02-21 15:39:14 +010015 static byte[] LUCounter = new byte[] { '0', 'x', ' ', 'L', 'U' };
Oliver Smithca866fe2020-02-24 09:56:30 +010016
17 /* Main menu */
Oliver Smith2dcbfab2020-02-21 15:40:21 +010018 static byte[] title = new byte[] { 'I', 'M', 'S', 'I', ' ', 'P', 's', 'e', 'u', 'd', 'o', 'n', 'y', 'm',
19 'i', 'z', 'a', 't', 'i', 'o', 'n'};
Oliver Smithca866fe2020-02-24 09:56:30 +010020 static byte[] showLU = new byte[] {'S', 'h', 'o', 'w', ' ', 'L', 'U', ' ', 'c', 'o', 'u', 'n', 't', 'e', 'r'};
21 static byte[] showIMSI = new byte[] {'S', 'h', 'o', 'w', ' ', 'I', 'M', 'S', 'I'};
22 static byte[] changeIMSI = new byte[] {'C', 'h', 'a', 'n', 'g', 'e', ' ', 'I', 'M', 'S', 'I', ' '};
23 private Object[] itemListMain = {title, showLU, showIMSI, changeIMSI};
24
25 /* Change IMSI menu */
26 static byte[] setDigit1 = new byte[] {'S', 'e', 't', ' ', '1', ' ', 'a', 's', ' ', 'l', 'a', 's', 't', ' ',
27 'd', 'i', 'g', 'i', 't'};
28 static byte[] setDigit2 = new byte[] {'S', 'e', 't', ' ', '2', ' ', 'a', 's', ' ', 'l', 'a', 's', 't', ' ',
29 'd', 'i', 'g', 'i', 't'};
30 private Object[] itemListChangeIMSI = {changeIMSI, setDigit1, setDigit2};
Oliver Smith4e5e5162020-02-21 08:47:36 +010031
32 private IMSIPseudo() {
Oliver Smith2259cb92020-02-24 11:36:31 +010033 gsmFile = SIMSystem.getTheSIMView();
34
Oliver Smithca866fe2020-02-24 09:56:30 +010035 /* Register menu and trigger on location updates */
Oliver Smith4e5e5162020-02-21 08:47:36 +010036 ToolkitRegistry reg = ToolkitRegistry.getEntry();
Oliver Smithca866fe2020-02-24 09:56:30 +010037 STKServicesMenuId = reg.initMenuEntry(title, (short)0, (short)title.length, PRO_CMD_SELECT_ITEM, false,
38 (byte)0, (short)0);
Oliver Smithe28705a2020-02-21 10:06:14 +010039 reg.setEvent(EVENT_EVENT_DOWNLOAD_LOCATION_STATUS);
Oliver Smith4e5e5162020-02-21 08:47:36 +010040 }
41
Oliver Smith4e5e5162020-02-21 08:47:36 +010042 public static void install(byte[] bArray, short bOffset, byte bLength) {
43 IMSIPseudo applet = new IMSIPseudo();
44 applet.register();
45 }
46
Oliver Smith4e5e5162020-02-21 08:47:36 +010047 public void process(APDU arg0) throws ISOException {
Oliver Smith4e5e5162020-02-21 08:47:36 +010048 if (selectingApplet())
49 return;
50 }
51
Oliver Smith4e5e5162020-02-21 08:47:36 +010052 public void processToolkit(byte event) throws ToolkitException {
53 EnvelopeHandler envHdlr = EnvelopeHandler.getTheHandler();
54
55 if (event == EVENT_MENU_SELECTION) {
56 byte selectedItemId = envHdlr.getItemIdentifier();
57
Oliver Smithca866fe2020-02-24 09:56:30 +010058 if (selectedItemId == STKServicesMenuId) {
59 showMenu(itemListMain, (byte)4);
60 handleMenuResponseMain();
Oliver Smith4e5e5162020-02-21 08:47:36 +010061 }
62 }
Oliver Smithe28705a2020-02-21 10:06:14 +010063
64 if (event == EVENT_EVENT_DOWNLOAD_LOCATION_STATUS) {
Oliver Smith1e5cc462020-02-21 15:39:14 +010065 LUCounter[0]++;
Oliver Smith234ab542020-02-24 08:25:43 +010066 showMsg(LUCounter);
Oliver Smithe28705a2020-02-21 10:06:14 +010067 }
Oliver Smith4e5e5162020-02-21 08:47:36 +010068 }
69
Oliver Smithca866fe2020-02-24 09:56:30 +010070 private void showMenu(Object[] itemList, byte itemCount) {
71 ProactiveHandler proHdlr = ProactiveHandler.getTheHandler();
72 proHdlr.init((byte) PRO_CMD_SELECT_ITEM,(byte)0,DEV_ID_ME);
73
74 for (byte i=(byte)0;i<itemCount;i++) {
75 if (i == 0) {
76 /* Title */
77 proHdlr.appendTLV((byte)(TAG_ALPHA_IDENTIFIER | TAG_SET_CR), (byte[])itemList[i],
78 (short)0, (short)((byte[])itemList[i]).length);
79
80 } else {
81 /* Menu entry */
82 proHdlr.appendTLV((byte)(TAG_ITEM | TAG_SET_CR), (byte)i, (byte[])itemList[i], (short)0,
83 (short)((byte[])itemList[i]).length);
84 }
85 }
86 proHdlr.send();
87 }
88
Oliver Smithcef081c2020-02-24 10:02:14 +010089 private void showMsg(byte[] msg) {
90 ProactiveHandler proHdlr = ProactiveHandler.getTheHandler();
91 proHdlr.initDisplayText((byte)0, DCS_8_BIT_DATA, msg, (short)0, (short)(msg.length));
92 proHdlr.send();
Oliver Smithcef081c2020-02-24 10:02:14 +010093 }
94
Oliver Smithd7f18922020-02-24 12:24:38 +010095 private void showError(short code) {
96 byte[] msg = new byte[] {'E', '?', '?'};
97 msg[1] = (byte)('0' + code / 10);
98 msg[2] = (byte)('0' + code % 10);
99 showMsg(msg);
100 }
101
Oliver Smith2259cb92020-02-24 11:36:31 +0100102 private void showIMSI() {
103 /* 3GPP TS 31.102 4.2.2: IMSI */
104 byte[] IMSI = new byte[9];
105 byte[] msg = {'C', 'u', 'r', 'r', 'e', 'n', 't', ' ', 'I', 'M', 'S', 'I', ':', ' ',
106 '_', '_', '_', '_', '_', '_', '_', '_', '_', '_', '_', '_', '_', '_', '_'};
107
108 gsmFile.select((short) SIMView.FID_DF_GSM);
109 gsmFile.select((short) SIMView.FID_EF_IMSI);
Oliver Smithd7f18922020-02-24 12:24:38 +0100110
111 try {
112 gsmFile.readBinary((short)0, IMSI, (short)0, (short)9);
113 } catch (SIMViewException e) {
114 showError(e.getReason());
Oliver Smith89d18bc2020-02-24 15:24:43 +0100115 return;
Oliver Smithd7f18922020-02-24 12:24:38 +0100116 }
Oliver Smith2259cb92020-02-24 11:36:31 +0100117
118 for (byte i = (byte)0; i < (byte)15; i++) {
119 byte msg_i = (byte)(14 + i);
120 if (i >= IMSI[0]) {
121 msg[msg_i] = ' ';
122 } else if (i % (byte)2 == (byte)0) {
123 msg[msg_i] = (byte)('0' + (IMSI[i / (byte)2] & 0x0f));
124 } else {
125 msg[msg_i] = (byte)('0' + (IMSI[i / (byte)2] >>> 4));
126 }
Oliver Smithd7f18922020-02-24 12:24:38 +0100127 showMsg(msg); /* DEBUG */
Oliver Smith2259cb92020-02-24 11:36:31 +0100128 }
129 showMsg(msg);
130 }
131
Oliver Smithca866fe2020-02-24 09:56:30 +0100132 private void handleMenuResponseMain() {
133 ProactiveResponseHandler rspHdlr = ProactiveResponseHandler.getTheHandler();
134
135 switch (rspHdlr.getItemIdentifier()) {
136 case 1: /* Show LU counter */
137 showMsg(LUCounter);
138 break;
139 case 2: /* Show IMSI */
Oliver Smith2259cb92020-02-24 11:36:31 +0100140 showIMSI();
Oliver Smithca866fe2020-02-24 09:56:30 +0100141 break;
142 case 3: /* Change IMSI */
143 showMenu(itemListChangeIMSI, (byte)3);
144 handleMenuResponseChangeIMSI();
145 break;
146 }
147 }
148
149 private void handleMenuResponseChangeIMSI() {
150 /* TODO */
151 }
Oliver Smith4e5e5162020-02-21 08:47:36 +0100152}