Search in sources :

Example 16 with Command

use of com.android.server.NativeDaemonConnector.Command in project android_frameworks_base by DirtyUnicorns.

the class MountService method destroySecureContainer.

public int destroySecureContainer(String id, boolean force) {
    enforcePermission(android.Manifest.permission.ASEC_DESTROY);
    waitForReady();
    warnOnNotMounted();
    /*
         * Force a GC to make sure AssetManagers in other threads of the
         * system_server are cleaned up. We have to do this since AssetManager
         * instances are kept as a WeakReference and it's possible we have files
         * open on the external storage.
         */
    Runtime.getRuntime().gc();
    int rc = StorageResultCode.OperationSucceeded;
    try {
        final Command cmd = new Command("asec", "destroy", id);
        if (force) {
            cmd.appendArg("force");
        }
        mConnector.execute(cmd);
    } catch (NativeDaemonConnectorException e) {
        int code = e.getCode();
        if (code == VoldResponseCode.OpFailedStorageBusy) {
            rc = StorageResultCode.OperationFailedStorageBusy;
        } else {
            rc = StorageResultCode.OperationFailedInternalError;
        }
    }
    if (rc == StorageResultCode.OperationSucceeded) {
        synchronized (mAsecMountSet) {
            if (mAsecMountSet.contains(id)) {
                mAsecMountSet.remove(id);
            }
        }
    }
    return rc;
}
Also used : Command(com.android.server.NativeDaemonConnector.Command)

Example 17 with Command

use of com.android.server.NativeDaemonConnector.Command in project android_frameworks_base by AOSPA.

the class MountService method unmountSecureContainer.

public int unmountSecureContainer(String id, boolean force) {
    enforcePermission(android.Manifest.permission.ASEC_MOUNT_UNMOUNT);
    waitForReady();
    warnOnNotMounted();
    synchronized (mAsecMountSet) {
        if (!mAsecMountSet.contains(id)) {
            return StorageResultCode.OperationFailedStorageNotMounted;
        }
    }
    /*
         * Force a GC to make sure AssetManagers in other threads of the
         * system_server are cleaned up. We have to do this since AssetManager
         * instances are kept as a WeakReference and it's possible we have files
         * open on the external storage.
         */
    Runtime.getRuntime().gc();
    int rc = StorageResultCode.OperationSucceeded;
    try {
        final Command cmd = new Command("asec", "unmount", id);
        if (force) {
            cmd.appendArg("force");
        }
        mConnector.execute(cmd);
    } catch (NativeDaemonConnectorException e) {
        int code = e.getCode();
        if (code == VoldResponseCode.OpFailedStorageBusy) {
            rc = StorageResultCode.OperationFailedStorageBusy;
        } else {
            rc = StorageResultCode.OperationFailedInternalError;
        }
    }
    if (rc == StorageResultCode.OperationSucceeded) {
        synchronized (mAsecMountSet) {
            mAsecMountSet.remove(id);
        }
    }
    return rc;
}
Also used : Command(com.android.server.NativeDaemonConnector.Command)

Example 18 with Command

use of com.android.server.NativeDaemonConnector.Command in project android_frameworks_base by crdroidandroid.

the class NetworkManagementService method setInterfaceConfig.

@Override
public void setInterfaceConfig(String iface, InterfaceConfiguration cfg) {
    mContext.enforceCallingOrSelfPermission(CONNECTIVITY_INTERNAL, TAG);
    LinkAddress linkAddr = cfg.getLinkAddress();
    if (linkAddr == null || linkAddr.getAddress() == null) {
        throw new IllegalStateException("Null LinkAddress given");
    }
    final Command cmd = new Command("interface", "setcfg", iface, linkAddr.getAddress().getHostAddress(), linkAddr.getPrefixLength());
    for (String flag : cfg.getFlags()) {
        cmd.appendArg(flag);
    }
    try {
        mConnector.execute(cmd);
    } catch (NativeDaemonConnectorException e) {
        throw e.rethrowAsParcelableException();
    }
}
Also used : LinkAddress(android.net.LinkAddress) Command(com.android.server.NativeDaemonConnector.Command)

Example 19 with Command

use of com.android.server.NativeDaemonConnector.Command in project android_frameworks_base by crdroidandroid.

the class NetworkManagementService method addLegacyRouteForNetId.

@Override
public void addLegacyRouteForNetId(int netId, RouteInfo routeInfo, int uid) {
    mContext.enforceCallingOrSelfPermission(CONNECTIVITY_INTERNAL, TAG);
    final Command cmd = new Command("network", "route", "legacy", uid, "add", netId);
    // create triplet: interface dest-ip-addr/prefixlength gateway-ip-addr
    final LinkAddress la = routeInfo.getDestinationLinkAddress();
    cmd.appendArg(routeInfo.getInterface());
    cmd.appendArg(la.getAddress().getHostAddress() + "/" + la.getPrefixLength());
    if (routeInfo.hasGateway()) {
        cmd.appendArg(routeInfo.getGateway().getHostAddress());
    }
    try {
        mConnector.execute(cmd);
    } catch (NativeDaemonConnectorException e) {
        throw e.rethrowAsParcelableException();
    }
}
Also used : LinkAddress(android.net.LinkAddress) Command(com.android.server.NativeDaemonConnector.Command)

Example 20 with Command

use of com.android.server.NativeDaemonConnector.Command in project android_frameworks_base by crdroidandroid.

the class NetworkManagementService method setDnsForwarders.

@Override
public void setDnsForwarders(Network network, String[] dns) {
    mContext.enforceCallingOrSelfPermission(CONNECTIVITY_INTERNAL, TAG);
    int netId = (network != null) ? network.netId : ConnectivityManager.NETID_UNSET;
    final Command cmd = new Command("tether", "dns", "set", netId);
    for (String s : dns) {
        cmd.appendArg(NetworkUtils.numericToInetAddress(s).getHostAddress());
    }
    try {
        mConnector.execute(cmd);
    } catch (NativeDaemonConnectorException e) {
        throw e.rethrowAsParcelableException();
    }
}
Also used : Command(com.android.server.NativeDaemonConnector.Command)

Aggregations

Command (com.android.server.NativeDaemonConnector.Command)58 LinkAddress (android.net.LinkAddress)12 InetAddress (java.net.InetAddress)11 InterfaceAddress (java.net.InterfaceAddress)6 NetworkInterface (java.net.NetworkInterface)6 Inet4Address (java.net.Inet4Address)1