Răsfoiți Sursa

qcacld-3.0: Add conversion of all auth type for big data

Currently host does not convert all internal auth types
to qca auth types which results in invalid auth type
indication for big data logging even for some of the
valid auth types.

For example in current scenario connection hapens in SAE
auth type but driver indicates invalid AKM type.

To address above issue add missing auth type and send
proper auth type to user space as part of the big data
logging.

Change-Id: I4e0d78d143e2a0132f333957019d2051e166d9a1
CRs-Fixed: 2794103
Ashish Kumar Dhanotiya 4 ani în urmă
părinte
comite
5696667500
1 a modificat fișierele cu 27 adăugiri și 0 ștergeri
  1. 27 0
      core/hdd/src/wlan_hdd_station_info.c

+ 27 - 0
core/hdd/src/wlan_hdd_station_info.c

@@ -292,6 +292,33 @@ static int hdd_convert_auth_type(uint32_t auth_type)
 	case eCSR_AUTH_TYPE_FT_SUITEB_EAP_SHA384:
 		ret_val = QCA_WLAN_AUTH_TYPE_FT_SUITEB_EAP_SHA384;
 		break;
+	case eCSR_AUTH_TYPE_SAE:
+		ret_val = QCA_WLAN_AUTH_TYPE_SAE;
+		break;
+	case eCSR_AUTH_TYPE_FILS_SHA256:
+		ret_val = QCA_WLAN_AUTH_TYPE_FILS_SHA256;
+		break;
+	case eCSR_AUTH_TYPE_FILS_SHA384:
+		ret_val = QCA_WLAN_AUTH_TYPE_FILS_SHA384;
+		break;
+	case eCSR_AUTH_TYPE_FT_FILS_SHA256:
+		ret_val = QCA_WLAN_AUTH_TYPE_FT_FILS_SHA256;
+		break;
+	case eCSR_AUTH_TYPE_FT_FILS_SHA384:
+		ret_val = QCA_WLAN_AUTH_TYPE_FT_FILS_SHA384;
+		break;
+	case eCSR_AUTH_TYPE_DPP_RSN:
+		ret_val = QCA_WLAN_AUTH_TYPE_DPP_RSN;
+		break;
+	case eCSR_AUTH_TYPE_OWE:
+		ret_val = QCA_WLAN_AUTH_TYPE_OWE;
+		break;
+	case eCSR_AUTH_TYPE_SUITEB_EAP_SHA256:
+		ret_val = QCA_WLAN_AUTH_TYPE_SUITEB_EAP_SHA256;
+		break;
+	case eCSR_AUTH_TYPE_SUITEB_EAP_SHA384:
+		ret_val = QCA_WLAN_AUTH_TYPE_SUITEB_EAP_SHA384;
+		break;
 	case eCSR_NUM_OF_SUPPORT_AUTH_TYPE:
 	case eCSR_AUTH_TYPE_FAILED:
 	case eCSR_AUTH_TYPE_NONE: