|
|
@@ -1,20 +1,35 @@
|
|
|
package im.angry.openeuicc.service
|
|
|
|
|
|
import android.service.euicc.*
|
|
|
+import android.telephony.UiccSlotMapping
|
|
|
import android.telephony.euicc.DownloadableSubscription
|
|
|
import android.telephony.euicc.EuiccInfo
|
|
|
+import android.util.Log
|
|
|
import net.typeblog.lpac_jni.LocalProfileInfo
|
|
|
import im.angry.openeuicc.OpenEuiccApplication
|
|
|
import im.angry.openeuicc.core.EuiccChannel
|
|
|
import im.angry.openeuicc.util.*
|
|
|
+import java.lang.IllegalStateException
|
|
|
|
|
|
class OpenEuiccService : EuiccService() {
|
|
|
+ companion object {
|
|
|
+ const val TAG = "OpenEuiccService"
|
|
|
+ }
|
|
|
+
|
|
|
private val openEuiccApplication
|
|
|
get() = application as OpenEuiccApplication
|
|
|
|
|
|
- private fun findChannel(slotId: Int): EuiccChannel? =
|
|
|
+ private fun findChannel(physicalSlotId: Int): EuiccChannel? =
|
|
|
+ openEuiccApplication.euiccChannelManager
|
|
|
+ .findEuiccChannelByPhysicalSlotBlocking(physicalSlotId)
|
|
|
+
|
|
|
+ private fun findChannel(slotId: Int, portId: Int): EuiccChannel? =
|
|
|
+ openEuiccApplication.euiccChannelManager
|
|
|
+ .findEuiccChannelByPortBlocking(slotId, portId)
|
|
|
+
|
|
|
+ private fun findAllChannels(physicalSlotId: Int): List<EuiccChannel>? =
|
|
|
openEuiccApplication.euiccChannelManager
|
|
|
- .findEuiccChannelBySlotBlocking(slotId)
|
|
|
+ .findAllEuiccChannelsByPhysicalSlotBlocking(physicalSlotId)
|
|
|
|
|
|
override fun onGetEid(slotId: Int): String? =
|
|
|
findChannel(slotId)?.lpa?.eID
|
|
|
@@ -25,6 +40,47 @@ class OpenEuiccService : EuiccService() {
|
|
|
private fun EuiccChannel.profileExists(iccid: String?) =
|
|
|
lpa.profiles.any { it.iccid == iccid }
|
|
|
|
|
|
+ private fun ensurePortIsMapped(slotId: Int, portId: Int) {
|
|
|
+ val mappings = openEuiccApplication.telephonyManager.simSlotMapping.toMutableList()
|
|
|
+
|
|
|
+ mappings.firstOrNull { it.physicalSlotIndex == slotId && it.portIndex == portId }?.let {
|
|
|
+ throw IllegalStateException("Slot $slotId port $portId has already been mapped")
|
|
|
+ }
|
|
|
+
|
|
|
+ val idx = mappings.indexOfFirst { it.physicalSlotIndex != slotId || it.portIndex != portId }
|
|
|
+ if (idx >= 0) {
|
|
|
+ mappings[idx] = UiccSlotMapping(portId, slotId, mappings[idx].logicalSlotIndex)
|
|
|
+ }
|
|
|
+
|
|
|
+ mappings.firstOrNull { it.physicalSlotIndex == slotId && it.portIndex == portId } ?: run {
|
|
|
+ throw IllegalStateException("Cannot map slot $slotId port $portId")
|
|
|
+ }
|
|
|
+
|
|
|
+ try {
|
|
|
+ openEuiccApplication.telephonyManager.simSlotMapping = mappings
|
|
|
+ return
|
|
|
+ } catch (_: Exception) {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ // Sometimes hardware supports one ordering but not the reverse
|
|
|
+ openEuiccApplication.telephonyManager.simSlotMapping = mappings.reversed()
|
|
|
+ }
|
|
|
+
|
|
|
+ private fun <T> retryWithTimeout(timeoutMillis: Int, backoff: Int = 1000, f: () -> T?): T? {
|
|
|
+ val startTimeMillis = System.currentTimeMillis()
|
|
|
+ do {
|
|
|
+ try {
|
|
|
+ f()?.let { return@retryWithTimeout it }
|
|
|
+ } catch (_: Exception) {
|
|
|
+ // Ignore
|
|
|
+ } finally {
|
|
|
+ Thread.sleep(backoff.toLong())
|
|
|
+ }
|
|
|
+ } while (System.currentTimeMillis() - startTimeMillis < timeoutMillis)
|
|
|
+ return null
|
|
|
+ }
|
|
|
+
|
|
|
override fun onGetOtaStatus(slotId: Int): Int {
|
|
|
// Not implemented
|
|
|
return 5 // EUICC_OTA_STATUS_UNAVAILABLE
|
|
|
@@ -56,6 +112,7 @@ class OpenEuiccService : EuiccService() {
|
|
|
}
|
|
|
|
|
|
override fun onGetEuiccProfileInfoList(slotId: Int): GetEuiccProfileInfoListResult? {
|
|
|
+ Log.i(TAG, "onGetEuiccProfileInfoList slotId=$slotId")
|
|
|
val channel = findChannel(slotId) ?: return null
|
|
|
val profiles = channel.lpa.profiles.operational.map {
|
|
|
EuiccProfileInfo.Builder(it.iccid).apply {
|
|
|
@@ -86,23 +143,27 @@ class OpenEuiccService : EuiccService() {
|
|
|
}
|
|
|
|
|
|
override fun onDeleteSubscription(slotId: Int, iccid: String): Int {
|
|
|
+ Log.i(TAG, "onDeleteSubscription slotId=$slotId iccid=$iccid")
|
|
|
try {
|
|
|
- val channel = findChannel(slotId) ?: return RESULT_FIRST_USER
|
|
|
+ val channels = findAllChannels(slotId) ?: return RESULT_FIRST_USER
|
|
|
|
|
|
- if (!channel.profileExists(iccid)) {
|
|
|
+ if (!channels[0].profileExists(iccid)) {
|
|
|
return RESULT_FIRST_USER
|
|
|
}
|
|
|
|
|
|
- val profile = channel.lpa.profiles.find {
|
|
|
- it.iccid == iccid
|
|
|
- } ?: return RESULT_FIRST_USER
|
|
|
+ // If the profile is enabled by ANY channel (port), we cannot delete it
|
|
|
+ channels.forEach { channel ->
|
|
|
+ val profile = channel.lpa.profiles.find {
|
|
|
+ it.iccid == iccid
|
|
|
+ } ?: return RESULT_FIRST_USER
|
|
|
|
|
|
- if (profile.state == LocalProfileInfo.State.Enabled) {
|
|
|
- // Must disable the profile first
|
|
|
- return RESULT_FIRST_USER
|
|
|
+ if (profile.state == LocalProfileInfo.State.Enabled) {
|
|
|
+ // Must disable the profile first
|
|
|
+ return RESULT_FIRST_USER
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
- return if (channel.lpa.deleteProfile(iccid)) {
|
|
|
+ return if (channels[0].lpa.deleteProfile(iccid)) {
|
|
|
RESULT_OK
|
|
|
} else {
|
|
|
RESULT_FIRST_USER
|
|
|
@@ -112,40 +173,63 @@ class OpenEuiccService : EuiccService() {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- // TODO: on some devices we need to update the mapping (and potentially disable a pSIM)
|
|
|
- // for eSIM to be usable, in which case we will have to respect forceDeactivateSim.
|
|
|
- // This is the same for our custom LUI. Both have to take this into consideration.
|
|
|
@Deprecated("Deprecated in Java")
|
|
|
override fun onSwitchToSubscription(
|
|
|
slotId: Int,
|
|
|
iccid: String?,
|
|
|
forceDeactivateSim: Boolean
|
|
|
+ ): Int =
|
|
|
+ // -1 = any port
|
|
|
+ onSwitchToSubscriptionWithPort(slotId, -1, iccid, forceDeactivateSim)
|
|
|
+
|
|
|
+ override fun onSwitchToSubscriptionWithPort(
|
|
|
+ slotId: Int,
|
|
|
+ portIndex: Int,
|
|
|
+ iccid: String?,
|
|
|
+ forceDeactivateSim: Boolean
|
|
|
): Int {
|
|
|
+ Log.i(TAG,"onSwitchToSubscriptionWithPort slotId=$slotId portIndex=$portIndex iccid=$iccid forceDeactivateSim=$forceDeactivateSim")
|
|
|
try {
|
|
|
- val channel = findChannel(slotId) ?: return RESULT_FIRST_USER
|
|
|
+ // retryWithTimeout is needed here because this function may be called just after
|
|
|
+ // AOSP has switched slot mappings, in which case the slots may not be ready yet.
|
|
|
+ val channel = if (portIndex == -1) {
|
|
|
+ retryWithTimeout(5000) { findChannel(slotId) }
|
|
|
+ } else {
|
|
|
+ retryWithTimeout(5000) { findChannel(slotId, portIndex) }
|
|
|
+ } ?: run {
|
|
|
+ if (!forceDeactivateSim) {
|
|
|
+ // The user must select which SIM to deactivate
|
|
|
+ return@onSwitchToSubscriptionWithPort RESULT_MUST_DEACTIVATE_SIM
|
|
|
+ } else {
|
|
|
+ try {
|
|
|
+ // If we are allowed to deactivate any SIM we like, try mapping the indicated port first
|
|
|
+ ensurePortIsMapped(slotId, portIndex)
|
|
|
+ retryWithTimeout(5000) { findChannel(slotId, portIndex) }
|
|
|
+ } catch (e: Exception) {
|
|
|
+ // We cannot map the port (or it is already mapped)
|
|
|
+ // but we can also use any port available on the card
|
|
|
+ retryWithTimeout(5000) { findChannel(slotId) }
|
|
|
+ } ?: return@onSwitchToSubscriptionWithPort RESULT_FIRST_USER
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- if (!channel.profileExists(iccid)) {
|
|
|
+ if (iccid != null && !channel.profileExists(iccid)) {
|
|
|
+ Log.i(TAG, "onSwitchToSubscriptionWithPort iccid=$iccid not found")
|
|
|
return RESULT_FIRST_USER
|
|
|
}
|
|
|
|
|
|
- if (iccid == null) {
|
|
|
- // Disable active profile
|
|
|
- val activeProfile = channel.lpa.profiles.find {
|
|
|
- it.state == LocalProfileInfo.State.Enabled
|
|
|
- } ?: return RESULT_OK
|
|
|
+ // Disable any active profile first if present
|
|
|
+ channel.lpa.profiles.find {
|
|
|
+ it.state == LocalProfileInfo.State.Enabled
|
|
|
+ }?.let { if (!channel.lpa.disableProfile(it.iccid)) return RESULT_FIRST_USER }
|
|
|
|
|
|
- return if (channel.lpa.disableProfile(activeProfile.iccid)) {
|
|
|
- RESULT_OK
|
|
|
- } else {
|
|
|
- RESULT_FIRST_USER
|
|
|
- }
|
|
|
- } else {
|
|
|
- return if (channel.lpa.enableProfile(iccid)) {
|
|
|
- RESULT_OK
|
|
|
- } else {
|
|
|
- RESULT_FIRST_USER
|
|
|
+ if (iccid != null) {
|
|
|
+ if (!channel.lpa.enableProfile(iccid)) {
|
|
|
+ return RESULT_FIRST_USER
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ return RESULT_OK
|
|
|
} catch (e: Exception) {
|
|
|
return RESULT_FIRST_USER
|
|
|
} finally {
|
|
|
@@ -154,6 +238,7 @@ class OpenEuiccService : EuiccService() {
|
|
|
}
|
|
|
|
|
|
override fun onUpdateSubscriptionNickname(slotId: Int, iccid: String, nickname: String?): Int {
|
|
|
+ Log.i(TAG, "onUpdateSubscriptionNickname slotId=$slotId iccid=$iccid nickname=$nickname")
|
|
|
val channel = findChannel(slotId) ?: return RESULT_FIRST_USER
|
|
|
if (!channel.profileExists(iccid)) {
|
|
|
return RESULT_FIRST_USER
|