Merge "wifi: Add BSSID of the AP in PMKSA cache added event"

This commit is contained in:
Sunil Ravi
2023-02-15 17:10:52 +00:00
committed by Android (Google) Code Review
5 changed files with 97 additions and 0 deletions

View File

@@ -59,6 +59,9 @@ interface ISupplicantStaIfaceCallback {
oneway void onNetworkAdded(in int id);
oneway void onNetworkNotFound(in byte[] ssid);
oneway void onNetworkRemoved(in int id);
/**
* @deprecated use onPmkSaCacheAdded() instead.
*/
oneway void onPmkCacheAdded(in long expirationTimeInSec, in byte[] serializedEntry);
/**
* @deprecated This callback is deprecated from AIDL v2, newer HAL should call onSupplicantStateChanged()
@@ -75,6 +78,7 @@ interface ISupplicantStaIfaceCallback {
oneway void onBssFrequencyChanged(in int frequencyMhz);
oneway void onSupplicantStateChanged(in android.hardware.wifi.supplicant.SupplicantStateChangeData stateChangeData);
oneway void onQosPolicyResponseForScs(in android.hardware.wifi.supplicant.QosPolicyScsResponseStatus[] qosPolicyScsResponseStatus);
oneway void onPmkSaCacheAdded(in android.hardware.wifi.supplicant.PmkSaCacheData pmkSaData);
@Backing(type="int") @VintfStability
enum MloLinkInfoChangeReason {
TID_TO_LINK_MAP = 0,

View File

@@ -0,0 +1,40 @@
/*
* Copyright (C) 2023 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
///////////////////////////////////////////////////////////////////////////////
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
///////////////////////////////////////////////////////////////////////////////
// This file is a snapshot of an AIDL file. Do not edit it manually. There are
// two cases:
// 1). this is a frozen version file - do not edit this in any case.
// 2). this is a 'current' file. If you make a backwards compatible change to
// the interface (from the latest frozen version), the build system will
// prompt you to update this file with `m <name>-update-api`.
//
// You must not make a backward incompatible change to any AIDL file built
// with the aidl_interface module type with versions property set. The module
// type is used to build AIDL files in a way that they can be used across
// independently updatable components of the system. If a device is shipped
// with such a backward incompatible change, it has a high risk of breaking
// later when a module using the interface is updated, e.g., Mainline modules.
package android.hardware.wifi.supplicant;
@VintfStability
parcelable PmkSaCacheData {
byte[] bssid;
long expirationTimeInSec;
byte[] serializedEntry;
}

View File

@@ -30,6 +30,7 @@ import android.hardware.wifi.supplicant.DppProgressCode;
import android.hardware.wifi.supplicant.DppStatusErrorCode;
import android.hardware.wifi.supplicant.Hs20AnqpData;
import android.hardware.wifi.supplicant.OsuMethod;
import android.hardware.wifi.supplicant.PmkSaCacheData;
import android.hardware.wifi.supplicant.QosPolicyData;
import android.hardware.wifi.supplicant.QosPolicyScsResponseStatus;
import android.hardware.wifi.supplicant.StaIfaceCallbackState;
@@ -248,6 +249,8 @@ oneway interface ISupplicantStaIfaceCallback {
/**
* Indicates pairwise master key (PMK) cache added event.
*
* @deprecated use onPmkSaCacheAdded() instead.
*
* @param expirationTimeInSec expiration time in seconds
* @param serializedEntry is serialized PMK cache entry, the content is
* opaque for the framework and depends on the native implementation.
@@ -392,4 +395,12 @@ oneway interface ISupplicantStaIfaceCallback {
* @param qosPolicyScsResponseStatus[] status for each SCS id.
*/
void onQosPolicyResponseForScs(in QosPolicyScsResponseStatus[] qosPolicyScsResponseStatus);
/**
* Indicates pairwise master key (PMK) cache added event.
*
* @param pmkSaData PMKSA cache entry added details.
*
*/
void onPmkSaCacheAdded(in PmkSaCacheData pmkSaData);
}

View File

@@ -0,0 +1,37 @@
/*
* Copyright (C) 2023 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.hardware.wifi.supplicant;
/**
* Details of the PMKSA cache entry that was added in supplicant.
*/
@VintfStability
parcelable PmkSaCacheData {
/**
* BSSID of the access point to which the station is associated.
*/
byte[/* 6 */] bssid;
/**
* PMK expiration time in seconds.
*/
long expirationTimeInSec;
/**
* Serialized PMK cache entry.
* The content is opaque for the framework and depends on the native implementation.
*/
byte[] serializedEntry;
}

View File

@@ -234,6 +234,11 @@ class SupplicantStaIfaceCallback : public BnSupplicantStaIfaceCallback {
override {
return ndk::ScopedAStatus::ok();
}
::ndk::ScopedAStatus onPmkSaCacheAdded(
const ::aidl::android::hardware::wifi::supplicant::PmkSaCacheData& /* pmkSaData */)
override {
return ndk::ScopedAStatus::ok();
}
};
class SupplicantStaIfaceAidlTest : public testing::TestWithParam<std::string> {