forked from trailofbits/cb-multios
-
Notifications
You must be signed in to change notification settings - Fork 1
/
CMakeLists.txt
258 lines (219 loc) · 7.84 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
# Using this min version for now
cmake_minimum_required(VERSION 3.1)
project(challenge_sets)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# Needed for newer challenges
set(CMAKE_C_STANDARD 99)
set(CMAKE_CXX_STANDARD 11)
if(WIN32)
# Need to use MASM on windows
enable_language(ASM_MASM)
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS TRUE)
set(BUILD_SHARED_LIBS TRUE)
add_compile_options(
/w
/W0
/Z7
/GS-
/GR-
/guard:cf-
)
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /MACHINE:X86 /NXCOMPAT:NO /SAFESEH:NO /DYNAMICBASE:NO")
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} /MACHINE:X86")
# Read in challenges to exclude from build
if(CLANGCL)
file(STRINGS "exclude/win_clangcl.txt" cb_exclude)
add_definitions(-DCLANGCL)
else()
file(STRINGS "exclude/win_msvc.txt" cb_exclude)
add_definitions(-DWIN)
endif()
else(WIN32)
# Generic ASM can be enabled on other OSs
enable_language(ASM)
if(UNIX AND NOT APPLE)
set(LINUX TRUE)
add_definitions(-DLINUX)
# Read in challenges to exclude from build
file(STRINGS "exclude/linux.txt" cb_exclude)
endif()
if(APPLE)
add_definitions(-DAPPLE)
# Read in challenges to exclude from build
file(STRINGS "exclude/osx.txt" cb_exclude)
endif()
# Default flags for everything
add_compile_options(
-fno-builtin
-w
-g3
#-m32
)
if(BUILD_32BIT)
add_compile_options(
-m32
)
# Link everything 32-bit (until we have a 64-bit option)
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -m32")
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -m32")
endif()
# Linker options
# Dynamic by default
option(BUILD_SHARED_LIBS "" ON)
if(BUILD_STATIC_LIBS AND LINUX)
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -static -Wl,--allow-multiple-definition")
set(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "")
set(CMAKE_SHARED_LIBRARY_LINK_CXX_FLAGS "")
endif()
endif(WIN32)
# Build all libraries
include_directories(include)
add_subdirectory(include)
function(build path target)
message(STATUS "Building ${target}")
# Gather all sources
aux_source_directory(${path}/src cb_src)
aux_source_directory(${path}/lib cb_lib)
aux_source_directory(${path}/include cb_inc)
set(cb_all_src ${cb_lib} ${cb_src} ${cb_inc})
add_executable(${target} ${cb_all_src})
add_executable(${target}_patched ${cb_all_src})
target_include_directories(${target} PUBLIC ${path}/lib ${path}/src ${path}/include)
target_include_directories(${target}_patched PUBLIC ${path}/lib ${path}/src ${path}/include)
set_target_properties(${target} PROPERTIES
RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_CURRENT_BINARY_DIR}
RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_CURRENT_BINARY_DIR})
set_target_properties(${target}_patched PROPERTIES
RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_CURRENT_BINARY_DIR}
RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_CURRENT_BINARY_DIR})
# Add patched defines
target_compile_definitions(${target}_patched PUBLIC ${patch_defs})
# Add 64bit defines
if(NOT BUILD_32BIT)
target_compile_definitions(${target} PUBLIC -DBIT64)
endif()
target_link_libraries(${target} LINK_PUBLIC cgc)
target_link_libraries(${target}_patched LINK_PUBLIC cgc)
IF(WIN32)
# Copy required DLLs post-build
add_custom_command(
TARGET ${target} POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy $<TARGET_FILE:cgc> ${CMAKE_CURRENT_BINARY_DIR}
COMMAND ${CMAKE_COMMAND} -E copy $<TARGET_FILE:tiny-AES128-C> ${CMAKE_CURRENT_BINARY_DIR}
COMMAND ${CMAKE_COMMAND} -E copy $<TARGET_FILE:pov> ${CMAKE_CURRENT_BINARY_DIR}
)
ENDIF()
endfunction(build)
function(buildPOV path cb pov)
# Unique target name, i.e. "Palindrome2_pov_1",
# executable name kept as "pov_#.pov"
set(target "${cb}_${pov}")
# Gather sources
aux_source_directory("${path}/${pov}" pov_src)
add_executable(${target} ${pov_src})
# POVs are allowed to include challenge headers,
# but must have their own definitions
target_include_directories(
${target} PUBLIC
"${path}/${pov}"
"${path}/include"
"${path}/lib"
"${path}/src"
"${PROJECT_SOURCE_DIR}/include/libpov/pov"
)
set_target_properties(${target} PROPERTIES
OUTPUT_NAME "${pov}.pov"
RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_CURRENT_BINARY_DIR}
RUNTIME_OUTPUT_DIRECTORY_RELEASE ${CMAKE_CURRENT_BINARY_DIR}
)
target_link_libraries(${target} LINK_PUBLIC cgc pov)
endfunction(buildPOV)
function(buildCB)
# Generate all the patched #defines for this challenge
set(patch_defs -DPATCHED)
if(VULN_COUNT)
foreach(i RANGE 1 ${VULN_COUNT})
set(patch_defs ${patch_defs} -DPATCHED_${i})
endforeach()
endif()
# Some challenges have multiple binaries that need to be built
# Check if these directories exist
file(GLOB cb_parts "${cb_path}/cb_*")
if(cb_parts)
# Iterate through the directories and build each
set(i 1)
foreach(cb ${cb_parts})
build(${cb_path}/cb_${i} ${cb_id}_${i})
MATH(EXPR i "${i} + 1")
endforeach()
else()
# Build normally if there are no extra directories
build(${cb_path} ${cb_id})
endif()
file(GLOB cb_povs "${cb_path}/pov_*")
if(cb_povs)
foreach(path ${cb_povs})
# Get the pov name, i.e. "pov_1"
get_filename_component(pov ${path} NAME)
buildPOV(${cb_path} ${cb_id} ${pov})
endforeach()
endif()
endfunction(buildCB)
function(buildSO)
if(UNIX)
# Build a shared library object for a specific challenge
set(LIB_DIR ${cb_path}/lib)
set(SRC_DIR ${cb_path}/src)
set(INCLUDE_DIR ${cb_path}/include)
file(GLOB lib_files ${LIB_DIR}/*)
file(GLOB src_files ${SRC_DIR}/*)
set(LIB_SRCS ${lib_files} ${src_files})
set(LIB_NAME ${AUTHOR_ID}_${SERVICE_ID})
if(BUILD_STATIC_LIBS)
set(LIB_CGC "${PROJECT_BINARY_DIR}/include/libcgc.a")
else()
if(APPLE)
set(LIB_CGC "${PROJECT_BINARY_DIR}/include/libcgc.dylib")
else()
set(LIB_CGC "${PROJECT_BINARY_DIR}/include/libcgc.so")
endif()
endif()
if(BUILD_STATIC_LIBS)
message(STATUS "Building static library (${LIB_NAME}.a)")
add_library(${LIB_NAME} STATIC ${LIB_SRCS})
else()
message(STATUS "Building shared library (${LIB_NAME}.so)")
add_library(${LIB_NAME} SHARED ${LIB_SRCS})
endif()
target_include_directories(${LIB_NAME} PUBLIC ${LIB_DIR})
target_include_directories(${LIB_NAME} PUBLIC ${INCLUDE_DIR})
target_link_libraries(${LIB_NAME} ${LIB_CGC})
endif()
endfunction(buildSO)
# More options needed for cbs
if(NOT WIN32)
add_compile_options(
-fno-stack-protector
)
endif()
add_definitions(
-Derrno=__cgc_errno
-DFORTIFY_SOURCE=0
)
if(LINUX)
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -z execstack -z norelro")
endif()
file(GLOB challenge_binaries challenges/*)
foreach(cb_path ${challenge_binaries})
if(IS_DIRECTORY ${cb_path} AND EXISTS ${cb_path}/CMakeLists.txt)
# Get filename
get_filename_component(cb_id ${cb_path} NAME)
# Skip the challenge if it's in the exclude list
list(FIND cb_exclude ${cb_id} idx)
if(${idx} EQUAL -1)
add_subdirectory(${cb_path})
else()
message(STATUS "EXCLUDE: ${cb_id}")
endif()
endif()
endforeach()