-
Notifications
You must be signed in to change notification settings - Fork 76
/
CMakeLists.txt
383 lines (318 loc) · 15.3 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
# MIT License
#
# Copyright (c) 2019 Ruhr University Bochum, Chair for Embedded Security. All Rights reserved.
# Copyright (c) 2019 Marc Fyrbiak, Sebastian Wallat, Max Hoffmann ("ORIGINAL AUTHORS"). All rights reserved.
# Copyright (c) 2021 Max Planck Institute for Security and Privacy. All Rights reserved.
# Copyright (c) 2021 Jörn Langheinrich, Julian Speith, Nils Albartus, René Walendy, Simon Klix ("ORIGINAL AUTHORS"). All Rights reserved.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
cmake_minimum_required(VERSION 3.10)
# Include common CMake modules
include(CMakeDependentOption)
include(CMakeToolsHelpers OPTIONAL)
include(CMakePrintHelpers)
include(CMakePackageConfigHelpers)
# Detect Build Type
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build." FORCE)
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release" "MinSizeRel" "RelWithDebInfo" "Perf")
endif()
set(AVAILABLE_BUILD_TYPES "Release" "MinSizeRel" "RelWithDebInfo" "Debug" "Perf")
if(CMAKE_BUILD_TYPE IN_LIST AVAILABLE_BUILD_TYPES)
message(STATUS "Selected build type: ${CMAKE_BUILD_TYPE}")
else()
message(FATAL_ERROR "Unsupported build type: ${CMAKE_BUILD_TYPE}, supported are: Debug, Perf, MinSizeRel, RelWithDebInfo, Release")
endif()
# Configure CCache if available
find_program(CCACHE_FOUND ccache)
if(CCACHE_FOUND)
set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ${CCACHE_FOUND})
set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ${CCACHE_FOUND})
message(STATUS "ccache found!")
endif(CCACHE_FOUND)
# Add path to CMake script files and include Helper
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/" "${CMAKE_SOURCE_DIR}/deps/sanitizers-cmake/cmake/")
# Define Options
option(HAL_VERSION_MAJOR "Pass major version via cmake options" "")
option(HAL_VERSION_MINOR "Pass minor version via cmake options" "")
option(HAL_VERSION_PATCH "Pass patch version via cmake options" "")
option(USE_LIBCXX "Force the use of LIBCXX for e.g. gcc" FALSE)
option(USE_VENDORED_PYBIND11 "Use vendored 'pybind11' Python library" ON)
option(USE_VENDORED_SPDLOG "Use vendored 'spdlog' library" ON)
option(USE_VENDORED_QUAZIP "Use vendored 'quazip' library" ON)
option(USE_VENDORED_IGRAPH "Use vendored 'igraph' library" ON)
option(USE_VENDORED_NLOHMANN_JSON "Use vendored 'nlohmann_json' library" ON)
option(BUILD_ALL_PLUGINS "Build all available plugins" OFF)
option(BUILD_TESTS "Enable test builds" OFF)
option(BUILD_COVERAGE "Enable code coverage build" OFF)
option(BUILD_DOCUMENTATION "Create and install the HTML based API documentation")
option(ENABLE_INSTALL_LDCONFIG "When installing via make/ninja install, also install and run the LDCONFIG post_install scripts" ON)
option(UPLOAD_PPA "Upload package to ppa" OFF)
option(PACKAGE_DEB "Package DEB Package" OFF)
option(ENABLE_PPA "Prepare PPA" ON)
option(PACKAGE_TGZ "Package TGZ archive" OFF)
option(PACKAGE_ZIP "Package ZIP archive" OFF)
option(PACKAGE_RPM "Package RPM package" OFF)
option(PACKAGE_MACOS "Package for macOS" OFF)
# Include Helper Modules
include(hal_cmake_tools) # Version helper
include(hal_plugin) # Definition of hal_add_plugin
# Create LINUX variable if needed ToDo
if(UNIX AND NOT APPLE)
set(LINUX TRUE)
detect_distro()
endif()
# Detect Version Information
set(hal_GENVERSION_PATH "${CMAKE_SOURCE_DIR}/tools")
if((NOT ${HAL_VERSION_MAJOR}) AND((NOT ${HAL_VERSION_MINOR}) AND(NOT ${HAL_VERSION_PATCH})))
hal_get_version()
else()
set(HAL_VERSION_RETURN ${HAL_VERSION_MAJOR}.${HAL_VERSION_MINOR}.${HAL_VERSION_PATCH})
endif()
configure_file(${CMAKE_SOURCE_DIR}/CURRENT_VERSION.in ${CMAKE_SOURCE_DIR}/CURRENT_VERSION @ONLY)
unset(HAL_VERSION_MAJOR_SELF CACHE)
message(STATUS "HAL_VERSION: ${HAL_VERSION_RETURN}")
# ###############################
# #### The project statement
# ###############################
project(hal
VERSION ${HAL_VERSION_MAJOR}.${HAL_VERSION_MINOR}.${HAL_VERSION_PATCH}
DESCRIPTION "HAL - the hardware analyzer"
# HOMEPAGE_URL https://github.com/emsec/hal # not supported in cmake 3.10
LANGUAGES CXX C)
# Common Project Information
set(PROJECT_VENDOR "hal")
set(PROJECT_WEBSITE "https://github.com/emsec/hal")
set(PROJECT_MAINTAINER "Sebastian Wallat <[email protected]>")
set(PROJECT_DESCRIPTION_SUMMARY "Hardware Reverse engineering framework")
set(PROJECT_DESCRIPTION "hal - Hardware Analyzer")
# set(CHANGELOG_MESSAGE ${CHANGELOG_LAST_MESSAGE})
set(PROJECT_PPA "ppa:sebastian-wallat/hal")
set(PROJECT_PPA_USER "sebastian-wallat")
# Use C11 and C++17 as minimum standard
set(CMAKE_C_STANDARD 11)
set(CMAKE_C_STANDARD_REQUIRED on)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED on)
# Set Build Timestamp (used in configured file)
string(TIMESTAMP BUILD_TIMESTAMP UTC)
string(TIMESTAMP CURRENT_YEAR "%Y")
# Setup Directories, e.g. CMAKE_LIBRARY_OUTPUT_DIRECTOR, INCLUDE_INSTALL_DIRECTORY, ...
setup_output_directories()
# For all ExternalProject_ADD handle configure build and test as different stages
set_property(DIRECTORY PROPERTY EP_STEP_TARGETS configure build test)
# ---Enable Folders in IDE like Visual Studio----------------------------------------------------
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
# ####################################################################
# #### Find depending packages (See cmake/detect_dependencies.cmake)
# ####################################################################
include(detect_dependencies)
# ###############################
# #### Manage Compiler Flags
# ###############################
# Set UNIX (macOS or Linux) compiler flags (clang or gcc). Set optimization level for debug or release.
if(UNIX)
message(STATUS "Checking supported compiler flags...")
enable_c_compile_option_if_supported("-Wall" "" "PRIVATE")
enable_c_compile_option_if_supported("-Wextra" "" "PRIVATE")
enable_c_compile_option_if_supported("-pedantic" "" "PRIVATE")
enable_c_compile_option_if_supported("-Wshadow" "" "PRIVATE")
enable_c_compile_option_if_supported("-g" "DEBUG" "PUBLIC")
enable_cxx_compile_option_if_supported("-Wall" "" "PRIVATE")
enable_cxx_compile_option_if_supported("-Wextra" "" "PRIVATE")
enable_cxx_compile_option_if_supported("-pedantic" "" "PRIVATE")
enable_cxx_compile_option_if_supported("-Wshadow" "" "PRIVATE")
enable_cxx_compile_option_if_supported("-Wno-undef" "" "PRIVATE")
enable_cxx_compile_option_if_supported("-Werror=return-type" "" "PRIVATE")
enable_cxx_compile_option_if_supported("-fcolor-diagnostics" "" "PRIVATE")
enable_cxx_compile_option_if_supported("-fdiagnostics-color=always" "" "PRIVATE")
enable_cxx_compile_option_if_supported("-fsized-deallocation" "" "PRIVATE")
enable_cxx_compile_option_if_supported("-O0" "Debug" "PUBLIC")
enable_cxx_compile_option_if_supported("-g" "Debug" "PUBLIC")
enable_cxx_compile_option_if_supported("-O3" "Release" "PUBLIC")
enable_cxx_compile_option_if_supported("-DNDEBUG" "Release" "PUBLIC")
# enable_cxx_compile_option_if_supported("-flto" "RELEASE" "PUBLIC")
enable_cxx_compile_option_if_supported("-Os" "MinSizeRel" "PUBLIC")
enable_cxx_compile_option_if_supported("-DNDEBUG" "MinSizeRel" "PUBLIC")
# enable_cxx_compile_option_if_supported("-flto" "MinSizeRel" "PUBLIC")
enable_cxx_compile_option_if_supported("-O2" "RelWithDebInfo" "PUBLIC")
enable_cxx_compile_option_if_supported("-g" "RelWithDebInfo" "PUBLIC")
enable_cxx_compile_option_if_supported("-O1" "Perf" "PUBLIC")
enable_cxx_compile_option_if_supported("-g" "Perf" "PUBLIC")
enable_cxx_compile_option_if_supported("-fno-inline-functions" "Perf" "PUBLIC")
enable_cxx_compile_option_if_supported("-fno-inline-functions-called-once" "Perf" "PUBLIC")
enable_cxx_compile_option_if_supported("-fno-optimize-sibling-calls" "Perf" "PUBLIC")
enable_cxx_compile_option_if_supported("-fno-omit-frame-pointer" "Perf" "PUBLIC")
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread")
SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -pthread")
# set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-omit-frame-pointer -fsanitize=address")
# SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address")
# SET(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fsanitize=address")
if(USE_LIBCXX)
enable_cxx_compile_option_if_supported("-stdlib=libc++" "" "PUBLIC")
enable_c_compile_option_if_supported("-stdlib=libc++" "" "PUBLIC")
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -stdlib=libc++ -lc++abi")
endif()
message(VERBOSE "COMPILE_OPTIONS_PRIVATE: ${COMPILE_OPTIONS_PRIVATE}")
message(VERBOSE "COMPILE_OPTIONS_PUBLIC: ${COMPILE_OPTIONS_PUBLIC}")
message(VERBOSE "COMPILE_OPTIONS_INTERFACE: ${COMPILE_OPTIONS_INTERFACE}")
message(VERBOSE " ")
endif(UNIX)
# Enable Debug Symbols for Libcpp on macOS
if(${CMAKE_BUILD_TYPE} EQUAL "Debug" AND APPLE AND CMAKE_HOST_APPLE)
add_definitions(-D_LIBCPP_DEBUG)
endif(${CMAKE_BUILD_TYPE} EQUAL "Debug" AND APPLE AND CMAKE_HOST_APPLE)
# ###################################################################
# #### Setup main target to hold all build definitions and options
# ###################################################################
# Sphinx-doc build dir
set(SPHINX_BUILD_DIR "${CMAKE_BINARY_DIR}/sphinx-build")
# ###############################
# #### Enable Testing
# ###############################
# Enable test collection
if(BUILD_TESTS)
enable_testing()
include(CTest)
# Setuo Codse Coverage
if(${BUILD_COVERAGE})
include(CodeCoverage)
append_coverage_compiler_flags()
set(COVERAGE_EXCLUDES
'/usr/*'
'${CMAKE_SOURCE_DIR}/tests/lib/googletest/*'
'${CMAKE_SOURCE_DIR}/plugins/*'
'${CMAKE_SOURCE_DIR}/deps/*'
'${CMAKE_BINARY_DIR}/*'
'${CMAKE_CURRENT_BINARY_DIR}/*'
)
message(VERBOSE "COVERAGE_EXCLUDES: ${COVERAGE_EXCLUDES}")
setup_target_for_coverage(NAME ${PROJECT_NAME}_coverage
EXECUTABLE ctest
DEPENDENCY runTest-*
)
endif()
endif()
# #################################
# #### Configure Define Files
# #################################
# Configure Version file
configure_file(${CMAKE_SOURCE_DIR}/include/hal_core/hal_version.h.in ${CMAKE_BINARY_DIR}/hal_version.h @ONLY)
# Declare Study Config in hal_config.h
option(HAL_STUDY "Enable Study Config" OFF)
configure_file(${CMAKE_SOURCE_DIR}/include/hal_core/hal_config.h.in ${CMAKE_BINARY_DIR}/hal_config.h @ONLY)
if(HAL_STUDY)
message(STATUS "HAL_STUDY mode turned ON!")
else()
message(STATUS "HAL_STUDY mode turned OFF!")
endif()
# #################################
# #### Include Code Directories
# #################################
add_subdirectory("src")
add_subdirectory("app")
add_subdirectory("plugins")
if(${BUILD_TESTS})
add_subdirectory("tests")
endif(${BUILD_TESTS})
# ###################################
# #### Configure Pkgconfig for HAL
# ###################################
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/hal.pc.in ${CMAKE_BINARY_DIR}/hal.pc @ONLY)
# ########################################
# #### Install Header + Auxilary files
# ########################################
set(HAL_CMAKECONFIG_INSTALL_DIR "share/cmake/${PROJECT_NAME}" CACHE STRING "install path for halConfig.cmake")
install(FILES ${CMAKE_BINARY_DIR}/hal_version.h DESTINATION ${INCLUDE_INSTALL_DIRECTORY}/hal_core/)
install(FILES ${CMAKE_BINARY_DIR}/hal_config.h DESTINATION ${INCLUDE_INSTALL_DIRECTORY}/hal_core/)
install(DIRECTORY ${CMAKE_SOURCE_DIR}/include/ DESTINATION ${INCLUDE_INSTALL_DIRECTORY})
install(DIRECTORY ${CMAKE_BINARY_DIR}/share/hal/gate_libraries DESTINATION ${SHARE_INSTALL_DIRECTORY} PATTERN "*.json")
install(DIRECTORY ${CMAKE_BINARY_DIR}/share/hal/gate_libraries DESTINATION ${SHARE_INSTALL_DIRECTORY} PATTERN "*.lib")
install(DIRECTORY ${CMAKE_BINARY_DIR}/share/hal/defaults DESTINATION ${SHARE_INSTALL_DIRECTORY} PATTERN "*.ini")
install(FILES ${CMAKE_BINARY_DIR}/hal.pc DESTINATION "${PKGCONFIG_INSTALL_DIRECTORY}")
message(VERBOSE "PKGCONFIG_INSTALL_DIRECTORY ${PKGCONFIG_INSTALL_DIRECTORY}")
configure_package_config_file(cmake/halConfig.cmake.in
"${CMAKE_CURRENT_BINARY_DIR}/halConfig.cmake"
INSTALL_DESTINATION ${HAL_CMAKECONFIG_INSTALL_DIR})
write_basic_package_version_file(
halConfigVersion.cmake
VERSION ${HAL_VERSION_RETURN}
COMPATIBILITY AnyNewerVersion
)
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/halConfig.cmake
${CMAKE_CURRENT_BINARY_DIR}/halConfigVersion.cmake
cmake/hal_plugin.cmake
cmake/hal_cmake_tools.cmake
cmake/FindFilesystem.cmake
tools/genversion.py
DESTINATION ${HAL_CMAKECONFIG_INSTALL_DIR})
install(FILES tools/genversion.py
DESTINATION ${HAL_CMAKECONFIG_INSTALL_DIR}
PERMISSIONS
OWNER_READ
OWNER_WRITE
OWNER_EXECUTE
GROUP_READ
GROUP_EXECUTE
WORLD_READ
WORLD_EXECUTE)
if(USE_VENDORED_PYBIND11)
install(DIRECTORY ${CMAKE_SOURCE_DIR}/deps/pybind11 DESTINATION ${HAL_CMAKECONFIG_INSTALL_DIR})
endif()
if(USE_VENDORED_SPDLOG)
install(DIRECTORY ${CMAKE_SOURCE_DIR}/deps/spdlog-${spdlog_VERSION} DESTINATION ${HAL_CMAKECONFIG_INSTALL_DIR})
endif()
install(DIRECTORY ${CMAKE_SOURCE_DIR}/deps/subprocess DESTINATION ${HAL_CMAKECONFIG_INSTALL_DIR})
if(NOT(CMAKE_VERSION VERSION_LESS 3.0))
install(EXPORT hal
FILE halTargets.cmake
NAMESPACE hal::
DESTINATION ${HAL_CMAKECONFIG_INSTALL_DIR}
)
endif()
# Configure LDCONFIG for HAL plugins
if(LINUX)
configure_file(
"${CMAKE_SOURCE_DIR}/packaging/deb/hal.conf.in"
"${CMAKE_BINARY_DIR}/hal.conf"
@ONLY)
install(FILES "${CMAKE_BINARY_DIR}/hal.conf" DESTINATION "${SHARE_INSTALL_DIRECTORY}/ld_conf/")
endif()
# on make/ninja install run configure and run ldconfig
if(ENABLE_INSTALL_LDCONFIG AND LINUX)
configure_file(
"${CMAKE_SOURCE_DIR}/cmake/post_install.cmake.in"
"${CMAKE_BINARY_DIR}/post_install.cmake"
@ONLY)
install(SCRIPT "${CMAKE_BINARY_DIR}/post_install.cmake")
endif()
# add uninstall target
configure_file(
"${CMAKE_SOURCE_DIR}/cmake/uninstall.cmake.in"
"${CMAKE_BINARY_DIR}/uninstall.cmake"
@ONLY)
add_custom_target(uninstall "${CMAKE_COMMAND}" -P "${CMAKE_BINARY_DIR}/uninstall.cmake")
# ###############################
# #### Packaging
# ###############################
add_subdirectory(packaging)
# ###############################
# #### Documentation
# ###############################
add_subdirectory(documentation)