RK3328 Android系统 接口
怎样去解决RK3328 Android10.0系统ioctl返回的问题呢?
回帖(1)
2022-3-9 15:55:34
测试平台
Platform: RK3328
OS: Android10.0
现象
3328 android10.0默认为64位系统,客户提出在jni中使用ioctl函数返回值一直是-1,经测试jni编译64位so使用ioctl正常;但是使用32位so时使用ioctl返回-1.
分析
ioctl 中gpio request等其他操作.我怀疑是ioctl函数有问题.发现file_operations 中ioctl用的是
.unlocked_ioctl .
static const struct file_operations gpio_test_fops = {
.owner = THIS_MODULE,
// .unlocked_ioctl = gpio_test_ioctl,
.compat_ioctl = gpio_test_ioctl,
.open = gpio_test_open,
.release = gpio_test_release,
};
查找资料得知, 正常的情况下,对Ioctl的调用,会走unlock_ioctl,但在32位系统64位的内核上面会走compat_ioctl接口,这就是compat_ioctl存在的意义,由于我使用的Android系统位32位,内核编译的是Arm64,这应该就是这个Bug产生的原因,果断替换位compat_ioctl,问题解决.
long (unlocked_ioctl) (struct file , unsigned int, unsigned long);
long (compat_ioctl) (struct file , unsigned int, unsigned long);
测试后可以解决当前问题
测试平台
Platform: RK3328
OS: Android10.0
现象
3328 android10.0默认为64位系统,客户提出在jni中使用ioctl函数返回值一直是-1,经测试jni编译64位so使用ioctl正常;但是使用32位so时使用ioctl返回-1.
分析
ioctl 中gpio request等其他操作.我怀疑是ioctl函数有问题.发现file_operations 中ioctl用的是
.unlocked_ioctl .
static const struct file_operations gpio_test_fops = {
.owner = THIS_MODULE,
// .unlocked_ioctl = gpio_test_ioctl,
.compat_ioctl = gpio_test_ioctl,
.open = gpio_test_open,
.release = gpio_test_release,
};
查找资料得知, 正常的情况下,对Ioctl的调用,会走unlock_ioctl,但在32位系统64位的内核上面会走compat_ioctl接口,这就是compat_ioctl存在的意义,由于我使用的Android系统位32位,内核编译的是Arm64,这应该就是这个Bug产生的原因,果断替换位compat_ioctl,问题解决.
long (unlocked_ioctl) (struct file , unsigned int, unsigned long);
long (compat_ioctl) (struct file , unsigned int, unsigned long);
测试后可以解决当前问题
举报