Add FUNCTIONFS_ENDPOINT_ALLOC to ioctl_defines and mediaprovider.te
We've got a SELinux warning in kernel-5.10 when "File Transfer" (MTP) has been enabled by user. Error log: avc: denied { ioctl } for pid=5521 comm="MtpServer" path="/dev/usb-ffs/mtp/ep1" dev="functionfs" ino=102677 ioctlcmd=0x67e7 scontext=u:r:mediaprovider:s0:c512,c768 tcontext=u:object_r:functionfs:s0 tclass=file permissive=0 Repeat steps: 1. Connect the phone to PC with USB cable. 2. Select "File Transfer" (MTP) in "USB Preferences" Menu. 3. Selinux warning will arise after "File Transfer" has been enabled by user due to an IOCTL access to /dev/usb-ffs/mtp/ep1. Solution: To solve this warning, add a sepolicy to allow this type of IOCTL is required. Signed-off-by: Macpaul Lin <macpaul.lin@mediatek.com> Change-Id: Id340fb98062b3cee239343f3800f6dfceadeb572 Bug: 193473440
This commit is contained in:
parent
2abf1e293b
commit
641c5ae99d
2 changed files with 2 additions and 0 deletions
|
@ -39,6 +39,7 @@ allow mediaprovider mtp_device:chr_file rw_file_perms;
|
|||
allow mediaprovider functionfs:dir search;
|
||||
allow mediaprovider functionfs:file rw_file_perms;
|
||||
allowxperm mediaprovider functionfs:file ioctl FUNCTIONFS_ENDPOINT_DESC;
|
||||
allowxperm mediaprovider functionfs:file ioctl FUNCTIONFS_ENDPOINT_ALLOC;
|
||||
|
||||
# MtpServer sets sys.usb.ffs.mtp.ready
|
||||
get_prop(mediaprovider, ffs_config_prop)
|
||||
|
|
|
@ -846,6 +846,7 @@ define(`FUNCTIONFS_ENDPOINT_REVMAP', `0x00006781')
|
|||
define(`FUNCTIONFS_FIFO_FLUSH', `0x00006702')
|
||||
define(`FUNCTIONFS_FIFO_STATUS', `0x00006701')
|
||||
define(`FUNCTIONFS_INTERFACE_REVMAP', `0x00006780')
|
||||
define(`FUNCTIONFS_ENDPOINT_ALLOC', `0x000067e7')
|
||||
define(`FW_CDEV_IOC_ADD_DESCRIPTOR', `0xc0182306')
|
||||
define(`FW_CDEV_IOC_ALLOCATE', `0xc0202302')
|
||||
define(`FW_CDEV_IOC_ALLOCATE_ISO_RESOURCE', `0xc018230d')
|
||||
|
|
Loading…
Reference in a new issue