mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
wlan:Check priviledge permission before processing
for SET_PACKET_FILTER IOCTL Kernel assumes all SET IOCTL commands are assigned with even numbers. But in our WLAN driver, some SET IOCTLS are assigned with odd numbers. This leads kernel fail to check, for some SET IOCTLs, whether user has the right permission to do SET operation. Hence, in driver, before processing SET_PACKET_FILTER IOCTL, making sure user task has right permission to process the command. Bug: 27104184 Change-Id: I1edc65ee26c5e3e4260e0f6546434b0137493396 Signed-off-by: Yuan Lin <yualin@google.com>
This commit is contained in:
parent
e9dcd5aa01
commit
fd13b59e5a
1 changed files with 7 additions and 0 deletions
|
@ -5834,6 +5834,13 @@ static int iw_set_packet_filter_params(struct net_device *dev, struct iw_request
|
|||
hdd_adapter_t *pAdapter = WLAN_HDD_GET_PRIV_PTR(dev);
|
||||
tpPacketFilterCfg pRequest = (tpPacketFilterCfg)wrqu->data.pointer;
|
||||
|
||||
if (!capable(CAP_NET_ADMIN))
|
||||
{
|
||||
VOS_TRACE(VOS_MODULE_ID_HDD, VOS_TRACE_LEVEL_ERROR,
|
||||
FL("permission check failed"));
|
||||
return -EPERM;
|
||||
}
|
||||
|
||||
return wlan_hdd_set_filter(WLAN_HDD_GET_CTX(pAdapter), pRequest, pAdapter->sessionId);
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue