Kaynağa Gözat

qcacld-3.0: Check priviledge permission for SET_CHANNEL_RANGE

qcacld-2.0 to qcacld-3.0 propagation

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_CHANNEL_RANGE IOCTL,
making sure user task has right permission to process the command.

Change-Id: I48bcd55bee45203667bcc679db4ad96aa9e04b7c
CRs-Fixed: 930555
Hanumantha Reddy Pothula 9 yıl önce
ebeveyn
işleme
3b8c0a5ba8
1 değiştirilmiş dosya ile 5 ekleme ve 0 silme
  1. 5 0
      core/hdd/src/wlan_hdd_hostapd.c

+ 5 - 0
core/hdd/src/wlan_hdd_hostapd.c

@@ -3517,6 +3517,11 @@ static int wlan_hdd_set_force_acs_ch_range(struct net_device *dev,
 	hdd_context_t *hdd_ctx = WLAN_HDD_GET_CTX(adapter);
 	int *value = (int *)extra;
 
+	if (!capable(CAP_NET_ADMIN)) {
+		hddLog(LOGE, FL("permission check failed"));
+		return -EPERM;
+	}
+
 	if (wlan_hdd_validate_operation_channel(adapter, value[0]) !=
 					 CDF_STATUS_SUCCESS ||
 		wlan_hdd_validate_operation_channel(adapter, value[1]) !=