Android/C/C++ 中解决 USB UnMount(禁止USB端口)
引:因为某些特殊需求,需要在某些设备接入车机的时候,动态UnMount USB设备,因为代码其中有一些方法是自定义过的,所以该文章仅供思路参考。
一:第一种方法是在java层做处理
如下需要涉及到/System/Vold 和frameWork 以及device层的修改。
其实主要是在framework层的修改,用到的方法也很简单,需要用到:
StorageManager
StorageVolume
根据我当前项目的需求,是要求插入某一个device 的时候,判断出是当前需要的设备的时候,卸载/禁止USB2 端口。
里面可能有一些方法是已经重写过的,正规的API 不一定有,比如getUsbId()就没有,不过还是如篇头所说提供下解决思路吧。
思路:为了设备使用期间,USB2不能被使用,除了主动unmount之后,还需要保证下一次USB插拔的时候拦截USB挂载消息。(主动卸载只是生效一次),所以步骤就是2个,先主动unmount,在设置prop属性在Vold中拦截USB挂载消息。
核心代码:
**
* <P>if device Connected Unmount USB2</P>
* <P>beibei 20191231</P>
*/
private StorageManager mStorageManager;
private final String UNMOUNT_DEVICE_ID = "USB2";
private void StartUnmountUsbAccessory() {
Log.d(TAG, "StartUnmountUsbAccessory");
try {
if (mStorageManager == null){
Log.d(TAG, "mStorageManager is null");
mStorageManager = mContext.getSystemService(StorageManager.class);
}
List<StorageVolume> volumes =mStorageManager.getStorageVolumes();
for (int i = 0; i < volumes.size(); i++) {
Log.d(TAG, "StorageVolume start foreach");
//if usb the not's emulated/Primary , It's not an external usb
if (!volumes.get(i).isEmulated() && !volumes.get(i).isPrimary()) {
Log.d(TAG, "isEmulated && isPrimary");
if (UNMOUNT_DEVICE_ID.equals(volumes.get(i).getUsbId())) {
Log.d(TAG, "imStorageManager.unmount Success");
mStorageManager.unmount(volumes.get(i).getId());
}
}
}
} catch(Exception e){
e.printStackTrace();
}
}
解释:通过StorageManager 获取到StorageVolume,并通过循环遍历,之后通过isPrimary(不是外部存储卷)和isEmulated (不是模拟卷)过滤后,
下面的就是匹配自己想要UnMount的ID了,匹配成功后,调用mStorageManager.unmount。
**注意:**该方法调用会抛出System.error ,需要处理异常。
必须增加 try catch
/**
* Returns true if the volume is the primary shared/external storage, which is the volume
* backed by {@link Environment#getExternalStorageDirectory()}.
*/
public boolean isPrimary() {
return mPrimary;
}
/**
* Returns true if the volume is emulated.
*
* @return is removable
*/
public boolean isEmulated() {
return mEmulated;
}
然后其次就是 设置 prop
case MSG_PROJECTION_DEVICE_CONNECTED_SUCCESS:
StartUnmountUsbAccessory();
SystemProperties.set(UNMOUNT_DEVICE_PROP_STATE,"true");
break;
case MSG_PROJECTION_DEVICE_DISCONNECTED_SUCCESS:
SystemProperties.set(UNMOUNT_DEVICE_PROP_STATE,"false");
break;
关键的拦截USB mount的在/system/vold/ NetlinkHandler.cpp,的onEvent消息事件中。
void NetlinkHandler::onEvent(NetlinkEvent *evt) {
VolumeManager *vm = VolumeManager::Instance();
const char *subsys = evt->getSubsystem();
if (!subsys) {
SLOGW("No subsystem found in netlink event");
return;
}
/***Add usb2 disable temporary scheme 20191231 start***/
char args[PROPERTY_VALUE_MAX];
property_get("vendor.device.usb2",args,"false");
if (strcmp(args,"true")==0){
const char *path = evt->findParam("DEVPATH");
if (strstr(path,USB_2_PATH)!=NULL){
SLOGW("DISABLE USB2");
return;
}
}
/***Add usb2 disable temporary scheme 20191231 end***/
if (!strcmp(subsys, "block")) {
vm->handleBlockEvent(evt);
}
}
至于Prop怎么设置,百度下,一般写在device/fsl/… 的 .mk文件中
https://blog.csdn.net/qq_31332467/article/details/104751769
Ps: PRODUCT_PROPERTY_OVERRIDES +=
vendor.device.usb2 = false
二:第二种可以在C++ 层
主要的一个代码就是 echo shell 命令
#include<stdlib.h>
system("echo ‘1-1.2" >/sys/bus/usb/drivers/usb/unbind");
思路步骤是这样的:
在C++代码中找到合适的位置,先判断出什么情况下,接入什么设备需要unMound USB,增加tag,当满足的时候就执行system(“echo ‘1-1.2” >/sys/bus/usb/drivers/usb/unbind");
这个我也是在串口命令进行过测试,实际在代码中,我没有测试过,因为有了第一种方法。
测试方法有效性:
串口进入到Android板子内部:
解绑:echo “1-1.2” > unbind
绑定:echo “1-1.2” > bind
具体代码中实际应用没有测试。
上一篇: 8.16 day34 MySQL基本
下一篇: git的一些骚操作