Abort early when iccid is not found on an eUICC card

The Android settings UI gets confused when we have two eUICC cards
present on one device. It will set the incorrect slot ID for one of
them.
This commit is contained in:
Peter Cai 2022-05-12 17:19:14 -04:00
parent c3f4770108
commit 6032d381d3
1 changed files with 18 additions and 0 deletions

View File

@ -20,6 +20,12 @@ class OpenEuiccService : EuiccService() {
override fun onGetEid(slotId: Int): String? = override fun onGetEid(slotId: Int): String? =
findChannel(slotId)?.lpa?.eid findChannel(slotId)?.lpa?.eid
// When two eSIM cards are present on one device, the Android settings UI
// gets confused and sets the incorrect slotId for profiles from one of
// the cards. This function helps Detect this case and abort early.
private fun EuiccChannel.profileExists(iccid: String?) =
lpa.profiles.any { it.iccid == iccid }
override fun onGetOtaStatus(slotId: Int): Int { override fun onGetOtaStatus(slotId: Int): Int {
// Not implemented // Not implemented
return 5 // EUICC_OTA_STATUS_UNAVAILABLE return 5 // EUICC_OTA_STATUS_UNAVAILABLE
@ -84,6 +90,10 @@ class OpenEuiccService : EuiccService() {
try { try {
val channel = findChannel(slotId) ?: return RESULT_FIRST_USER val channel = findChannel(slotId) ?: return RESULT_FIRST_USER
if (!channel.profileExists(iccid)) {
return RESULT_FIRST_USER
}
val profile = channel.lpa.profiles.find { val profile = channel.lpa.profiles.find {
it.iccid == iccid it.iccid == iccid
} ?: return RESULT_FIRST_USER } ?: return RESULT_FIRST_USER
@ -114,6 +124,11 @@ class OpenEuiccService : EuiccService() {
): Int { ): Int {
try { try {
val channel = findChannel(slotId) ?: return RESULT_FIRST_USER val channel = findChannel(slotId) ?: return RESULT_FIRST_USER
if (!channel.profileExists(iccid)) {
return RESULT_FIRST_USER
}
if (iccid == null) { if (iccid == null) {
// Disable active profile // Disable active profile
val activeProfile = channel.lpa.profiles.find { val activeProfile = channel.lpa.profiles.find {
@ -141,6 +156,9 @@ class OpenEuiccService : EuiccService() {
override fun onUpdateSubscriptionNickname(slotId: Int, iccid: String, nickname: String?): Int { override fun onUpdateSubscriptionNickname(slotId: Int, iccid: String, nickname: String?): Int {
val channel = findChannel(slotId) ?: return RESULT_FIRST_USER val channel = findChannel(slotId) ?: return RESULT_FIRST_USER
if (!channel.profileExists(iccid)) {
return RESULT_FIRST_USER
}
val success = channel.lpa val success = channel.lpa
.setNickname(iccid, nickname) .setNickname(iccid, nickname)
openEuiccApplication.subscriptionManager.tryRefreshCachedEuiccInfo(channel.cardId) openEuiccApplication.subscriptionManager.tryRefreshCachedEuiccInfo(channel.cardId)