Merge "Update vold to use KM4.1"

gugelfrei
Treehugger Robot 4 years ago committed by Gerrit Code Review
commit 6c5f302a90

@ -43,6 +43,7 @@ cc_defaults {
shared_libs: [ shared_libs: [
"android.hardware.keymaster@3.0", "android.hardware.keymaster@3.0",
"android.hardware.keymaster@4.0", "android.hardware.keymaster@4.0",
"android.hardware.keymaster@4.1",
"android.hardware.boot@1.0", "android.hardware.boot@1.0",
"libbase", "libbase",
"libbinder", "libbinder",
@ -57,6 +58,7 @@ cc_defaults {
"libincfs", "libincfs",
"libhidlbase", "libhidlbase",
"libkeymaster4support", "libkeymaster4support",
"libkeymaster4_1support",
"libkeyutils", "libkeyutils",
"liblog", "liblog",
"liblogwrap", "liblogwrap",
@ -231,10 +233,12 @@ cc_binary {
"android.hardware.keymaster@3.0", "android.hardware.keymaster@3.0",
"android.hardware.keymaster@4.0", "android.hardware.keymaster@4.0",
"android.hardware.keymaster@4.1",
"libhardware", "libhardware",
"libhardware_legacy", "libhardware_legacy",
"libhidlbase", "libhidlbase",
"libkeymaster4support", "libkeymaster4support",
"libkeymaster4_1support",
], ],
} }

@ -43,8 +43,8 @@
#include <cutils/properties.h> #include <cutils/properties.h>
#include <hardware/hw_auth_token.h> #include <hardware/hw_auth_token.h>
#include <keymasterV4_0/authorization_set.h> #include <keymasterV4_1/authorization_set.h>
#include <keymasterV4_0/keymaster_utils.h> #include <keymasterV4_1/keymaster_utils.h>
extern "C" { extern "C" {

@ -17,8 +17,8 @@
#include "Keymaster.h" #include "Keymaster.h"
#include <android-base/logging.h> #include <android-base/logging.h>
#include <keymasterV4_0/authorization_set.h> #include <keymasterV4_1/authorization_set.h>
#include <keymasterV4_0/keymaster_utils.h> #include <keymasterV4_1/keymaster_utils.h>
namespace android { namespace android {
namespace vold { namespace vold {

@ -24,13 +24,24 @@
#include <utility> #include <utility>
#include <android-base/macros.h> #include <android-base/macros.h>
#include <keymasterV4_0/Keymaster.h> #include <keymasterV4_1/Keymaster.h>
#include <keymasterV4_0/authorization_set.h> #include <keymasterV4_1/authorization_set.h>
namespace android { namespace android {
namespace vold { namespace vold {
namespace km = ::android::hardware::keymaster::V4_0; namespace km {
using namespace ::android::hardware::keymaster::V4_1;
// Surprisingly -- to me, at least -- this is totally fine. You can re-define symbols that were
// brought in via a using directive (the "using namespace") above. In general this seems like a
// dangerous thing to rely on, but in this case its implications are simple and straightforward:
// km::ErrorCode refers to the 4.0 ErrorCode, though we pull everything else from 4.1.
using ErrorCode = ::android::hardware::keymaster::V4_0::ErrorCode;
} // namespace km
using KmDevice = km::support::Keymaster; using KmDevice = km::support::Keymaster;
// C++ wrappers to the Keymaster hidl interface. // C++ wrappers to the Keymaster hidl interface.

Loading…
Cancel
Save