Files
openeuicc-bridge/src/im/angry/openeuicc/bridge/LpaBridgeProvider.java
2025-10-31 12:10:06 +04:00

619 lines
18 KiB
Java

package im.angry.openeuicc.bridge;
import java.lang.reflect.Method;
import java.util.Collection;
import java.util.Collections;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map;
import java.util.HashMap;
import java.net.URLDecoder;
import java.nio.charset.*;
import kotlin.coroutines.Continuation;
import kotlin.coroutines.CoroutineContext;
import kotlin.coroutines.EmptyCoroutineContext;
import kotlin.jvm.functions.Function2;
import kotlinx.coroutines.BuildersKt;
import kotlinx.coroutines.CoroutineScope;
import android.content.ContentProvider;
import android.content.ContentValues;
import android.database.Cursor;
import android.database.MatrixCursor;
import android.net.Uri;
import im.angry.openeuicc.OpenEuiccApplication;
import im.angry.openeuicc.core.EuiccChannel;
import im.angry.openeuicc.core.EuiccChannelManager;
import im.angry.openeuicc.core.DefaultEuiccChannelManager;
import im.angry.openeuicc.util.UiccCardInfoCompat;
import im.angry.openeuicc.util.UiccPortInfoCompat;
import im.angry.openeuicc.util.UiccPortInfoCompat;
import im.angry.openeuicc.util.LPAUtilsKt;
import im.angry.openeuicc.util.ActivationCode;
import im.angry.openeuicc.di.AppContainer;
import net.typeblog.lpac_jni.LocalProfileInfo;
import net.typeblog.lpac_jni.ProfileDownloadCallback;
public class LpaBridgeProvider extends ContentProvider
{
private AppContainer appContainer;
@Override
public boolean onCreate()
{
appContainer = ((OpenEuiccApplication) getContext().getApplicationContext()).getAppContainer();
return true;
}
@Override
public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder)
{
MatrixCursor rows;
final String path = uri.getLastPathSegment();
final Map<String, String> args = getArgsFromUri(uri);
if (path == null)
{
rows = error("no_path");
}
else
{
try
{
switch (path)
{
case "ping":
rows = handlePing(args);
break;
case "cards":
rows = handleGetCards(args);
break;
case "profiles":
rows = handleGetProfiles(args);
break;
case "activeProfile":
rows = handleGetActiveProfile(args);
break;
case "downloadProfile":
rows = handleDownloadProfile(args);
break;
case "deleteProfile":
rows = handleDeleteProfile(args);
break;
case "enableProfile":
rows = handleEnableProfile(args);
break;
case "disableProfile":
rows = handleDisableProfile(args);
break;
case "disableActiveProfile":
rows = handleDisableActiveProfile(args);
break;
case "switchProfile":
rows = handleSwitchProfile(args);
break;
default:
rows = error("unknown_path");
break;
}
}
catch (Exception ex)
{
rows = error(ex.getMessage());
}
}
return projectColumns(rows, projection, new String[] { "error" });
}
// region Mandatory Overrides
@Override
public Uri insert(Uri uri, ContentValues values) { return null; }
@Override
public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) { return 0; }
@Override
public int delete(Uri uri, String selection, String[] selectionArgs) { return 0; }
@Override
public String getType(Uri uri) { return null; }
// endregion
// region Handlers
private MatrixCursor handlePing(Map<String, String> args)
{
return row("ping", "pong");
}
private MatrixCursor handleGetCards(Map<String, String> args) throws Exception
{
var euiccChannelManager = (DefaultEuiccChannelManager) appContainer.getEuiccChannelManager();
var getUiccCardsMethod = DefaultEuiccChannelManager.class.getDeclaredMethod("getUiccCards");
getUiccCardsMethod.setAccessible(true);
@SuppressWarnings("unchecked")
var cards = (Collection<UiccCardInfoCompat>) getUiccCardsMethod.invoke(euiccChannelManager);
var rows = new MatrixCursor(new String[]
{
"slotId",
"portId"
});
for (UiccCardInfoCompat card : cards)
{
for (UiccPortInfoCompat port : card.getPorts())
{
int slotId = card.getPhysicalSlotIndex();
int portId = port.getPortIndex();
var euiccChannel = findEuiccChannel(euiccChannelManager, slotId, portId);
if (euiccChannel != null)
{
rows.addRow(new Object[]
{
slotId,
portId
});
}
}
}
return rows;
}
private MatrixCursor handleGetProfiles(Map<String, String> args) throws Exception
{
List<LocalProfileInfo> profiles = withEuiccChannel
(
args,
(channel, _) -> channel.getLpa().getProfiles()
);
var rows = new MatrixCursor(new String[]
{
"iccid",
"isEnabled",
"displayName"
});
for (LocalProfileInfo profile : profiles)
{
rows.addRow(new Object[]
{
profile.getIccid(),
LPAUtilsKt.isEnabled(profile),
LPAUtilsKt.getDisplayName(profile)
});
}
return rows;
}
private MatrixCursor handleGetActiveProfile(Map<String, String> args) throws Exception
{
List<LocalProfileInfo> profiles = withEuiccChannel
(
args,
(channel, _) -> channel.getLpa().getProfiles()
);
var enabledProfile = LPAUtilsKt.getEnabled(profiles);
if (enabledProfile == null)
return empty();
return row("iccid", enabledProfile.getIccid());
}
private MatrixCursor handleDownloadProfile(Map<String, String> args) throws Exception
{
String[] address = new String[1];
String[] matchingId = { args.get("matchingId") };
String[] confirmationCode = { args.get("confirmationCode") };
String imei = args.get("imei");
String[] activationCodeArg = new String[1];
if (tryGetArgAsString(args, "activationCode", activationCodeArg))
{
var activationCode = ActivationCode.Companion.fromString(activationCodeArg[0]);
address[0] = activationCode.getAddress();
matchingId[0] = activationCode.getMatchingId();
if (activationCode.getConfirmationCodeRequired())
if (!tryGetArgAsString(args, "confirmationCode", confirmationCode))
return missingArgError("confirmationCode");
}
else if (!tryGetArgAsString(args, "address", address))
return missingArgError("activationCode_or_address");
withEuiccChannel
(
args,
(channel, _) ->
{
channel.getLpa().downloadProfile
(
address[0],
matchingId[0],
imei,
confirmationCode[0],
new ProfileDownloadCallback()
{
@Override
public void onStateUpdate(ProfileDownloadCallback.DownloadState state)
{
// ignored
// TODO: callbackUrl?
}
}
);
return null;
}
);
return success();
}
private MatrixCursor handleDeleteProfile(Map<String, String> args) throws Exception
{
String[] iccid = new String[1];
if (!tryGetArgAsString(args, "iccid", iccid))
return missingArgError("iccid");
boolean success = withEuiccChannel
(
args,
(channel, _) -> channel.getLpa().deleteProfile(iccid[0])
);
return success(success);
}
private MatrixCursor handleEnableProfile(Map<String, String> args) throws Exception
{
String[] iccid = new String[1];
boolean[] refresh = new boolean[1];
if (!tryGetArgAsString(args, "iccid", iccid))
return missingArgError("iccid");
if (!tryGetArgAsBoolean(args, "refresh", refresh))
refresh[0] = true;
boolean success = withEuiccChannel
(
args,
(channel, _) -> channel.getLpa().enableProfile(iccid[0], refresh[0])
);
return success(success);
}
private MatrixCursor handleDisableProfile(Map<String, String> args) throws Exception
{
String[] iccid = new String[1];
boolean[] refresh = new boolean[1];
if (!tryGetArgAsString(args, "iccid", iccid))
return missingArgError("iccid");
if (!tryGetArgAsBoolean(args, "refresh", refresh))
refresh[0] = true;
boolean success = withEuiccChannel
(
args,
(channel, _) -> channel.getLpa().disableProfile(iccid[0], refresh[0])
);
return success(success);
}
private MatrixCursor handleDisableActiveProfile(Map<String, String> args) throws Exception
{
boolean[] refresh = new boolean[1];
if (!tryGetArgAsBoolean(args, "refresh", refresh))
refresh[0] = true;
String iccid = withEuiccChannel
(
args,
(channel, _) -> LPAUtilsKt.disableActiveProfileKeepIccId(channel.getLpa(), refresh[0])
);
if (iccid == null)
return success(false);
return row("iccid", iccid);
}
private MatrixCursor handleSwitchProfile(Map<String, String> args) throws Exception
{
String[] iccid = new String[1];
boolean[] enable = new boolean[1];
boolean[] refresh = new boolean[1];
if (!tryGetArgAsString(args, "iccid", iccid))
return missingArgError("iccid");
if (!tryGetArgAsBoolean(args, "enable", enable))
enable[0] = true;
if (!tryGetArgAsBoolean(args, "refresh", refresh))
refresh[0] = true;
boolean success = withEuiccChannel
(
args,
(channel, _) -> LPAUtilsKt.switchProfile(channel.getLpa(), iccid[0], enable[0], refresh[0])
);
return success(success);
}
// endregion
// region LPA Helpers
@SuppressWarnings("unchecked")
private EuiccChannel findEuiccChannel(DefaultEuiccChannelManager euiccChannelManager, int slotId, int portId) throws Exception
{
var findEuiccChannelByPortMethod = DefaultEuiccChannelManager.class.getDeclaredMethod("findEuiccChannelByPort", int.class, int.class, Continuation.class);
findEuiccChannelByPortMethod.setAccessible(true);
return (EuiccChannel) BuildersKt.runBlocking
(
EmptyCoroutineContext.INSTANCE,
(_, continuation) ->
{
try
{
return findEuiccChannelByPortMethod.invoke(euiccChannelManager, slotId, portId, continuation);
}
catch (Exception ex)
{
return null;
}
}
);
}
private <T> T withEuiccChannel(Map<String, String> args, Function2<EuiccChannel, Continuation<? super T>, ?> operation) throws Exception
{
var slotId = new int[1];
var portId = new int[1];
requireSlotAndPort(args, slotId, portId);
return withEuiccChannel(slotId[0], portId[0], operation);
}
@SuppressWarnings("unchecked")
private <T> T withEuiccChannel(int slotId, int portId, Function2<EuiccChannel, Continuation<? super T>, ?> operation) throws Exception
{
var euiccChannelManager = appContainer.getEuiccChannelManager();
return (T) BuildersKt.runBlocking
(
EmptyCoroutineContext.INSTANCE,
(_, continuation) -> euiccChannelManager.withEuiccChannel(slotId, portId, operation, continuation)
);
}
// endregion
// region Arg Helpers
private static Map<String, String> getArgsFromUri(Uri uri)
{
var args = new HashMap<String, String>();
for (String name : uri.getQueryParameterNames())
{
args.put(name, URLDecoder.decode(uri.getQueryParameter(name), StandardCharsets.UTF_8));
}
return args;
}
private void requireSlotAndPort(Map<String, String> args, int[] slotIdOut, int[] portIdOut) throws Exception
{
final String slotIdArg = "slotId";
final String portIdArg = "portId";
if (!tryGetArgAsInt(args, slotIdArg, slotIdOut))
throw new Exception("missing_arg_" + slotIdArg);
if (!tryGetArgAsInt(args, portIdArg, portIdOut))
throw new Exception("missing_arg_" + portIdArg);
}
private static boolean tryGetArgAsString(Map<String, String> args, String key, String[] out)
{
String arg = args.get(key);
if (arg == null || arg.isEmpty())
return false;
out[0] = arg;
return true;
}
private static boolean tryGetArgAsInt(Map<String, String> args, String key, int[] out)
{
String[] arg = new String[1];
if (!tryGetArgAsString(args, key, arg))
return false;
try
{
out[0] = Integer.parseInt(arg[0]);
return true;
}
catch (NumberFormatException ex)
{
return false;
}
}
private static boolean tryGetArgAsBoolean(Map<String, String> args, String key, boolean[] out)
{
String[] arg = new String[1];
if (!tryGetArgAsString(args, key, arg))
return false;
out[0] = arg[0].equals("1")
|| arg[0].toLowerCase().startsWith("y")
|| arg[0].equalsIgnoreCase("on")
|| arg[0].equalsIgnoreCase("true");
return true;
}
// endregion
// region Row Helpers
private static MatrixCursor rows(String[] columns, Object[][] values)
{
var rows = new MatrixCursor(columns);
for (Object[] rowValues : values)
{
rows.addRow(rowValues);
}
return rows;
}
private static MatrixCursor row(String column, String value)
{
return rows(new String[] { column }, new Object[][] { new Object[] { value } });
}
private static MatrixCursor success()
{
return success(true);
}
private static MatrixCursor success(boolean success)
{
return row("success", Boolean.toString(success));
}
private static MatrixCursor error(String message)
{
return row("error", message);
}
private static MatrixCursor missingArgError(String argName)
{
return error("missing_arg_" + argName);
}
private static MatrixCursor empty()
{
return new MatrixCursor(new String[0]);
}
private static MatrixCursor projectColumns(MatrixCursor rows, String[] projection)
{
return projectColumns(rows, projection, null);
}
private static MatrixCursor projectColumns(MatrixCursor rows, String[] projection, String[] preserve)
{
String[] rowCols = rows.getColumnNames();
var cols = new LinkedHashSet<String>();
if (projection != null && projection.length > 0)
Collections.addAll(cols, projection);
else
Collections.addAll(cols, rowCols);
if (preserve != null && preserve.length > 0)
{
for (String col : preserve)
{
boolean exists = false;
for (String rowCol : rowCols)
{
if (col.equals(rowCol))
{
exists = true;
break;
}
}
if (exists)
cols.add(col);
}
}
if (cols.isEmpty())
return rows;
var outCols = cols.toArray(new String[0]);
var outRows = new MatrixCursor(outCols);
while (rows.moveToNext())
{
var row = new Object[outCols.length];
for (int i = 0; i < outCols.length; i++)
{
int index = rows.getColumnIndex(outCols[i]);
if (index < 0)
{
row[i] = null;
continue;
}
switch (rows.getType(index))
{
case Cursor.FIELD_TYPE_NULL:
row[i] = null;
break;
case Cursor.FIELD_TYPE_INTEGER:
row[i] = rows.getLong(index);
break;
case Cursor.FIELD_TYPE_FLOAT:
row[i] = rows.getDouble(index);
break;
case Cursor.FIELD_TYPE_BLOB:
row[i] = rows.getBlob(index);
break;
case Cursor.FIELD_TYPE_STRING:
default:
row[i] = rows.getString(index);
break;
}
}
outRows.addRow(row);
}
return outRows;
}
// endregion
}