blob: c8283dd8977f4295d02fec1085f6870a727cec10 [file] [log] [blame]
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06001LOCAL_PATH := $(call my-dir)
2ifeq ($(TW_INCLUDE_CRYPTO), true)
3include $(CLEAR_VARS)
4
5LOCAL_MODULE := libe4crypt
bigbiffd58ba182020-03-23 10:02:29 -04006LOCAL_MODULE_TAGS := optional
Ethan Yonkerbd7492d2016-12-07 13:55:01 -06007LOCAL_CFLAGS :=
Ethan Yonkere9afc3d2018-08-30 15:16:27 -05008LOCAL_SRC_FILES := Decrypt.cpp ScryptParameters.cpp Utils.cpp HashPassword.cpp ext4_crypt.cpp
Ethan Yonker58f21322018-08-24 11:17:36 -05009LOCAL_SHARED_LIBRARIES := libselinux libc libc++ libext4_utils libbase libcrypto libcutils libkeymaster_messages libhardware libprotobuf-cpp-lite
Ethan Yonkerbd7492d2016-12-07 13:55:01 -060010LOCAL_STATIC_LIBRARIES := libscrypt_static
bigbiffd58ba182020-03-23 10:02:29 -040011LOCAL_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 Yonkerbd7492d2016-12-07 13:55:01 -060018
19ifneq ($(wildcard hardware/libhardware/include/hardware/keymaster0.h),)
20 LOCAL_CFLAGS += -DTW_CRYPTO_HAVE_KEYMASTERX
21 LOCAL_C_INCLUDES += external/boringssl/src/include
22endif
Ethan Yonkerfefe5912017-09-30 22:22:13 -050023ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 26; echo $$?),0)
Ethan Yonkere9afc3d2018-08-30 15:16:27 -050024 #8.0 or higher
25 LOCAL_CFLAGS += -DHAVE_GATEKEEPER1
bigbiffd58ba182020-03-23 10:02:29 -040026 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 29; echo $$?),0)
27 LOCAL_SHARED_LIBRARIES += android.hardware.confirmationui@1.0
28 # LOCAL_CFLAGS += -DUSE_
29 endif
Ethan Yonkere9afc3d2018-08-30 15:16:27 -050030 LOCAL_SHARED_LIBRARIES += android.hardware.keymaster@3.0 libkeystore_binder libhidlbase libutils libbinder android.hardware.gatekeeper@1.0
31 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
32 #9.0 rules
33 LOCAL_CFLAGS += -DUSE_KEYSTORAGE_4 -Wno-unused-variable -Wno-sign-compare -Wno-unused-parameter -Wno-comment
Ethan Yonker93382822018-11-01 15:25:31 -050034 LOCAL_SRC_FILES += Ext4CryptPie.cpp Keymaster4.cpp KeyStorage4.cpp KeyUtil.cpp MetadataCrypt.cpp KeyBuffer.cpp
Ethan Yonkere9afc3d2018-08-30 15:16:27 -050035 LOCAL_SHARED_LIBRARIES += android.hardware.keymaster@4.0 libkeymaster4support
36 LOCAL_SHARED_LIBRARIES += android.hardware.gatekeeper@1.0 libkeystore_parcelables libkeystore_aidl
Ethan Yonker31344a32017-11-29 12:13:41 -060037 LOCAL_CFLAGS += -DHAVE_SYNTH_PWD_SUPPORT
38 LOCAL_SRC_FILES += Weaver1.cpp
39 LOCAL_SHARED_LIBRARIES += android.hardware.weaver@1.0
Ethan Yonker31344a32017-11-29 12:13:41 -060040 LOCAL_CFLAGS += -DHAVE_LIBKEYUTILS
41 LOCAL_SHARED_LIBRARIES += libkeyutils
Ethan Yonkere9afc3d2018-08-30 15:16:27 -050042 else
43 #8.0 rules
44 LOCAL_CFLAGS += -DUSE_KEYSTORAGE_3
45 LOCAL_SRC_FILES += Ext4Crypt.cpp Keymaster3.cpp KeyStorage3.cpp
46 ifneq ($(wildcard hardware/interfaces/weaver/Android.bp),)
47 #only present in some 8.0 trees and should be in all 8.1 trees
48 LOCAL_CFLAGS += -DHAVE_SYNTH_PWD_SUPPORT
49 LOCAL_SRC_FILES += Weaver1.cpp
50 LOCAL_SHARED_LIBRARIES += android.hardware.weaver@1.0
51 endif
52 ifneq ($(wildcard system/core/libkeyutils/Android.bp),)
53 #only present in some 8.0 trees and should be in all 8.1 trees
54 LOCAL_CFLAGS += -DHAVE_LIBKEYUTILS
55 LOCAL_SHARED_LIBRARIES += libkeyutils
56 endif
Ethan Yonker31344a32017-11-29 12:13:41 -060057 endif
Ethan Yonkerabf1fb02019-04-24 16:09:07 -050058 ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
59 LOCAL_REQUIRED_MODULES := keystore_auth
60 else
61 LOCAL_ADDITIONAL_DEPENDENCIES := keystore_auth
62 endif
Ethan Yonkerfefe5912017-09-30 22:22:13 -050063else
Ethan Yonkere9afc3d2018-08-30 15:16:27 -050064 #7.x rules
65 LOCAL_SRC_FILES += Ext4Crypt.cpp Keymaster.cpp KeyStorage.cpp
Ethan Yonkerfefe5912017-09-30 22:22:13 -050066endif
Ethan Yonker58f21322018-08-24 11:17:36 -050067ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 28; echo $$?),0)
68 LOCAL_SHARED_LIBRARIES += libsoftkeymaster
69endif
Ethan Yonkerbd7492d2016-12-07 13:55:01 -060070
71include $(BUILD_SHARED_LIBRARY)
72
73
74
75include $(CLEAR_VARS)
76LOCAL_MODULE := twrpfbe
77LOCAL_MODULE_TAGS := optional
78LOCAL_MODULE_CLASS := RECOVERY_EXECUTABLES
79LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin
80LOCAL_SRC_FILES := main.cpp
81LOCAL_SHARED_LIBRARIES := libe4crypt
82#LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64
83
84include $(BUILD_EXECUTABLE)
85
Ethan Yonker79f88bd2016-12-09 14:52:12 -060086include $(CLEAR_VARS)
87LOCAL_MODULE := e4policyget
88LOCAL_MODULE_TAGS := optional
89LOCAL_MODULE_CLASS := RECOVERY_EXECUTABLES
90LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin
91LOCAL_SRC_FILES := e4policyget.cpp
92LOCAL_SHARED_LIBRARIES := libe4crypt
93LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64
94
95include $(BUILD_EXECUTABLE)
96
Ethan Yonkere131bec2017-12-15 23:48:02 -060097include $(CLEAR_VARS)
98LOCAL_MODULE := keystore_auth
99LOCAL_MODULE_TAGS := optional
100LOCAL_MODULE_CLASS := RECOVERY_EXECUTABLES
101LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin
102LOCAL_SRC_FILES := keystore_auth.cpp
103LOCAL_SHARED_LIBRARIES := libc libkeystore_binder libutils libbinder liblog
Ethan Yonkere9afc3d2018-08-30 15:16:27 -0500104ifeq ($(shell test $(PLATFORM_SDK_VERSION) -ge 28; echo $$?),0)
105 #9.0
106 LOCAL_CFLAGS += -DUSE_SECURITY_NAMESPACE
107 LOCAL_SHARED_LIBRARIES += libkeystore_aidl
108endif
Ethan Yonkere131bec2017-12-15 23:48:02 -0600109LOCAL_LDFLAGS += -Wl,-dynamic-linker,/sbin/linker64
110
111include $(BUILD_EXECUTABLE)
112
Ethan Yonkerbd7492d2016-12-07 13:55:01 -0600113endif