Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | ifeq ($(TW_INCLUDE_CRYPTO), true) |
| 3 | include $(CLEAR_VARS) |
| 4 | |
| 5 | LOCAL_MODULE := libe4crypt |
| 6 | LOCAL_MODULE_TAGS := eng optional |
| 7 | LOCAL_CFLAGS := |
Ethan Yonker | e9afc3d | 2018-08-30 15:16:27 -0500 | [diff] [blame] | 8 | LOCAL_SRC_FILES := Decrypt.cpp ScryptParameters.cpp Utils.cpp HashPassword.cpp ext4_crypt.cpp |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 9 | LOCAL_SHARED_LIBRARIES := libselinux libc libc++ libext4_utils libbase libcrypto libcutils libkeymaster_messages libhardware libprotobuf-cpp-lite |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 10 | LOCAL_STATIC_LIBRARIES := libscrypt_static |
Ethan Yonker | 95e8007 | 2017-08-24 21:45:50 -0500 | [diff] [blame] | 11 | LOCAL_C_INCLUDES := system/extras/ext4_utils system/extras/ext4_utils/include/ext4_utils external/scrypt/lib/crypto system/security/keystore hardware/libhardware/include/hardware system/security/softkeymaster/include/keymaster system/keymaster/include |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 12 | |
| 13 | ifneq ($(wildcard hardware/libhardware/include/hardware/keymaster0.h),) |
| 14 | LOCAL_CFLAGS += -DTW_CRYPTO_HAVE_KEYMASTERX |
| 15 | LOCAL_C_INCLUDES += external/boringssl/src/include |
| 16 | endif |
Ethan Yonker | fefe591 | 2017-09-30 22:22:13 -0500 | [diff] [blame] | 17 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0) |
Ethan Yonker | e9afc3d | 2018-08-30 15:16:27 -0500 | [diff] [blame] | 18 | #8.0 or higher |
| 19 | LOCAL_CFLAGS += -DHAVE_GATEKEEPER1 |
| 20 | LOCAL_SHARED_LIBRARIES += android.hardware.keymaster@3.0 libkeystore_binder libhidlbase libutils libbinder android.hardware.gatekeeper@1.0 |
| 21 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0) |
| 22 | #9.0 rules |
| 23 | LOCAL_CFLAGS += -DUSE_KEYSTORAGE_4 -Wno-unused-variable -Wno-sign-compare -Wno-unused-parameter -Wno-comment |
Ethan Yonker | 9338282 | 2018-11-01 15:25:31 -0500 | [diff] [blame] | 24 | LOCAL_SRC_FILES += Ext4CryptPie.cpp Keymaster4.cpp KeyStorage4.cpp KeyUtil.cpp MetadataCrypt.cpp KeyBuffer.cpp |
Ethan Yonker | e9afc3d | 2018-08-30 15:16:27 -0500 | [diff] [blame] | 25 | LOCAL_SHARED_LIBRARIES += android.hardware.keymaster@4.0 libkeymaster4support |
| 26 | LOCAL_SHARED_LIBRARIES += android.hardware.gatekeeper@1.0 libkeystore_parcelables libkeystore_aidl |
Ethan Yonker | 31344a3 | 2017-11-29 12:13:41 -0600 | [diff] [blame] | 27 | LOCAL_CFLAGS += -DHAVE_SYNTH_PWD_SUPPORT |
| 28 | LOCAL_SRC_FILES += Weaver1.cpp |
| 29 | LOCAL_SHARED_LIBRARIES += android.hardware.weaver@1.0 |
Ethan Yonker | 31344a3 | 2017-11-29 12:13:41 -0600 | [diff] [blame] | 30 | LOCAL_CFLAGS += -DHAVE_LIBKEYUTILS |
| 31 | LOCAL_SHARED_LIBRARIES += libkeyutils |
Ethan Yonker | e9afc3d | 2018-08-30 15:16:27 -0500 | [diff] [blame] | 32 | else |
| 33 | #8.0 rules |
| 34 | LOCAL_CFLAGS += -DUSE_KEYSTORAGE_3 |
| 35 | LOCAL_SRC_FILES += Ext4Crypt.cpp Keymaster3.cpp KeyStorage3.cpp |
| 36 | ifneq ($(wildcard hardware/interfaces/weaver/Android.bp),) |
| 37 | #only present in some 8.0 trees and should be in all 8.1 trees |
| 38 | LOCAL_CFLAGS += -DHAVE_SYNTH_PWD_SUPPORT |
| 39 | LOCAL_SRC_FILES += Weaver1.cpp |
| 40 | LOCAL_SHARED_LIBRARIES += android.hardware.weaver@1.0 |
| 41 | endif |
| 42 | ifneq ($(wildcard system/core/libkeyutils/Android.bp),) |
| 43 | #only present in some 8.0 trees and should be in all 8.1 trees |
| 44 | LOCAL_CFLAGS += -DHAVE_LIBKEYUTILS |
| 45 | LOCAL_SHARED_LIBRARIES += libkeyutils |
| 46 | endif |
Ethan Yonker | 31344a3 | 2017-11-29 12:13:41 -0600 | [diff] [blame] | 47 | endif |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 48 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0) |
| 49 | LOCAL_REQUIRED_MODULES := keystore_auth |
| 50 | else |
| 51 | LOCAL_ADDITIONAL_DEPENDENCIES := keystore_auth |
| 52 | endif |
Ethan Yonker | fefe591 | 2017-09-30 22:22:13 -0500 | [diff] [blame] | 53 | else |
Ethan Yonker | e9afc3d | 2018-08-30 15:16:27 -0500 | [diff] [blame] | 54 | #7.x rules |
| 55 | LOCAL_SRC_FILES += Ext4Crypt.cpp Keymaster.cpp KeyStorage.cpp |
Ethan Yonker | fefe591 | 2017-09-30 22:22:13 -0500 | [diff] [blame] | 56 | endif |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 57 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 28; echo $$?),0) |
| 58 | LOCAL_SHARED_LIBRARIES += libsoftkeymaster |
| 59 | endif |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 60 | |
| 61 | include $(BUILD_SHARED_LIBRARY) |
| 62 | |
| 63 | |
| 64 | |
| 65 | include $(CLEAR_VARS) |
| 66 | LOCAL_MODULE := twrpfbe |
| 67 | LOCAL_MODULE_TAGS := optional |
| 68 | LOCAL_MODULE_CLASS := RECOVERY_EXECUTABLES |
| 69 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin |
| 70 | LOCAL_SRC_FILES := main.cpp |
| 71 | LOCAL_SHARED_LIBRARIES := libe4crypt |
| 72 | #LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64 |
| 73 | |
| 74 | include $(BUILD_EXECUTABLE) |
| 75 | |
Ethan Yonker | 79f88bd | 2016-12-09 14:52:12 -0600 | [diff] [blame] | 76 | include $(CLEAR_VARS) |
| 77 | LOCAL_MODULE := e4policyget |
| 78 | LOCAL_MODULE_TAGS := optional |
| 79 | LOCAL_MODULE_CLASS := RECOVERY_EXECUTABLES |
| 80 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin |
| 81 | LOCAL_SRC_FILES := e4policyget.cpp |
| 82 | LOCAL_SHARED_LIBRARIES := libe4crypt |
| 83 | LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64 |
| 84 | |
| 85 | include $(BUILD_EXECUTABLE) |
| 86 | |
Ethan Yonker | e131bec | 2017-12-15 23:48:02 -0600 | [diff] [blame] | 87 | include $(CLEAR_VARS) |
| 88 | LOCAL_MODULE := keystore_auth |
| 89 | LOCAL_MODULE_TAGS := optional |
| 90 | LOCAL_MODULE_CLASS := RECOVERY_EXECUTABLES |
| 91 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin |
| 92 | LOCAL_SRC_FILES := keystore_auth.cpp |
| 93 | LOCAL_SHARED_LIBRARIES := libc libkeystore_binder libutils libbinder liblog |
Ethan Yonker | e9afc3d | 2018-08-30 15:16:27 -0500 | [diff] [blame] | 94 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0) |
| 95 | #9.0 |
| 96 | LOCAL_CFLAGS += -DUSE_SECURITY_NAMESPACE |
| 97 | LOCAL_SHARED_LIBRARIES += libkeystore_aidl |
| 98 | endif |
Ethan Yonker | e131bec | 2017-12-15 23:48:02 -0600 | [diff] [blame] | 99 | LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64 |
| 100 | |
| 101 | include $(BUILD_EXECUTABLE) |
| 102 | |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 103 | endif |