Project

General

Profile

VoLTE IMS Android Carrier Privileges » History » Version 2

laforge, 01/20/2020 01:43 PM

1 1 herlesupreeth
h1. VoLTE IMS Android Carrier Privileges / CoIMS (Carrier Config overriding IMS settings)
2
3 2 laforge
Guide for overriding IMS settings to force enable VoLTE/VoWiFi using "Android Carrier Privileges":https://source.android.com/devices/tech/config/uicc
4
5
h2. Overview
6
7
* Android provides some APIs only to Android Apps by the operator
8
* Android identifies such Apps via the signing key with which they were signed
9
* The signing key (well, a hash of it) is stored on the SIM card
10
* This storage is not done as a simple file on the SIM filesystem, but in some special additional card application on the SIM-Card, a so-called ARA-M
11
** There is an Open Source implementation of this applet by Bertrand Martel at https://github.com/bertrandmartel/aram-applet
12
13
This document describes how to put everything together
14 1 herlesupreeth
15
(this guide by Supreeth Herle was first published at https://github.com/herlesupreeth/CoIMS_Wiki and is reproduce here with permission)
16
17
h2. Requirements
18
19
* A programmable version of USIM/ISIM with KIC1, KID1 and KIK1, or a non-programmable USIM/ISIM with ARA-M application but with option to push certficates to ARA-M via OTA
20
** [[sysmoUSIM-SJS1]] is a known-working, publicly available option
21
* VoLTE/VoWiFi capable phone with Android Pie or above
22
* PCSC, serial card reader (SIM card programmer)
23
* Java v1.8
24
25
h2. My Setup
26
27
* [[sysmoUSIM-SJS1]]-4ff USIM with ADM keys
28
* OnePlus 5t UE with Android Pie
29
* Gemalto SIM programmer
30
31
h2. Big shout out and credits to following people for their awesome work
32
33
"Martin Paljak":https://github.com/martinpaljak for GlobalPlatformPro (gp.jar) - A tool to load and manage applets on compatible JavaCards from command line
34
35
"Bertrand Martel":https://github.com/bertrandmartel/aram-applet for ARA-M applet (applet.cap) - ARA-M implementation for JavaCards. ARA-M is an application (typically present on a SIM card) which manage access rules that are enforced by an Access Control Enforcer (typically present on Android device). The enforcer makes sure the rules from the ARAM are enforced. An access rule is composed of an AID, a certificate hash (SHA1/SHA256 of client application cert) and a set of rules. The Access Control enforcer will allow/deny a client application (for example an Android app) to send APDU to a Secure Element (SE) applet based on these rules
36
37
h2. Steps
38
39
h3. Step 1: Clone repository and fetch details of the SIM
40
41
In order to install and/or manage Java Card applets on your SIM card, make sure to have KIC1, KID1 and KIK1 keys. KIC1, KID1 and KIK1 could differ from one SIM card to another so make sure to have the correct keys. If you have a non-programmable USIM/ISIM with ARA-M application and have option to push certficates to ARA-M via OTA, jump to Step 4
42
43
<pre>
44
$ git clone https://github.com/herlesupreeth/CoIMS_Wiki
45
$ cd CoIMS_Wiki
46
$ alias gp="java -jar $PWD/gp.jar"
47
</pre>
48
49
Example: In [[sysmoUSIM-SJS1]]-4ff USIM cards, the key mappings for GlobalPlatformPro are as follows
50
|_.sysmoUSIM key |_.GlobalPlatformPro argument |
51
|KIC1|--key-enc|
52
|KID1|--key-mac|
53
|KIK1|--key-dek|
54
55
Fetch details of the SIM by replacing KIC1, KID1 and KIK1 with correct keys respective to your SIM card. Execution of below command should not result in any error. If there is an error, please check the error and double check everything before proceeding
56
<pre>
57
$ gp --key-enc KIC1 --key-mac KID1 --key-dek KIK1 -lvi
58
</pre>
59
60
h3. Step 2: Unlock the SIM card for easier installation of applet as follows (Optional)
61
62
*Proceed with caution when unlocking SIM card as it could brick your USIM/ISIM if incorrect KIC1, KID1 and KIK1 keys are used*
63
<pre>
64
$ gp --key-enc KIC1 --key-mac KID1 --key-dek KIK1 --unlock
65
</pre>
66
67
Example: A sysmoUSIM-SJS1-4ff USIM card with following keys is unlocked as follows
68
69
KIC1 = --key-enc = 975B496CED1F2FB984145A55AB31A585
70
71
KID1 = --key-mac = E7207B567F9D08726A6EFBD90C50DA9A
72
73
KIK1 = --key-dek = DEAA4E9A9B3BC6FC5EFF77A8E9925632
74
75
<pre>
76
$ gp --key-enc 975B496CED1F2FB984145A55AB31A585 --key-mac E7207B567F9D08726A6EFBD90C50DA9A --key-dek DEAA4E9A9B3BC6FC5EFF77A8E9925632 --unlock
77
Default type=DES3 bytes=404142434445464748494A4B4C4D4E4F kcv=8BAF47 set as master key for A000000003000000
78
</pre>
79
80
h3. Step 3: Install ARA-M Java Card applets on USIM/ISIM
81
82
*Proceed with caution when installing applets on SIM card as it could brick your USIM/ISIM if incorrect KIC1, KID1 and KIK1 keys are used*
83
84
Install the ARA-M applet (applet.cap). The following command must execute without any errors.
85
86
<pre>
87
# If SIM is not unlocked in Step 2
88
$ gp --key-enc KIC1 --key-mac KID1 --key-dek KIK1 --install applet.cap
89
# If SIM is unlocked in Step 2
90
$ gp --install applet.cap
91
</pre>
92
93
h3. Step 4: Push the SHA-1 certifcate of the Carrier Config Android app onto ARA-M in USIM/ISIM
94
95
The Carrier Config Android app which will be installed in Step 5 is signed with following SHA1 key
96
97
SHA1: E4:68:72:F2:8B:35:0B:7E:1F:14:0D:E5:35:C2:A8:D5:80:4F:0B:E3
98
99
In order to provide Carrier Privileges to Carrier Config app, push the above SHA1 certifcate as follows
100
101
<pre>
102
# If SIM is not unlocked in Step 2
103
$ gp --key-enc KIC1 --key-mac KID1 --key-dek KIK1 -a 00A4040009A00000015141434C0000 -a 80E2900033F031E22FE11E4F06FFFFFFFFFFFFC114E46872F28B350B7E1F140DE535C2A8D5804F0BE3E30DD00101DB080000000000000001
104
# If SIM is unlocked in Step 2
105
$ gp -a 00A4040009A00000015141434C0000 -a 80E2900033F031E22FE11E4F06FFFFFFFFFFFFC114E46872F28B350B7E1F140DE535C2A8D5804F0BE3E30DD00101DB080000000000000001
106
</pre>
107
108
The split-up of above APDU sent to SIM card is as follows
109
110
<pre>
111
#### REF-AR-DO for UICC Carrier Privileges
112
113
|REF-AR-DO|T|E2    | |                  | |                                        |
114
|         |L|2F    | |                  | |                                        |
115
|         |V|REF-DO|T|E1                | |                                        |
116
|         | |      |L|1E                | |                                        |
117
|         | |      |V|AID-REF-DO        |T|4F                                      |
118
|         | |      | |                  |L|06                                      |
119
|         | |      | |                  |V|FFFFFFFFFFFF                            |
120
|         | |      | |DeviceAppID-REF-DO|T|C1                                      |
121
|         | |      | |                  |L|14                                      |
122
|         | |      | |                  |V|E46872F28B350B7E1F140DE535C2A8D5804F0BE3|
123
|         | |AR-DO |T|E3                | |                                        |
124
|         | |      |L|0D                | |                                        |
125
|         | |      |V|APDU-AR-DO        |T|D0                                      |
126
|         | |      | |                  |L|01                                      |
127
|         | |      | |                  |V|01 (Always)                             |
128
|         | |      | |PERM-AR-DO        |T|DB                                      |
129
|         | |      | |                  |L|08                                      |
130
|         | |      | |                  |V|0000000000000001                        |
131
</pre>
132
133
To check the list of installed certificates use the following command
134
135
<pre>
136
# If SIM is not unlocked in Step 2
137
$ gp --key-enc KIC1 --key-mac KID1 --key-dek KIK1 -acr-list
138
RULE #0 :
139
       AID  : FFFFFFFFFFFF
140
       HASH : E46872F28B350B7E1F140DE535C2A8D5804F0BE3
141
       APDU rule   : ALWAYS(0x01)
142
# If SIM is unlocked in Step 2
143
$ gp -acr-list
144
RULE #0 :
145
       AID  : FFFFFFFFFFFF
146
       HASH : E46872F28B350B7E1F140DE535C2A8D5804F0BE3
147
       APDU rule   : ALWAYS(0x01)
148
</pre>
149
150
_If you have a non-programmable USIM/ISIM with ARA-M application and have option to push certficates to ARA-M via OTA, push the above SHA1 certificate on to the SIM_
151
152
h3. Step 5: Install the Carrier Config Android app from Play Store
153
154
Make sure the SIM card is placed in the default/first SIM slot of the device (only for multi-sim capable devices)
155
156
Download the "CoIMS":https://play.google.com/store/apps/details?id=com.sherle.coims Carrier Config app from play store. Then, run the app
157
158
Important points/values to note after running the app for this app to enable VoLTE
159
160
* "App has Carrier Privileges" must be true
161
* "SIM Carrier Id" must not be -1 (i.e Unknown Carrier)
162
* "carrier_volte_provisioned_bool" must be true
163
164
h2. Debugging
165
166
Use adb debugging with filter for "ims" keyword
167
168
h3. Potential reasons for this method not working
169
170
# If the value of CarrierIdentifier indicated in the app is -1 (i.e Unknown Carrier)
171
#* If PLMN is on the following list (https://android.googlesource.com/platform/packages/providers/TelephonyProvider/+/master/assets/carrier_list.textpb) Resolution: Wait for vendor to release an update and hopefully it contains the updated carrier list
172
#*If PLMN is not on the following list (https://android.googlesource.com/platform/packages/providers/TelephonyProvider/+/master/assets/carrier_list.textpb) Resolution: Refer the following link (https://source.android.com/devices/tech/config/carrierid#integrating_carrier_ids_with_carrierconfig)
173
# Some devices with Samsung Exynos chipset/ Mediatek chipset require ISIM, only USIM is not enough for SIP registrations
174
# Does not seem to work on Samsung devices with Exynos chipset
175
# If the SIM is placed in non-default SIM slot in a multi-SIM phones i.e. SIM in slot 1 (SIM slot 0 (default), SIM slot 1) of device
Add picture from clipboard (Maximum size: 48.8 MB)