blob: 6f08a9d595c07bcce9db863fb483dccfb4c35895 [file] [log] [blame]
# Copyright (C) 2014-2015 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.
#
LOCAL_DIR := $(GET_LOCAL_DIR)
NANOPB_DIR := external/nanopb-c
MODULE := $(LOCAL_DIR)
MANIFEST := $(LOCAL_DIR)/manifest.json
KEYMASTER_ROOT := $(TRUSTY_TOP)/system/keymaster
# Uncomment the following lines to generate protobuf files and remove
# $(KEYMASTER_DIR)/keymaster_attributes.pb.c from MODULE_SRCS. For detail
# explanation, please see the comments in *.proto file.
#
# PB_GEN_DIR := $(call TOBUILDDIR,proto)
# include trusty/user/base/make/compile_proto.mk
# $(eval $(call compile_proto,$(KEYMASTER_DIR)/keymaster_attributes.proto,$(PB_GEN_DIR)))
# MODULE_SRCS += $(NANOPB_DEPS) $(NANOPB_GENERATED_C)
# MODULE_SRCDEPS += $(NANOPB_GENERATED_HEADER)
# MODULE_INCLOUDES += $(PB_GEN_DIR)
MODULE_SRCS += \
$(KEYMASTER_ROOT)/android_keymaster/android_keymaster.cpp \
$(KEYMASTER_ROOT)/android_keymaster/android_keymaster_messages.cpp \
$(KEYMASTER_ROOT)/android_keymaster/android_keymaster_utils.cpp \
$(KEYMASTER_ROOT)/android_keymaster/keymaster_enforcement.cpp \
$(KEYMASTER_ROOT)/android_keymaster/logger.cpp \
$(KEYMASTER_ROOT)/android_keymaster/authorization_set.cpp \
$(KEYMASTER_ROOT)/android_keymaster/operation.cpp \
$(KEYMASTER_ROOT)/android_keymaster/operation_table.cpp \
$(KEYMASTER_ROOT)/android_keymaster/serializable.cpp \
$(KEYMASTER_ROOT)/android_keymaster/keymaster_stl.cpp \
$(KEYMASTER_ROOT)/android_keymaster/keymaster_tags.cpp \
$(KEYMASTER_ROOT)/key_blob_utils/auth_encrypted_key_blob.cpp \
$(KEYMASTER_ROOT)/key_blob_utils/ocb.c \
$(KEYMASTER_ROOT)/key_blob_utils/ocb_utils.cpp \
$(KEYMASTER_ROOT)/km_openssl/aes_key.cpp \
$(KEYMASTER_ROOT)/km_openssl/aes_operation.cpp \
$(KEYMASTER_ROOT)/km_openssl/asymmetric_key.cpp \
$(KEYMASTER_ROOT)/km_openssl/asymmetric_key_factory.cpp \
$(KEYMASTER_ROOT)/km_openssl/attestation_record.cpp \
$(KEYMASTER_ROOT)/km_openssl/attestation_utils.cpp \
$(KEYMASTER_ROOT)/km_openssl/block_cipher_operation.cpp \
$(KEYMASTER_ROOT)/km_openssl/ckdf.cpp \
$(KEYMASTER_ROOT)/km_openssl/ec_key.cpp \
$(KEYMASTER_ROOT)/km_openssl/ec_key_factory.cpp \
$(KEYMASTER_ROOT)/km_openssl/ecdsa_operation.cpp \
$(KEYMASTER_ROOT)/km_openssl/hmac_key.cpp \
$(KEYMASTER_ROOT)/km_openssl/hmac_operation.cpp \
$(KEYMASTER_ROOT)/km_openssl/openssl_err.cpp \
$(KEYMASTER_ROOT)/km_openssl/openssl_utils.cpp \
$(KEYMASTER_ROOT)/km_openssl/rsa_key.cpp \
$(KEYMASTER_ROOT)/km_openssl/rsa_key_factory.cpp \
$(KEYMASTER_ROOT)/km_openssl/rsa_operation.cpp \
$(KEYMASTER_ROOT)/km_openssl/software_random_source.cpp \
$(KEYMASTER_ROOT)/km_openssl/symmetric_key.cpp \
$(KEYMASTER_ROOT)/km_openssl/triple_des_key.cpp \
$(KEYMASTER_ROOT)/km_openssl/triple_des_operation.cpp \
$(KEYMASTER_ROOT)/km_openssl/wrapped_key.cpp \
$(KEYMASTER_ROOT)/contexts/soft_attestation_cert.cpp \
$(LOCAL_DIR)/openssl_keymaster_enforcement.cpp \
$(LOCAL_DIR)/trusty_keymaster.cpp \
$(LOCAL_DIR)/trusty_keymaster_context.cpp \
$(LOCAL_DIR)/trusty_keymaster_enforcement.cpp \
$(LOCAL_DIR)/secure_storage_manager.cpp \
$(LOCAL_DIR)/keymaster_attributes.pb.c \
$(NANOPB_DIR)/pb_common.c \
$(NANOPB_DIR)/pb_encode.c \
$(NANOPB_DIR)/pb_decode.c \
MODULE_INCLUDES += \
$(KEYMASTER_ROOT)/include \
$(KEYMASTER_ROOT)/contexts \
$(KEYMASTER_ROOT) \
$(TRUSTY_TOP)/hardware/libhardware/include \
$(LOCAL_DIR) \
$(NANOPB_DIR) \
MODULE_CPPFLAGS := -std=c++14 -fno-short-enums
MODULE_COMPILEFLAGS := -U__ANDROID__ -D__TRUSTY__
#
# Defining KEYMASTER_DEBUG will allow configure() to succeed without root of
# trust from bootloader.
#
ifeq (true,$(call TOBOOL,$(KEYMASTER_DEBUG)))
MODULE_COMPILEFLAGS += -DKEYMASTER_DEBUG
endif
# Add support for nanopb tag numbers > 255 and fields larger than 255 bytes or
# 255 array entries.
MODULE_COMPILEFLAGS += -DPB_FIELD_16BIT
# STATIC_ASSERT in pb.h might conflict with STATIC_ASSEET in compiler.h
MODULE_COMPILEFLAGS += -DPB_NO_STATIC_ASSERT
ifdef TRUSTY_KM_WRAPPING_KEY_SIZE
MODULE_COMPILEFLAGS += -DTRUSTY_KM_WRAPPING_KEY_SIZE=$(TRUSTY_KM_WRAPPING_KEY_SIZE)
endif
MODULE_DEPS += \
trusty/user/base/lib/libc-trusty \
trusty/user/base/lib/libstdc++-trusty \
trusty/user/base/lib/rng \
trusty/user/base/lib/hwkey \
trusty/user/base/lib/storage \
trusty/user/base/lib/system_state \
external/boringssl \
include $(LOCAL_DIR)/atap/rules.mk
include $(LOCAL_DIR)/ipc/rules.mk
include make/module.mk
# Include unit tests
include trusty/user/app/keymaster/host_unittest/rules.mk