blob: 73520a47bdd6eb336a2dc6b4e0d88ad1d731eb37 [file] [log] [blame]
Randall Spanglere8cfa312013-01-02 16:49:38 -08001# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
Gaurav Shah322536d2010-01-28 15:01:23 -08002# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
Simon Glass6d696e52011-11-14 13:46:33 -08005# This Makefile normally builds in a 'build' subdir, but use
6#
7# make BUILD=<dir>
8#
Bill Richardsoneecc18f2013-01-17 15:28:17 -08009# to put the output somewhere else.
10
11##############################################################################
12# Make variables come in two flavors, immediate or deferred.
13#
14# Variable definitions are parsed like this:
15#
16# IMMEDIATE = DEFERRED
17# or
18# IMMEDIATE := IMMEDIATE
19#
20# Rules are parsed this way:
21#
22# IMMEDIATE : IMMEDIATE
23# DEFERRED
24#
25# So you can assign variables in any order if they're only to be used in
26# actions, but if you use a variable in either the target or prerequisite of a
27# rule, the rule will be constructed using only the top-down, immediate value.
28#
29# So we'll try to define all the variables first. Then the rules.
30#
31
32##############################################################################
33# Configuration variables come first.
34#
35# Our convention is that we only use := for variables that will never be
36# changed or appended. They must be defined before being used anywhere.
37
Bill Richardsonc9bf3482013-02-13 14:38:29 -080038# We should only run pwd once, not every time we refer to ${BUILD}.
Randall Spanglere061a252013-01-22 15:34:07 -080039SRCDIR := $(shell pwd)
40BUILD ?= $(SRCDIR)/build
Randall Spangler844bce52013-01-15 16:16:43 -080041export BUILD
Simon Glass6d696e52011-11-14 13:46:33 -080042
Bill Richardsonc9bf3482013-02-13 14:38:29 -080043# Stuff for 'make install'
Bill Richardson826db092013-01-14 12:37:15 -080044INSTALL ?= install
Bill Richardsonc9bf3482013-02-13 14:38:29 -080045DESTDIR ?= /usr/local/bin
46
47ifeq (${MINIMAL},)
48# Host install just puts everything in one place
49UB_DIR=${DESTDIR}
50SB_DIR=${DESTDIR}
51VB_DIR=${DESTDIR}
52else
53# Target install puts things into DESTDIR subdirectories
54UB_DIR=${DESTDIR}/usr/bin
55SB_DIR=${DESTDIR}/sbin
56VB_DIR=${DESTDIR}/usr/share/vboot/bin
57endif
Randall Spangler5d9bbf22013-01-08 10:44:23 -080058
Bill Richardsoneecc18f2013-01-17 15:28:17 -080059# Where to install the (exportable) executables for testing?
60TEST_INSTALL_DIR = ${BUILD}/install_for_test
61
62# Verbose? Use V=1
63ifeq (${V},)
64Q := @
65endif
66
Randall Spangler61a2eb32013-01-23 10:20:16 -080067# Architecture detection
68_machname := $(shell uname -m)
69HOST_ARCH ?= ${_machname}
70
71# ARCH and/or FIRMWARE_ARCH are defined by the Chromium OS ebuild.
72# Pick a sane target architecture if none is defined.
73ifeq (${ARCH},)
74 ARCH := ${HOST_ARCH}
75else ifeq (${ARCH},i386)
76 override ARCH := x86
77else ifeq (${ARCH},amd64)
78 override ARCH := x86_64
79endif
80
81# FIRMWARE_ARCH is only defined by the Chromium OS ebuild if compiling
82# for a firmware target (such as u-boot or depthcharge). It must map
83# to the same consistent set of architectures as the host.
84ifeq (${FIRMWARE_ARCH},i386)
85 override FIRMWARE_ARCH := x86
86else ifeq (${FIRMWARE_ARCH},amd64)
87 override FIRMWARE_ARCH := x86_64
88endif
89
Simon Glassb265c342011-11-16 15:09:51 -080090# Provide default CC and CFLAGS for firmware builds; if you have any -D flags,
91# please add them after this point (e.g., -DVBOOT_DEBUG).
Che-Liang Chiou74359b72011-06-21 15:25:51 -070092#
Che-Liang Chiou6b0003c2011-10-14 11:11:28 +080093# TODO(crosbug.com/16808) We hard-code u-boot's compiler flags here just
94# temporarily. As we are still investigating which flags are necessary for
95# maintaining a compatible ABI, etc. between u-boot and vboot_reference.
Che-Liang Chiou74359b72011-06-21 15:25:51 -070096#
Simon Glassb265c342011-11-16 15:09:51 -080097# As a first step, this makes the setting of CC and CFLAGS here optional, to
98# permit a calling script or Makefile to set these.
Che-Liang Chiou74359b72011-06-21 15:25:51 -070099#
Simon Glassb265c342011-11-16 15:09:51 -0800100# Flag ordering: arch, then -f, then -m, then -W
101DEBUG_FLAGS := $(if ${DEBUG},-g -O0,-Os)
102COMMON_FLAGS := -nostdinc -pipe \
103 -ffreestanding -fno-builtin -fno-stack-protector \
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800104 -Werror -Wall -Wstrict-prototypes ${DEBUG_FLAGS}
Simon Glassb265c342011-11-16 15:09:51 -0800105
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800106# Note: FIRMWARE_ARCH is defined by the Chromium OS ebuild.
107ifeq (${FIRMWARE_ARCH}, arm)
Simon Glassb265c342011-11-16 15:09:51 -0800108CC ?= armv7a-cros-linux-gnueabi-gcc
109CFLAGS ?= -march=armv5 \
110 -fno-common -ffixed-r8 \
Doug Andersond50b27d2012-05-11 12:08:02 -0700111 -mfloat-abi=hard -marm -mabi=aapcs-linux -mno-thumb-interwork \
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800112 ${COMMON_FLAGS}
Randall Spangler61a2eb32013-01-23 10:20:16 -0800113else ifeq (${FIRMWARE_ARCH}, x86)
Simon Glassb265c342011-11-16 15:09:51 -0800114CC ?= i686-pc-linux-gnu-gcc
115# Drop -march=i386 to permit use of SSE instructions
116CFLAGS ?= \
117 -ffunction-sections -fvisibility=hidden -fno-strict-aliasing \
118 -fomit-frame-pointer -fno-toplevel-reorder -fno-dwarf2-cfi-asm \
119 -mpreferred-stack-boundary=2 -mregparm=3 \
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800120 ${COMMON_FLAGS}
121else ifeq (${FIRMWARE_ARCH}, x86_64)
122CFLAGS ?= ${COMMON_FLAGS} \
Simon Glass8e85e982011-11-22 13:54:50 -0800123 -fvisibility=hidden -fno-strict-aliasing -fomit-frame-pointer
Randall Spangler844bce52013-01-15 16:16:43 -0800124else
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800125# FIRMWARE_ARCH not defined; assuming local compile.
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800126CC ?= gcc
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800127CFLAGS += -DCHROMEOS_ENVIRONMENT -Wall -Werror # HEY: always want last two?
Che-Liang Chiou34be8272011-01-27 16:44:36 +0800128endif
129
130ifneq (${DEBUG},)
131CFLAGS += -DVBOOT_DEBUG
vbendebb2b0fcc2010-07-15 15:09:47 -0700132endif
Che-Liang Chiou0a0e8d02010-11-30 09:30:45 +0800133
vbendebb2b0fcc2010-07-15 15:09:47 -0700134ifeq (${DISABLE_NDEBUG},)
135CFLAGS += -DNDEBUG
136endif
137
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800138# Create / use dependency files
139CFLAGS += -MMD -MF $@.d
Simon Glassb265c342011-11-16 15:09:51 -0800140
Randall Spangler59d75082013-01-23 09:29:54 -0800141# Code coverage
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800142ifneq (${COV},)
Randall Spangler59d75082013-01-23 09:29:54 -0800143 COV_FLAGS = -O0 --coverage
144 CFLAGS += ${COV_FLAGS}
145 LDFLAGS += ${COV_FLAGS}
146 COV_INFO = ${BUILD}/coverage.info
Che-Liang Chiou0a0e8d02010-11-30 09:30:45 +0800147endif
Gaurav Shah322536d2010-01-28 15:01:23 -0800148
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800149# And a few more default utilities
150LD = ${CC}
151CXX ?= g++ # HEY: really?
152PKG_CONFIG ?= pkg-config
153
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800154# Determine QEMU architecture needed, if any
155ifeq (${ARCH},${HOST_ARCH})
156 # Same architecture; no need for QEMU
157 QEMU_ARCH :=
Randall Spangler61a2eb32013-01-23 10:20:16 -0800158else ifeq (${HOST_ARCH}-${ARCH},x86_64-x86)
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800159 # 64-bit host can run 32-bit targets directly
160 QEMU_ARCH :=
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800161else
162 QEMU_ARCH := ${ARCH}
163endif
164
165# The top of the chroot for qemu must be passed in via the SYSROOT environment
166# variable. In the Chromium OS chroot, this is done automatically by the
167# ebuild.
168
169ifeq (${QEMU_ARCH},)
170 # Path to build output for running tests is same as for building
171 BUILD_RUN = ${BUILD}
Randall Spanglere061a252013-01-22 15:34:07 -0800172 SRC_RUN = ${SRCDIR}
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800173else
174 $(info Using qemu for testing.)
175 # Path to build output for running tests is different in the chroot
176 BUILD_RUN = $(subst ${SYSROOT},,${BUILD})
Randall Spanglere061a252013-01-22 15:34:07 -0800177 SRC_RUN = $(subst ${SYSROOT},,${SRCDIR})
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800178
179 QEMU_BIN = qemu-${QEMU_ARCH}
Randall Spanglere061a252013-01-22 15:34:07 -0800180 QEMU_RUN = ${BUILD_RUN}/${QEMU_BIN}
181 export QEMU_RUN
182
183 RUNTEST = tests/test_using_qemu.sh
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800184endif
185
Randall Spanglere061a252013-01-22 15:34:07 -0800186export BUILD_RUN
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800187
188# Some things only compile inside the Chromium OS chroot.
189# TODO: Those things should be in their own repo, not part of vboot_reference
190# TODO: Is there a better way to detect this?
191ifneq (${CROS_WORKON_SRCROOT},)
192IN_CHROOT := yes
193endif
194
195# TODO: Move to separate repo.
196ifneq (${IN_CHROOT},)
Bill Richardson2f8ac152013-02-26 10:57:13 -0800197PC_BASE_VER ?= 180609
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800198PC_DEPS := libchrome-${PC_BASE_VER}
199PC_CFLAGS := $(shell ${PKG_CONFIG} --cflags ${PC_DEPS})
200PC_LDLIBS := $(shell ${PKG_CONFIG} --libs ${PC_DEPS})
201endif
202
203
204##############################################################################
205# Now we need to describe everything we might want or need to build
206
207# TODO: This should go in its own repo.
208AU_CGPTLIB = ${BUILD}/cgpt/libcgpt-cc.a
209# This is just ... Gah. There's no good place for it.
210DUMPKERNELCONFIGLIB = ${BUILD}/libdump_kernel_config.a
211
212# Everything wants these headers.
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800213INCLUDES += \
214 -Ifirmware/include \
215 -Ifirmware/lib/include \
216 -Ifirmware/lib/cgptlib/include \
217 -Ifirmware/lib/cryptolib/include \
218 -Ifirmware/lib/tpm_lite/include
Bill Richardson0b8f35c2010-05-26 09:18:38 -0700219
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800220# If we're not building for a specific target, just stub out things like the
221# TPM commands and various external functions that are provided by the BIOS.
222ifeq (${FIRMWARE_ARCH},)
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800223INCLUDES += -Ifirmware/stub/include
Che-Liang Chiou0a0e8d02010-11-30 09:30:45 +0800224else
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800225INCLUDES += -Ifirmware/arch/${FIRMWARE_ARCH}/include
Che-Liang Chiou0a0e8d02010-11-30 09:30:45 +0800226endif
Gaurav Shah322536d2010-01-28 15:01:23 -0800227
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800228# Firmware library. TODO: Do we still need to export this?
229FWLIB = ${BUILD}/vboot_fw.a
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800230
Randall Spangler93943262013-02-26 11:03:57 -0800231# Firmware library sources needed by VbInit() call
232VBINIT_SRCS = \
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800233 firmware/lib/crc8.c \
Randall Spangler93943262013-02-26 11:03:57 -0800234 firmware/lib/utility.c \
235 firmware/lib/vboot_api_init.c \
236 firmware/lib/vboot_common_init.c \
237 firmware/lib/vboot_nvstorage.c \
238
239# Additional firmware library sources needed by VbSelectFirmware() call
240VBSF_SRCS = \
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800241 firmware/lib/cryptolib/padding.c \
242 firmware/lib/cryptolib/rsa.c \
243 firmware/lib/cryptolib/rsa_utility.c \
244 firmware/lib/cryptolib/sha1.c \
245 firmware/lib/cryptolib/sha256.c \
246 firmware/lib/cryptolib/sha512.c \
247 firmware/lib/cryptolib/sha_utility.c \
248 firmware/lib/stateful_util.c \
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800249 firmware/lib/vboot_api_firmware.c \
Randall Spangler93943262013-02-26 11:03:57 -0800250 firmware/lib/vboot_common.c \
251 firmware/lib/vboot_firmware.c
252
253# Additional firmware library sources needed by VbSelectAndLoadKernel() call
254VBSLK_SRCS = \
255 firmware/lib/cgptlib/cgptlib.c \
256 firmware/lib/cgptlib/cgptlib_internal.c \
257 firmware/lib/cgptlib/crc32.c \
258 firmware/lib/utility_string.c \
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800259 firmware/lib/vboot_api_kernel.c \
260 firmware/lib/vboot_audio.c \
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800261 firmware/lib/vboot_display.c \
Randall Spangler93943262013-02-26 11:03:57 -0800262 firmware/lib/vboot_kernel.c
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800263
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800264# Support real TPM unless BIOS sets MOCK_TPM
265ifeq (${MOCK_TPM},)
Randall Spangler93943262013-02-26 11:03:57 -0800266VBINIT_SRCS += \
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800267 firmware/lib/rollback_index.c \
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800268 firmware/lib/tpm_lite/tlcl.c
Randall Spangler93943262013-02-26 11:03:57 -0800269
270VBSF_SRCS += \
271 firmware/lib/tpm_bootmode.c
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800272else
Randall Spangler93943262013-02-26 11:03:57 -0800273VBINIT_SRCS += \
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800274 firmware/lib/mocked_rollback_index.c \
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800275 firmware/lib/tpm_lite/mocked_tlcl.c
Randall Spangler93943262013-02-26 11:03:57 -0800276
277VBSF_SRCS += \
278 firmware/lib/mocked_tpm_bootmode.c
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800279endif
280
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800281ifeq (${FIRMWARE_ARCH},)
282# Include BIOS stubs in the firmware library when compiling for host
Randall Spangler93943262013-02-26 11:03:57 -0800283# TODO: split out other stub funcs too
284VBINIT_SRCS += \
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800285 firmware/stub/tpm_lite_stub.c \
286 firmware/stub/utility_stub.c \
Randall Spangler93943262013-02-26 11:03:57 -0800287 firmware/stub/vboot_api_stub_init.c
288
289VBSF_SRCS += \
290 firmware/stub/vboot_api_stub_sf.c
291
292VBSLK_SRCS += \
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800293 firmware/stub/vboot_api_stub.c \
294 firmware/stub/vboot_api_stub_disk.c
295endif
296
Randall Spangler93943262013-02-26 11:03:57 -0800297VBSF_SRCS += ${VBINIT_SRCS}
298FWLIB_SRCS += ${VBSF_SRCS} ${VBSLK_SRCS}
299
300VBINIT_OBJS = ${VBINIT_SRCS:%.c=${BUILD}/%.o}
301VBSF_OBJS = ${VBSF_SRCS:%.c=${BUILD}/%.o}
302
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800303FWLIB_OBJS = ${FWLIB_SRCS:%.c=${BUILD}/%.o}
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800304ALL_OBJS += ${FWLIB_OBJS}
305
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800306
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800307# Library to build the utilities. "HOST" mostly means "userspace".
Bill Richardsonc7c6e5d2013-02-28 10:10:29 -0800308HOSTLIB = ${BUILD}/libvboot_host.a
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800309
310HOSTLIB_SRCS = \
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800311 host/arch/${ARCH}/lib/crossystem_arch.c \
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800312 host/lib/crossystem.c \
313 host/lib/file_keys.c \
314 host/lib/fmap.c \
315 host/lib/host_common.c \
316 host/lib/host_key.c \
317 host/lib/host_keyblock.c \
318 host/lib/host_misc.c \
319 host/lib/host_signature.c \
320 host/lib/signature_digest.c
321
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800322HOSTLIB_OBJS = ${HOSTLIB_SRCS:%.c=${BUILD}/%.o}
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800323ALL_OBJS += ${HOSTLIB_OBJS}
324
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800325# Link with hostlib by default
326LIBS = $(HOSTLIB)
327
328# Might need this too.
329CRYPTO_LIBS := $(shell ${PKG_CONFIG} --libs libcrypto)
330
331
332# ----------------------------------------------------------------------------
333# Now for the userspace binaries
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800334
335CGPT = ${BUILD}/cgpt/cgpt
336
337CGPT_SRCS = \
338 cgpt/cgpt.c \
339 cgpt/cgpt_add.c \
340 cgpt/cgpt_boot.c \
341 cgpt/cgpt_common.c \
342 cgpt/cgpt_create.c \
343 cgpt/cgpt_find.c \
344 cgpt/cgpt_legacy.c \
345 cgpt/cgpt_prioritize.c \
346 cgpt/cgpt_repair.c \
347 cgpt/cgpt_show.c \
348 cgpt/cmd_add.c \
349 cgpt/cmd_boot.c \
350 cgpt/cmd_create.c \
351 cgpt/cmd_find.c \
352 cgpt/cmd_legacy.c \
353 cgpt/cmd_prioritize.c \
354 cgpt/cmd_repair.c \
355 cgpt/cmd_show.c
356
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800357CGPT_OBJS = ${CGPT_SRCS:%.c=${BUILD}/%.o}
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800358ALL_OBJS += ${CGPT_OBJS}
359
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800360
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800361# Scripts to install directly (not compiled)
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800362UTIL_SCRIPTS = \
363 utility/dev_debug_vboot \
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800364 utility/enable_dev_usb_boot \
365 utility/vbutil_what_keys
366
Bill Richardsonc9bf3482013-02-13 14:38:29 -0800367ifeq (${MINIMAL},)
368UTIL_SCRIPTS += \
369 utility/dev_make_keypair
370endif
371
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800372# These utilities should be linked statically.
373UTIL_NAMES_STATIC = \
374 crossystem \
375 dump_fmap \
376 gbb_utility
377
378UTIL_NAMES = ${UTIL_NAMES_STATIC} \
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800379 dev_sign_file \
380 dump_kernel_config \
381 dumpRSAPublicKey \
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800382 tpm_init_temp_fix \
383 tpmc \
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800384 vbutil_firmware \
385 vbutil_kernel \
386 vbutil_key \
387 vbutil_keyblock \
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800388
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800389ifeq (${MINIMAL},)
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800390UTIL_NAMES += \
391 bmpblk_font \
392 bmpblk_utility \
393 eficompress \
Bill Richardsonc9bf3482013-02-13 14:38:29 -0800394 efidecompress \
395 load_kernel_test \
396 pad_digest_utility \
397 signature_digest_utility \
398 verify_data
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800399endif
400
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800401UTIL_BINS_STATIC := $(addprefix ${BUILD}/utility/,${UTIL_NAMES_STATIC})
402UTIL_BINS = $(addprefix ${BUILD}/utility/,${UTIL_NAMES})
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800403ALL_DEPS += $(addsuffix .d,${UTIL_BINS})
404
Bill Richardsonc9bf3482013-02-13 14:38:29 -0800405
406# Scripts for signing stuff.
407SIGNING_SCRIPTS = \
408 utility/tpm-nvsize \
409 utility/chromeos-tpm-recovery
410
411# These go in a different place.
412SIGNING_SCRIPTS_DEV = \
413 scripts/image_signing/resign_firmwarefd.sh \
414 scripts/image_signing/make_dev_firmware.sh \
415 scripts/image_signing/make_dev_ssd.sh \
416 scripts/image_signing/set_gbb_flags.sh
417
418# Installed, but not made executable.
419SIGNING_COMMON = scripts/image_signing/common_minimal.sh
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800420
Bill Richardson826db092013-01-14 12:37:15 -0800421
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800422# The unified firmware utility will eventually replace all the others
423FUTIL_BIN = ${BUILD}/futility/futility
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800424
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800425FUTIL_SRCS = \
426 futility/IGNOREME.c
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800427
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800428FUTIL_LDS = futility/futility.lds
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800429
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800430FUTIL_OBJS = ${FUTIL_SRCS:%.c=${BUILD}/%.o}
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800431
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800432ALL_DEPS += $(addsuffix .d,${FUTIL_BIN})
433ALL_OBJS += ${FUTIL_OBJS}
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800434
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800435
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800436# Library of handy test functions.
437TESTLIB = ${BUILD}/tests/test.a
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800438
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800439TESTLIB_SRCS = \
440 tests/test_common.c \
441 tests/timer_utils.c \
442 tests/crc32_test.c
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800443
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800444TESTLIB_OBJS = ${TESTLIB_SRCS:%.c=${BUILD}/%.o}
445ALL_OBJS += ${TESTLIB_OBJS}
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800446
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800447
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800448# And some compiled tests.
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800449TEST_NAMES = \
450 cgptlib_test \
451 rollback_index2_tests \
Randall Spanglera3eac792013-01-23 13:04:05 -0800452 rollback_index3_tests \
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800453 rsa_padding_test \
454 rsa_utility_tests \
455 rsa_verify_benchmark \
456 sha_benchmark \
457 sha_tests \
458 stateful_util_tests \
Randall Spanglerc3d488d2013-01-28 16:23:48 -0800459 tlcl_tests \
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800460 tpm_bootmode_tests \
461 utility_string_tests \
462 utility_tests \
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800463 vboot_api_init_tests \
464 vboot_api_devmode_tests \
465 vboot_api_firmware_tests \
466 vboot_api_kernel_tests \
Randall Spangler7f436692013-02-05 12:42:36 -0800467 vboot_api_kernel2_tests \
468 vboot_api_kernel3_tests \
469 vboot_api_kernel4_tests \
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800470 vboot_audio_tests \
471 vboot_common_tests \
472 vboot_common2_tests \
473 vboot_common3_tests \
Randall Spangler786a5dc2013-01-24 14:19:56 -0800474 vboot_display_tests \
Randall Spangler6dbf9d92013-01-23 12:25:10 -0800475 vboot_firmware_tests \
Randall Spangler49cb0d32013-01-29 14:28:16 -0800476 vboot_kernel_tests \
Randall Spangler6dbf9d92013-01-23 12:25:10 -0800477 vboot_nvstorage_test
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800478
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800479# Grrr
480ifneq (${IN_CHROOT},)
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800481TEST_NAMES += CgptManagerTests
482endif
483
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800484# TODO: port these tests to new API, if not already eqivalent
485# functionality in other tests. These don't even compile at present.
486#
487# big_firmware_tests
488# big_kernel_tests
489# firmware_image_tests
490# firmware_rollback_tests
491# firmware_splicing_tests
492# firmware_verify_benchmark
493# kernel_image_tests
494# kernel_rollback_tests
495# kernel_splicing_tests
496# kernel_verify_benchmark
497# rollback_index_test
498# verify_firmware_fuzz_driver
499# verify_kernel_fuzz_driver
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800500# utility/load_firmware_test
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800501
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800502# And a few more...
503TLCL_TESTS = \
504 tpmtest_earlyextend \
505 tpmtest_earlynvram \
506 tpmtest_earlynvram2 \
507 tpmtest_enable \
508 tpmtest_fastenable \
509 tpmtest_globallock \
510 tpmtest_redefine_unowned \
511 tpmtest_spaceperm \
512 tpmtest_testsetup \
513 tpmtest_timing \
514 tpmtest_writelimit
515TLCL_TEST_NAMES = $(addprefix tpm_lite/,${TLCL_TESTS})
516TLCL_TEST_BINS = $(addprefix ${BUILD}/tests/,${TLCL_TEST_NAMES})
517
518TEST_NAMES += ${TLCL_TEST_NAMES}
519
520TEST_BINS = $(addprefix ${BUILD}/tests/,${TEST_NAMES})
521ALL_DEPS += $(addsuffix .d,${TEST_BINS})
522
Randall Spanglere061a252013-01-22 15:34:07 -0800523# Directory containing test keys
524TEST_KEYS = ${SRC_RUN}/tests/testkeys
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800525
526# ----------------------------------------------------------------------------
527# TODO: why not make this include *all* the cgpt files, and simply have
528# cgpt link against it?
529# TODO: CgptManager.cc should move to the installer project. Shouldn't be
530# in libcgpt-cc.a.
531AU_CGPTLIB_SRCS = \
532 cgpt/CgptManager.cc \
533 cgpt/cgpt_create.c \
534 cgpt/cgpt_add.c \
535 cgpt/cgpt_boot.c \
536 cgpt/cgpt_show.c \
537 cgpt/cgpt_repair.c \
538 cgpt/cgpt_prioritize.c \
539 cgpt/cgpt_common.c \
540 firmware/lib/cgptlib/crc32.c \
541 firmware/lib/cgptlib/cgptlib_internal.c \
542 firmware/stub/utility_stub.c
543
544AU_CGPTLIB_OBJS = $(filter %.o, \
545 ${AU_CGPTLIB_SRCS:%.c=${BUILD}/%.o} \
546 ${AU_CGPTLIB_SRCS:%.cc=${BUILD}/%.o})
547ALL_OBJS += ${AU_CGPTLIB_OBJS}
548
549
550##############################################################################
551# Finally, some targets. High-level ones first.
552
553# Create output directories if necessary. Do this via explicit shell commands
554# so it happens before trying to generate/include dependencies.
555SUBDIRS := firmware host cgpt utility futility tests tests/tpm_lite
556_dir_create := $(foreach d, \
557 $(shell find ${SUBDIRS} -name '*.c' -exec dirname {} \; | sort -u), \
558 $(shell [ -d ${BUILD}/${d} ] || mkdir -p ${BUILD}/${d}))
559
560
561# Default target.
562.PHONY: all
Randall Spangler59d75082013-01-23 09:29:54 -0800563all: fwlib $(if ${FIRMWARE_ARCH},,host_stuff) $(if ${COV},coverage)
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800564
565# Host targets
566.PHONY: host_stuff
567host_stuff: hostlib cgpt utils futil tests
568
569# AU targets
570.PHONY: au_stuff
571au_stuff: libcgpt_cc libdump_kernel_config cgptmanager_tests
572
573.PHONY: clean
574clean:
575 ${Q}/bin/rm -rf ${BUILD}
576
577.PHONY: install
Bill Richardsonc9bf3482013-02-13 14:38:29 -0800578install: cgpt_install utils_install signing_install futil_install
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800579
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800580# Don't delete intermediate object files
581.SECONDARY:
582
583# TODO: I suspect this is missing some object files. Make a temp
584# target which cleans all known obj/exe's and see what's left; those
585# are the files which need deps.
586ALL_DEPS += ${ALL_OBJS:%.o=%.o.d}
587-include ${ALL_DEPS}
588
589# ----------------------------------------------------------------------------
590# Firmware library
591
592# TPM-specific flags. These depend on the particular TPM we're targeting for.
593# They are needed here only for compiling parts of the firmware code into
594# user-level tests.
595
596# TPM_BLOCKING_CONTINUESELFTEST is defined if TPM_ContinueSelfTest blocks until
597# the self test has completed.
598
Randall Spangler45cc0f22013-01-25 09:34:26 -0800599${FWLIB_OBJS}: CFLAGS += -DTPM_BLOCKING_CONTINUESELFTEST
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800600
601# TPM_MANUAL_SELFTEST is defined if the self test must be started manually
602# (with a call to TPM_ContinueSelfTest) instead of starting automatically at
603# power on.
604#
605# We sincerely hope that TPM_BLOCKING_CONTINUESELFTEST and TPM_MANUAL_SELFTEST
606# are not both defined at the same time. (See comment in code.)
607
608# CFLAGS += -DTPM_MANUAL_SELFTEST
609
610ifeq (${FIRMWARE_ARCH},i386)
611# Unrolling loops in cryptolib makes it faster
Randall Spangler45cc0f22013-01-25 09:34:26 -0800612${FWLIB_OBJS}: CFLAGS += -DUNROLL_LOOPS
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800613
614# Workaround for coreboot on x86, which will power off asynchronously
615# without giving us a chance to react. This is not an example of the Right
616# Way to do things. See chrome-os-partner:7689, and the commit message
617# that made this change.
Randall Spangler45cc0f22013-01-25 09:34:26 -0800618${FWLIB_OBJS}: CFLAGS += -DSAVE_LOCALE_IMMEDIATELY
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800619
620# On x86 we don't actually read the GBB data into RAM until it is needed.
621# Therefore it makes sense to cache it rather than reading it each time.
622# Enable this feature.
Randall Spangler45cc0f22013-01-25 09:34:26 -0800623${FWLIB_OBJS}: CFLAGS += -DCOPY_BMP_DATA
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800624endif
625
626ifeq (${FIRMWARE_ARCH},)
627# Disable rollback TPM when compiling locally, since otherwise
628# load_kernel_test attempts to talk to the TPM.
Randall Spangler45cc0f22013-01-25 09:34:26 -0800629${FWLIB_OBJS}: CFLAGS += -DDISABLE_ROLLBACK_TPM
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800630endif
631
Randall Spangler93943262013-02-26 11:03:57 -0800632# Link tests
633${BUILD}/firmware/linktest/main_vbinit: LIBS =
634${BUILD}/firmware/linktest/main_vbinit: OBJS = ${VBINIT_OBJS}
635${BUILD}/firmware/linktest/main_vbsf: LIBS =
636${BUILD}/firmware/linktest/main_vbsf: OBJS = ${VBSF_OBJS}
637
638.phony: fwlinktest
639fwlinktest: ${FWLIB} \
640 ${BUILD}/firmware/linktest/main_vbinit \
641 ${BUILD}/firmware/linktest/main_vbsf \
642 ${BUILD}/firmware/linktest/main
643
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800644.PHONY: fwlib
Randall Spangler93943262013-02-26 11:03:57 -0800645fwlib: ${FWLIB} $(if ${FIRMWARE_ARCH},,fwlinktest)
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800646
647${FWLIB}: ${FWLIB_OBJS}
648 @printf " RM $(subst ${BUILD}/,,$@)\n"
649 ${Q}rm -f $@
650 @printf " AR $(subst ${BUILD}/,,$@)\n"
651 ${Q}ar qc $@ $^
652
653# ----------------------------------------------------------------------------
654# Host library
655
656.PHONY: hostlib
657hostlib: ${HOSTLIB} ${BUILD}/host/linktest/main
658
659${BUILD}/host/% ${HOSTLIB}: INCLUDES += \
660 -Ihost/include\
661 -Ihost/arch/${ARCH}/include
662
663# TODO: better way to make .a than duplicating this recipe each time?
664${HOSTLIB}: ${HOSTLIB_OBJS} ${FWLIB_OBJS}
665 @printf " RM $(subst ${BUILD}/,,$@)\n"
666 ${Q}rm -f $@
667 @printf " AR $(subst ${BUILD}/,,$@)\n"
668 ${Q}ar qc $@ $^
669
670# ----------------------------------------------------------------------------
671# CGPT library and utility
672
673.PHONY: cgpt
674cgpt: ${CGPT}
675
676${CGPT}: LDFLAGS += -static
677${CGPT}: LDLIBS += -luuid
678
679${CGPT}: ${CGPT_OBJS} ${LIBS}
680 @printf " LDcgpt $(subst ${BUILD}/,,$@)\n"
681 ${Q}${LD} -o ${CGPT} ${CFLAGS} $^ ${LDFLAGS} ${LDLIBS}
682
683.PHONY: cgpt_install
684cgpt_install: ${CGPT}
685 @printf " INSTALL CGPT\n"
Bill Richardsonc9bf3482013-02-13 14:38:29 -0800686 ${Q}mkdir -p ${UB_DIR}
687 ${Q}${INSTALL} -t ${UB_DIR} $^
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800688
689# ----------------------------------------------------------------------------
690# Utilities
691
692# These have their own headers too.
693${BUILD}/utility/%: INCLUDES += -Ihost/include -Iutility/include
694
695# Utilities for auto-update toolkits must be statically linked.
696${UTIL_BINS_STATIC}: LDFLAGS += -static
697
698.PHONY: utils
Bill Richardsonc7c6e5d2013-02-28 10:10:29 -0800699utils: ${UTIL_BINS} ${UTIL_SCRIPTS}
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800700 ${Q}cp -f ${UTIL_SCRIPTS} ${BUILD}/utility
701 ${Q}chmod a+rx $(patsubst %,${BUILD}/%,${UTIL_SCRIPTS})
702
703.PHONY: utils_install
Bill Richardsonc7c6e5d2013-02-28 10:10:29 -0800704utils_install: ${UTIL_BINS} ${UTIL_SCRIPTS}
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800705 @printf " INSTALL UTILS\n"
Bill Richardsonc9bf3482013-02-13 14:38:29 -0800706 ${Q}mkdir -p ${UB_DIR}
707 ${Q}${INSTALL} -t ${UB_DIR} ${UTIL_BINS} ${UTIL_SCRIPTS}
Bill Richardsonc9bf3482013-02-13 14:38:29 -0800708
709# And some signing stuff for the target
710.PHONY: signing_install
711signing_install: ${SIGNING_SCRIPTS} ${SIGNING_SCRIPTS_DEV} ${SIGNING_COMMON}
712ifneq (${MINIMAL},)
713 @printf " INSTALL SIGNING\n"
714 ${Q}mkdir -p ${UB_DIR}
715 ${Q}${INSTALL} -t ${UB_DIR} ${SIGNING_SCRIPTS}
716 ${Q}mkdir -p ${VB_DIR}
717 ${Q}${INSTALL} -t ${VB_DIR} ${SIGNING_SCRIPTS_DEV}
718 ${Q}${INSTALL} -t ${VB_DIR} -m 'u=rw,go=r,a-s' ${SIGNING_COMMON}
719endif
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800720
721# ----------------------------------------------------------------------------
722# new Firmware Utility
723
724.PHONY: futil
725futil: ${FUTIL_BIN}
726
727${FUTIL_BIN}: ${FUTIL_LDS} ${FUTIL_OBJS}
728 @printf " LD $(subst ${BUILD}/,,$@)\n"
729 ${Q}${LD} -o $@ ${CFLAGS} $^ ${LDFLAGS} ${LDLIBS}
730
731.PHONY: futil_install
732futil_install: ${FUTIL_BIN}
733 @printf " INSTALL futility\n"
Bill Richardsonc9bf3482013-02-13 14:38:29 -0800734 ${Q}mkdir -p ${UB_DIR}
735 ${Q}${INSTALL} -t ${UB_DIR} $^
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800736
737
738# ----------------------------------------------------------------------------
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800739# Utility to generate TLCL structure definition header file.
740
741${BUILD}/utility/tlcl_generator: CFLAGS += -fpack-struct
742
743STRUCTURES_TMP=${BUILD}/tlcl_structures.tmp
744STRUCTURES_SRC=firmware/lib/tpm_lite/include/tlcl_structures.h
745
746.PHONY: update_tlcl_structures
747update_tlcl_structures: ${BUILD}/utility/tlcl_generator
748 @printf " Rebuilding TLCL structures\n"
749 ${Q}${BUILD}/utility/tlcl_generator > ${STRUCTURES_TMP}
750 ${Q}cmp -s ${STRUCTURES_TMP} ${STRUCTURES_SRC} || \
751 ( echo "%% Updating structures.h %%" && \
752 cp ${STRUCTURES_TMP} ${STRUCTURES_SRC} )
753
754# ----------------------------------------------------------------------------
755# Library to dump kernel config
756# Used by platform/installer, as well as standalone utility.
757
758.PHONY: libdump_kernel_config
759libdump_kernel_config: ${DUMPKERNELCONFIGLIB}
760
761${DUMPKERNELCONFIGLIB}: ${BUILD}/utility/dump_kernel_config_lib.o
762 @printf " RM $(subst ${BUILD}/,,$@)\n"
763 ${Q}rm -f $@
764 @printf " AR $(subst ${BUILD}/,,$@)\n"
765 ${Q}ar qc $@ $^
766
767# ----------------------------------------------------------------------------
768# And this thing.
769
770.PHONY: libcgpt_cc
771libcgpt_cc: ${AU_CGPTLIB}
772
773${AU_CGPTLIB}: INCLUDES += -Ifirmware/lib/cgptlib/include
774${AU_CGPTLIB}: ${AU_CGPTLIB_OBJS}
775 @printf " RM $(subst ${BUILD}/,,$@)\n"
776 ${Q}rm -f $@
777 @printf " AR $(subst ${BUILD}/,,$@)\n"
778 ${Q}ar qc $@ $^
779
780# ----------------------------------------------------------------------------
781# Tests
782
783.PHONY: tests
784tests: ${TEST_BINS}
785
786${TEST_BINS}: ${TESTLIB}
787
788${TESTLIB}: ${TESTLIB_OBJS}
789 @printf " RM $(subst ${BUILD}/,,$@)\n"
790 ${Q}rm -f $@
791 @printf " AR $(subst ${BUILD}/,,$@)\n"
792 ${Q}ar qc $@ $^
793
794
795# ----------------------------------------------------------------------------
796# Generic build rules. LIBS and OBJS can be overridden to tweak the generic
797# rules for specific targets.
798
799${BUILD}/%: ${BUILD}/%.o ${OBJS} ${LIBS}
800 @printf " LD $(subst ${BUILD}/,,$@)\n"
801 ${Q}${LD} -o $@ ${CFLAGS} $< ${OBJS} ${LIBS} ${LDFLAGS} ${LDLIBS}
802
803${BUILD}/%.o: %.c
804 @printf " CC $(subst ${BUILD}/,,$@)\n"
805 ${Q}${CC} ${CFLAGS} ${INCLUDES} -c -o $@ $<
806
807# Rules to recompile a single source file for library and test
808# TODO: is there a tidier way to do this?
809${BUILD}/%_for_lib.o: CFLAGS += -DFOR_LIBRARY
810${BUILD}/%_for_lib.o: %.c
811 @printf " CC-for-lib $(subst ${BUILD}/,,$@)\n"
812 ${Q}${CC} ${CFLAGS} ${INCLUDES} -c -o $@ $<
813
814${BUILD}/%_for_test.o: CFLAGS += -DFOR_TEST
815${BUILD}/%_for_test.o: %.c
816 @printf " CC-for-test $(subst ${BUILD}/,,$@)\n"
817 ${Q}${CC} ${CFLAGS} ${INCLUDES} -c -o $@ $<
818
819# TODO: C++ files don't belong in vboot reference at all. Convert to C.
820${BUILD}/%.o: %.cc
821 @printf " CXX $(subst ${BUILD}/,,$@)\n"
822 ${Q}${CXX} ${CFLAGS} ${INCLUDES} -c -o $@ $<
823
824# ----------------------------------------------------------------------------
825# Here are the special tweaks to the generic rules.
826
827# Linktest ensures firmware lib doesn't rely on outside libraries
828${BUILD}/firmware/linktest/main: LIBS = ${FWLIB}
829
830# Specific dependency here.
831${BUILD}/utility/dump_kernel_config: LIBS += ${DUMPKERNELCONFIGLIB}
832${BUILD}/utility/dump_kernel_config: ${DUMPKERNELCONFIGLIB}
833
834# GBB utility needs C++ linker. TODO: It shouldn't.
835${BUILD}/utility/gbb_utility: LD = ${CXX}
836
837# Some utilities need external crypto functions
838${BUILD}/utility/dumpRSAPublicKey: LDLIBS += ${CRYPTO_LIBS}
839${BUILD}/utility/pad_digest_utility: LDLIBS += ${CRYPTO_LIBS}
840${BUILD}/utility/signature_digest_utility: LDLIBS += ${CRYPTO_LIBS}
841${BUILD}/utility/dev_sign_file: LDLIBS += ${CRYPTO_LIBS}
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800842${BUILD}/utility/vbutil_firmware: LDLIBS += ${CRYPTO_LIBS}
843${BUILD}/utility/vbutil_kernel: LDLIBS += ${CRYPTO_LIBS}
844${BUILD}/utility/vbutil_key: LDLIBS += ${CRYPTO_LIBS}
845${BUILD}/utility/vbutil_keyblock: LDLIBS += ${CRYPTO_LIBS}
846
847${BUILD}/host/linktest/main: LDLIBS += ${CRYPTO_LIBS}
848${BUILD}/tests/vboot_common2_tests: LDLIBS += ${CRYPTO_LIBS}
849${BUILD}/tests/vboot_common3_tests: LDLIBS += ${CRYPTO_LIBS}
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800850
851${BUILD}/utility/bmpblk_utility: LD = ${CXX}
852${BUILD}/utility/bmpblk_utility: LDLIBS = -llzma -lyaml
853
854BMPBLK_UTILITY_DEPS = \
855 ${BUILD}/utility/bmpblk_util.o \
856 ${BUILD}/utility/image_types.o \
857 ${BUILD}/utility/eficompress_for_lib.o \
858 ${BUILD}/utility/efidecompress_for_lib.o
859${BUILD}/utility/bmpblk_utility: OBJS = ${BMPBLK_UTILITY_DEPS}
860${BUILD}/utility/bmpblk_utility: ${BMPBLK_UTILITY_DEPS}
861
862${BUILD}/utility/bmpblk_font: OBJS += ${BUILD}/utility/image_types.o
863${BUILD}/utility/bmpblk_font: ${BUILD}/utility/image_types.o
864
865# Allow multiple definitions, so tests can mock functions from other libraries
866${BUILD}/tests/%: CFLAGS += -Xlinker --allow-multiple-definition
867${BUILD}/tests/%: INCLUDES += -Ihost/include
868${BUILD}/tests/%: LDLIBS += -lrt -luuid
869${BUILD}/tests/%: LIBS += ${TESTLIB}
870
871${BUILD}/tests/rollback_index2_tests: OBJS += \
872 ${BUILD}/firmware/lib/rollback_index_for_test.o
873${BUILD}/tests/rollback_index2_tests: \
874 ${BUILD}/firmware/lib/rollback_index_for_test.o
875
Randall Spanglerc3d488d2013-01-28 16:23:48 -0800876${BUILD}/tests/tlcl_tests: OBJS += \
877 ${BUILD}/firmware/lib/tpm_lite/tlcl_for_test.o
878${BUILD}/tests/tlcl_tests: \
879 ${BUILD}/firmware/lib/tpm_lite/tlcl_for_test.o
880
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800881${BUILD}/tests/vboot_audio_tests: OBJS += \
882 ${BUILD}/firmware/lib/vboot_audio_for_test.o
883${BUILD}/tests/vboot_audio_tests: \
884 ${BUILD}/firmware/lib/vboot_audio_for_test.o
885
886.PHONY: cgptmanager_tests
887cgptmanager_tests: ${BUILD}/tests/CgptManagerTests
888
889${BUILD}/tests/CgptManagerTests: CFLAGS += ${PC_CFLAGS}
890${BUILD}/tests/CgptManagerTests: LD = ${CXX}
891${BUILD}/tests/CgptManagerTests: LDLIBS += -lgtest -lgflags ${PC_LDLIBS}
892${BUILD}/tests/CgptManagerTests: LIBS = ${AU_CGPTLIB}
893${BUILD}/tests/CgptManagerTests: ${AU_CGPTLIB}
894
895${BUILD}/tests/rollback_index_test: INCLUDES += -I/usr/include
896${BUILD}/tests/rollback_index_test: LIBS += -ltlcl
897
898${TLCL_TEST_BINS}: OBJS += ${BUILD}/tests/tpm_lite/tlcl_tests.o
899${TLCL_TEST_BINS}: ${BUILD}/tests/tpm_lite/tlcl_tests.o
900
901##############################################################################
902# Targets that exist just to run tests
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800903
904# Frequently-run tests
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800905.PHONY: test_targets
906test_targets:: runcgpttests runmisctests
Randall Spangler844bce52013-01-15 16:16:43 -0800907
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800908ifeq (${MINIMAL},)
Randall Spangler844bce52013-01-15 16:16:43 -0800909# Bitmap utility isn't compiled for minimal variant
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800910test_targets:: runbmptests
Randall Spangler844bce52013-01-15 16:16:43 -0800911# Scripts don't work under qemu testing
912# TODO: convert scripts to makefile so they can be called directly
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800913test_targets:: runtestscripts
Randall Spangler844bce52013-01-15 16:16:43 -0800914endif
915
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800916.PHONY: test_setup
917test_setup:: cgpt utils futil tests
918
Randall Spangler844bce52013-01-15 16:16:43 -0800919# Qemu setup for cross-compiled tests. Need to copy qemu binary into the
920# sysroot.
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800921ifneq (${QEMU_ARCH},)
922test_setup:: qemu_install
Randall Spangler844bce52013-01-15 16:16:43 -0800923
924.PHONY: qemu_install
925qemu_install:
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800926ifeq (${SYSROOT},)
927 $(error SYSROOT must be set to the top of the target-specific root \
928when cross-compiling for qemu-based tests to run properly.)
929endif
Randall Spangler844bce52013-01-15 16:16:43 -0800930 @printf " Copying qemu binary.\n"
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800931 ${Q}cp -fu /usr/bin/${QEMU_BIN} ${BUILD}/${QEMU_BIN}
932 ${Q}chmod a+rx ${BUILD}/${QEMU_BIN}
Randall Spangler844bce52013-01-15 16:16:43 -0800933endif
934
Bill Richardsonacb2ee92013-01-11 22:53:00 -0800935.PHONY: runtests
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800936runtests: test_targets
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800937
938# Generate test keys
Bill Richardsonacb2ee92013-01-11 22:53:00 -0800939.PHONY: genkeys
Randall Spangler844bce52013-01-15 16:16:43 -0800940genkeys: utils
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800941 tests/gen_test_keys.sh
942
943# Generate test cases for fuzzing
Bill Richardsonacb2ee92013-01-11 22:53:00 -0800944.PHONY: genfuzztestcases
Randall Spanglera808dc92013-01-14 12:59:05 -0800945genfuzztestcases: utils
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800946 tests/gen_fuzz_test_cases.sh
947
Bill Richardsonacb2ee92013-01-11 22:53:00 -0800948.PHONY: runbmptests
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800949runbmptests: test_setup
950 cd tests/bitmaps && BMPBLK=${BUILD_RUN}/utility/bmpblk_utility \
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800951 ./TestBmpBlock.py -v
952
Bill Richardsonacb2ee92013-01-11 22:53:00 -0800953.PHONY: runcgpttests
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800954runcgpttests: test_setup
955 ${RUNTEST} ${BUILD_RUN}/tests/cgptlib_test
956# HEY - elsewhere
957ifneq (${IN_CHROOT},)
958 ${RUNTEST} ${BUILD_RUN}/tests/CgptManagerTests --v=1
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800959endif
960
Randall Spangler844bce52013-01-15 16:16:43 -0800961.PHONY: runtestscripts
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800962runtestscripts: test_setup genfuzztestcases
963 tests/run_cgpt_tests.sh ${BUILD_RUN}/cgpt/cgpt
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800964 tests/run_preamble_tests.sh
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800965 tests/run_rsa_tests.sh
Randall Spangler844bce52013-01-15 16:16:43 -0800966 tests/run_vbutil_kernel_arg_tests.sh
Randall Spangler5d9bbf22013-01-08 10:44:23 -0800967 tests/run_vbutil_tests.sh
968
Randall Spangler844bce52013-01-15 16:16:43 -0800969.PHONY: runmisctests
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800970runmisctests: test_setup
971 ${RUNTEST} ${BUILD_RUN}/tests/rollback_index2_tests
Randall Spanglera3eac792013-01-23 13:04:05 -0800972 ${RUNTEST} ${BUILD_RUN}/tests/rollback_index3_tests
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800973 ${RUNTEST} ${BUILD_RUN}/tests/rsa_utility_tests
974 ${RUNTEST} ${BUILD_RUN}/tests/sha_tests
975 ${RUNTEST} ${BUILD_RUN}/tests/stateful_util_tests
Randall Spanglerc3d488d2013-01-28 16:23:48 -0800976 ${RUNTEST} ${BUILD_RUN}/tests/tlcl_tests
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800977 ${RUNTEST} ${BUILD_RUN}/tests/tpm_bootmode_tests
978 ${RUNTEST} ${BUILD_RUN}/tests/utility_string_tests
979 ${RUNTEST} ${BUILD_RUN}/tests/utility_tests
980 ${RUNTEST} ${BUILD_RUN}/tests/vboot_api_devmode_tests
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800981 ${RUNTEST} ${BUILD_RUN}/tests/vboot_api_firmware_tests
Randall Spangler0714d9d2013-02-05 10:23:38 -0800982 ${RUNTEST} ${BUILD_RUN}/tests/vboot_api_init_tests
983 ${RUNTEST} ${BUILD_RUN}/tests/vboot_api_kernel_tests
Randall Spangler7f436692013-02-05 12:42:36 -0800984 ${RUNTEST} ${BUILD_RUN}/tests/vboot_api_kernel2_tests
985 ${RUNTEST} ${BUILD_RUN}/tests/vboot_api_kernel3_tests
986 ${RUNTEST} ${BUILD_RUN}/tests/vboot_api_kernel4_tests
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800987 ${RUNTEST} ${BUILD_RUN}/tests/vboot_audio_tests
Randall Spanglere061a252013-01-22 15:34:07 -0800988 ${RUNTEST} ${BUILD_RUN}/tests/vboot_common_tests
989 ${RUNTEST} ${BUILD_RUN}/tests/vboot_common2_tests ${TEST_KEYS}
990 ${RUNTEST} ${BUILD_RUN}/tests/vboot_common3_tests ${TEST_KEYS}
Randall Spangler786a5dc2013-01-24 14:19:56 -0800991 ${RUNTEST} ${BUILD_RUN}/tests/vboot_display_tests
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800992 ${RUNTEST} ${BUILD_RUN}/tests/vboot_firmware_tests
Randall Spangler49cb0d32013-01-29 14:28:16 -0800993 ${RUNTEST} ${BUILD_RUN}/tests/vboot_kernel_tests
Randall Spangler6dbf9d92013-01-23 12:25:10 -0800994 ${RUNTEST} ${BUILD_RUN}/tests/vboot_nvstorage_test
Bill Richardsoneecc18f2013-01-17 15:28:17 -0800995
996.PHONY: runfutiltests
997runfutiltests: DESTDIR := ${TEST_INSTALL_DIR}
998runfutiltests: test_setup install
999 @echo "$@ passed"
Randall Spangler844bce52013-01-15 16:16:43 -08001000
Randall Spangler5d9bbf22013-01-08 10:44:23 -08001001# Run long tests, including all permutations of encryption keys (instead of
Randall Spangler786a5dc2013-01-24 14:19:56 -08001002# just the ones we use) and tests of currently-unused code.
Randall Spangler5d9bbf22013-01-08 10:44:23 -08001003# Not run by automated build.
Bill Richardsonacb2ee92013-01-11 22:53:00 -08001004.PHONY: runlongtests
Bill Richardsoneecc18f2013-01-17 15:28:17 -08001005runlongtests: test_setup genkeys genfuzztestcases
Randall Spanglere061a252013-01-22 15:34:07 -08001006 ${RUNTEST} ${BUILD_RUN}/tests/vboot_common2_tests ${TEST_KEYS} --all
1007 ${RUNTEST} ${BUILD_RUN}/tests/vboot_common3_tests ${TEST_KEYS} --all
Randall Spangler5d9bbf22013-01-08 10:44:23 -08001008 tests/run_preamble_tests.sh --all
Randall Spangler5d9bbf22013-01-08 10:44:23 -08001009 tests/run_vbutil_tests.sh --all
1010
1011# TODO: tests to run when ported to new API
1012# ./run_image_verification_tests.sh
1013# # Splicing tests
1014# ${BUILD}/tests/firmware_splicing_tests
1015# ${BUILD}/tests/kernel_splicing_tests
1016# # Rollback Tests
1017# ${BUILD}/tests/firmware_rollback_tests
1018# ${BUILD}/tests/kernel_rollback_tests
1019
Randall Spangler59d75082013-01-23 09:29:54 -08001020# Code coverage
1021.PHONY: coverage_init
1022coverage_init: test_setup
1023 rm -f ${COV_INFO}*
1024 lcov -c -i -d . -b . -o ${COV_INFO}.initial
1025
1026.PHONY: coverage_html
1027coverage_html:
1028 lcov -c -d . -b . -o ${COV_INFO}.tests
1029 lcov -a ${COV_INFO}.initial -a ${COV_INFO}.tests -o ${COV_INFO}.total
1030 lcov -r ${COV_INFO}.total '/usr/*' '*/linktest/*' -o ${COV_INFO}.local
1031 genhtml ${COV_INFO}.local -o ${BUILD}/coverage
1032
1033# Generate addtional coverage stats just for firmware subdir, because the
1034# per-directory stats for the whole project don't include their own subdirs.
Randall Spangler49cb0d32013-01-29 14:28:16 -08001035 lcov -r ${COV_INFO}.local '*/stub/*' -o ${COV_INFO}.nostub
1036 lcov -e ${COV_INFO}.nostub '${SRCDIR}/firmware/*' \
Randall Spangler59d75082013-01-23 09:29:54 -08001037 -o ${COV_INFO}.firmware
1038
1039.PHONY: coverage
1040ifeq (${COV},)
1041coverage:
1042 $(error Build coverage like this: make clean && COV=1 make)
1043else
1044coverage: coverage_init runtests coverage_html
1045endif
1046