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 |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 6 | LOCAL_MODULE_TAGS := optional |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 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 |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 11 | LOCAL_C_INCLUDES := system/extras/ext4_utils \ |
| 12 | system/extras/ext4_utils/include/ext4_utils \ |
| 13 | external/scrypt/lib/crypto \ |
| 14 | system/security/keystore/include \ |
| 15 | hardware/libhardware/include/hardware \ |
| 16 | system/security/softkeymaster/include/keymaster \ |
| 17 | system/keymaster/include |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 18 | |
| 19 | ifneq ($(wildcard hardware/libhardware/include/hardware/keymaster0.h),) |
| 20 | LOCAL_CFLAGS += -DTW_CRYPTO_HAVE_KEYMASTERX |
| 21 | LOCAL_C_INCLUDES += external/boringssl/src/include |
| 22 | endif |
Ethan Yonker | fefe591 | 2017-09-30 22:22:13 -0500 | [diff] [blame] | 23 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0) |
Ethan Yonker | e9afc3d | 2018-08-30 15:16:27 -0500 | [diff] [blame] | 24 | #8.0 or higher |
| 25 | LOCAL_CFLAGS += -DHAVE_GATEKEEPER1 |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 26 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 29; echo $$?),0) |
| 27 | LOCAL_SHARED_LIBRARIES += android.hardware.confirmationui@1.0 |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 28 | endif |
Ethan Yonker | e9afc3d | 2018-08-30 15:16:27 -0500 | [diff] [blame] | 29 | LOCAL_SHARED_LIBRARIES += android.hardware.keymaster@3.0 libkeystore_binder libhidlbase libutils libbinder android.hardware.gatekeeper@1.0 |
| 30 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0) |
| 31 | #9.0 rules |
| 32 | 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] | 33 | 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] | 34 | LOCAL_SHARED_LIBRARIES += android.hardware.keymaster@4.0 libkeymaster4support |
| 35 | LOCAL_SHARED_LIBRARIES += android.hardware.gatekeeper@1.0 libkeystore_parcelables libkeystore_aidl |
Ethan Yonker | 31344a3 | 2017-11-29 12:13:41 -0600 | [diff] [blame] | 36 | LOCAL_CFLAGS += -DHAVE_SYNTH_PWD_SUPPORT |
| 37 | LOCAL_SRC_FILES += Weaver1.cpp |
| 38 | LOCAL_SHARED_LIBRARIES += android.hardware.weaver@1.0 |
Ethan Yonker | 31344a3 | 2017-11-29 12:13:41 -0600 | [diff] [blame] | 39 | LOCAL_CFLAGS += -DHAVE_LIBKEYUTILS |
| 40 | LOCAL_SHARED_LIBRARIES += libkeyutils |
Ethan Yonker | e9afc3d | 2018-08-30 15:16:27 -0500 | [diff] [blame] | 41 | else |
| 42 | #8.0 rules |
| 43 | LOCAL_CFLAGS += -DUSE_KEYSTORAGE_3 |
| 44 | LOCAL_SRC_FILES += Ext4Crypt.cpp Keymaster3.cpp KeyStorage3.cpp |
| 45 | ifneq ($(wildcard hardware/interfaces/weaver/Android.bp),) |
| 46 | #only present in some 8.0 trees and should be in all 8.1 trees |
| 47 | LOCAL_CFLAGS += -DHAVE_SYNTH_PWD_SUPPORT |
| 48 | LOCAL_SRC_FILES += Weaver1.cpp |
| 49 | LOCAL_SHARED_LIBRARIES += android.hardware.weaver@1.0 |
| 50 | endif |
| 51 | ifneq ($(wildcard system/core/libkeyutils/Android.bp),) |
| 52 | #only present in some 8.0 trees and should be in all 8.1 trees |
| 53 | LOCAL_CFLAGS += -DHAVE_LIBKEYUTILS |
| 54 | LOCAL_SHARED_LIBRARIES += libkeyutils |
| 55 | endif |
Ethan Yonker | 31344a3 | 2017-11-29 12:13:41 -0600 | [diff] [blame] | 56 | endif |
Ethan Yonker | abf1fb0 | 2019-04-24 16:09:07 -0500 | [diff] [blame] | 57 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0) |
| 58 | LOCAL_REQUIRED_MODULES := keystore_auth |
| 59 | else |
| 60 | LOCAL_ADDITIONAL_DEPENDENCIES := keystore_auth |
| 61 | endif |
Ethan Yonker | fefe591 | 2017-09-30 22:22:13 -0500 | [diff] [blame] | 62 | else |
Ethan Yonker | e9afc3d | 2018-08-30 15:16:27 -0500 | [diff] [blame] | 63 | #7.x rules |
| 64 | LOCAL_SRC_FILES += Ext4Crypt.cpp Keymaster.cpp KeyStorage.cpp |
Ethan Yonker | fefe591 | 2017-09-30 22:22:13 -0500 | [diff] [blame] | 65 | endif |
Ethan Yonker | 58f2132 | 2018-08-24 11:17:36 -0500 | [diff] [blame] | 66 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 28; echo $$?),0) |
| 67 | LOCAL_SHARED_LIBRARIES += libsoftkeymaster |
| 68 | endif |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 69 | |
| 70 | include $(BUILD_SHARED_LIBRARY) |
| 71 | |
| 72 | |
| 73 | |
| 74 | include $(CLEAR_VARS) |
| 75 | LOCAL_MODULE := twrpfbe |
| 76 | LOCAL_MODULE_TAGS := optional |
| 77 | LOCAL_MODULE_CLASS := RECOVERY_EXECUTABLES |
| 78 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin |
| 79 | LOCAL_SRC_FILES := main.cpp |
| 80 | LOCAL_SHARED_LIBRARIES := libe4crypt |
| 81 | #LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64 |
| 82 | |
| 83 | include $(BUILD_EXECUTABLE) |
| 84 | |
Ethan Yonker | 79f88bd | 2016-12-09 14:52:12 -0600 | [diff] [blame] | 85 | include $(CLEAR_VARS) |
| 86 | LOCAL_MODULE := e4policyget |
| 87 | LOCAL_MODULE_TAGS := optional |
| 88 | LOCAL_MODULE_CLASS := RECOVERY_EXECUTABLES |
| 89 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin |
| 90 | LOCAL_SRC_FILES := e4policyget.cpp |
| 91 | LOCAL_SHARED_LIBRARIES := libe4crypt |
| 92 | LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64 |
| 93 | |
| 94 | include $(BUILD_EXECUTABLE) |
| 95 | |
Ethan Yonker | e131bec | 2017-12-15 23:48:02 -0600 | [diff] [blame] | 96 | include $(CLEAR_VARS) |
| 97 | LOCAL_MODULE := keystore_auth |
| 98 | LOCAL_MODULE_TAGS := optional |
| 99 | LOCAL_MODULE_CLASS := RECOVERY_EXECUTABLES |
| 100 | LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin |
| 101 | LOCAL_SRC_FILES := keystore_auth.cpp |
| 102 | LOCAL_SHARED_LIBRARIES := libc libkeystore_binder libutils libbinder liblog |
Ethan Yonker | e9afc3d | 2018-08-30 15:16:27 -0500 | [diff] [blame] | 103 | ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0) |
| 104 | #9.0 |
| 105 | LOCAL_CFLAGS += -DUSE_SECURITY_NAMESPACE |
| 106 | LOCAL_SHARED_LIBRARIES += libkeystore_aidl |
| 107 | endif |
Ethan Yonker | e131bec | 2017-12-15 23:48:02 -0600 | [diff] [blame] | 108 | LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64 |
| 109 | |
| 110 | include $(BUILD_EXECUTABLE) |
| 111 | |
Ethan Yonker | bd7492d | 2016-12-07 13:55:01 -0600 | [diff] [blame] | 112 | endif |