blob: c050853cccb2e80677a2644a87ca8085e3cde8cb [file] [log] [blame]
Ed Tanous1e439872018-05-18 11:48:52 -07001cmake_minimum_required (VERSION 3.5 FATAL_ERROR)
Ed Tanous0fdddb12017-02-28 11:06:34 -08002
Ed Tanous1e439872018-05-18 11:48:52 -07003cmake_policy (SET CMP0054 NEW)
Ed Tanouscfbe25d2017-05-23 16:34:35 -07004
Ed Tanous1e439872018-05-18 11:48:52 -07005set (CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})
Ed Tanous0fdddb12017-02-28 11:06:34 -08006
Ed Tanous1e439872018-05-18 11:48:52 -07007option (BUILD_STATIC_LIBS "Built static libraries" ON)
8option (YOCTO_DEPENDENCIES "Use YOCTO depedencies system" OFF)
Ed Tanous911ac312017-08-15 09:37:42 -07009
Ed Tanous1e439872018-05-18 11:48:52 -070010option (BMCWEB_ENABLE_KVM "Enable KVM websocket interfaces" ON)
11option (BMCWEB_ENABLE_DBUS_REST "Enable rest dbus interfaces" ON)
12option (BMCWEB_ENABLE_REDFISH "Enable redfish interfaces" ON)
13option (BMCWEB_ENABLE_PHOSPHOR_WEBUI
14 "Enable webui interfaces; Requires
15 DBUS_REST interfaces" ON)
Ed Tanous0fdddb12017-02-28 11:06:34 -080016
Ed Tanous1e439872018-05-18 11:48:52 -070017# Insecure options. Every option that starts with a BMCWEB_INSECURE flag should
18# not be enabled by default for any platform, unless the author fully
19# comprehends the implications of doing so. In general, enabling these options
20# will cause security problems of varying degrees
21option (
22 BMCWEB_INSECURE_DISABLE_CSRF_PREVENTION
23 "Disable CSRF prevention checks.
24 Should be set to OFF for production systems."
25 OFF
26)
Ed Tanousf3d847c2017-06-12 16:01:42 -070027
Ed Tanous1e439872018-05-18 11:48:52 -070028option (BMCWEB_INSECURE_DISABLE_SSL
29 "Disable SSL ports. Should be set to OFF for
30 production systems."
31 OFF)
Ed Tanous0fdddb12017-02-28 11:06:34 -080032
Ed Tanous1e439872018-05-18 11:48:52 -070033option (
34 BMCWEB_INSECURE_DISABLE_AUTHENTICATION
35 "Disable authentication on all
36 ports. Should be set to OFF for production systems"
37 OFF
38)
Ed Tanous0fdddb12017-02-28 11:06:34 -080039
Ed Tanous1e439872018-05-18 11:48:52 -070040option (BMCWEB_INSECURE_DISABLE_XSS_PREVENTION "Disable XSS preventions" OFF)
Ed Tanous0d485ef2017-05-23 09:23:53 -070041
Ed Tanous1e439872018-05-18 11:48:52 -070042project (bmc-webserver CXX)
43
44include (CTest)
45
46set (CMAKE_CXX_STANDARD 14)
47set (CMAKE_CXX_STANDARD_REQUIRED ON)
48
49set (CMAKE_EXPORT_COMPILE_COMMANDS ON)
50
51set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS} -Wall")
52
53set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-rtti")
54set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fno-rtti")
Ed Tanous3dac7492017-08-02 13:46:20 -070055
Ed Tanous0fdddb12017-02-28 11:06:34 -080056# general
Ed Tanous1e439872018-05-18 11:48:52 -070057option (BMCWEB_BUILD_UT "Enable Unit test" ON)
Ed Tanous8041f312017-04-03 09:47:01 -070058
Ed Tanous1ccd57c2017-03-21 13:15:58 -070059# security flags
Ed Tanous1e439872018-05-18 11:48:52 -070060set (
61 SECURITY_FLAGS
62 "\
Ed Tanous580f3722018-03-13 16:59:02 -070063 -fstack-protector-strong \
64 -fPIE \
65 -fPIC \
66 -D_FORTIFY_SOURCE=2 \
67 -Wformat \
68 -Wformat-security"
Ed Tanous1e439872018-05-18 11:48:52 -070069)
70set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} ${SECURITY_FLAGS}")
71set (CMAKE_CXX_FLAGS_RELWITHDEBINFO
72 "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} ${SECURITY_FLAGS}")
73set (CMAKE_C_FLAGS_MINSIZEREL "${CMAKE_C_FLAGS_MINSIZEREL} ${SECURITY_FLAGS}")
Ed Tanous3dac7492017-08-02 13:46:20 -070074
Ed Tanous580f3722018-03-13 16:59:02 -070075# Enable link time optimization This is a temporary workaround because
76# INTERPROCEDURAL_OPTIMIZATION isn't available until cmake 3.9. gcc-ar and gcc-
77# ranlib are wrappers around ar and ranlib which add the lto plugin to the
78# command line.
Ed Tanous1e439872018-05-18 11:48:52 -070079if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
80 if (NOT CMAKE_BUILD_TYPE MATCHES Debug)
81 string (REGEX REPLACE "ar$" "gcc-ar" CMAKE_AR ${CMAKE_AR})
82 string (REGEX
83 REPLACE "ranlib$" "gcc-ranlib" CMAKE_RANLIB ${CMAKE_RANLIB})
84 set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -flto -fno-fat-lto-objects")
Borawski.Lukasz109799e2018-01-30 15:04:42 +010085
Ed Tanous1e439872018-05-18 11:48:52 -070086 # Reduce the binary size by removing unnecessary dynamic symbol table
87 # entries
88 set (
89 CMAKE_CXX_FLAGS
90 "${CMAKE_CXX_FLAGS} \
Ed Tanous580f3722018-03-13 16:59:02 -070091 -fvisibility=hidden \
92 -fvisibility-inlines-hidden \
93 -Wl,--exclude-libs,ALL"
Ed Tanous1e439872018-05-18 11:48:52 -070094 )
95 endif (NOT CMAKE_BUILD_TYPE MATCHES Debug)
96endif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
Borawski.Lukasz109799e2018-01-30 15:04:42 +010097
Ed Tanous1e439872018-05-18 11:48:52 -070098if (NOT ${YOCTO_DEPENDENCIES}) # Download and unpack googletest at configure
99 # time
100 configure_file (CMakeLists.txt.in 3rdparty/CMakeLists.txt)
101 execute_process (COMMAND ${CMAKE_COMMAND} -G "${CMAKE_GENERATOR}" .
102 WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/3rdparty)
103 execute_process (COMMAND ${CMAKE_COMMAND} --build .
104 WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/3rdparty)
Ed tanous7d95f5f2018-03-23 00:19:20 -0700105
Ed Tanous1e439872018-05-18 11:48:52 -0700106 set (CMAKE_PREFIX_PATH ${CMAKE_BINARY_DIR}/prefix ${CMAKE_PREFIX_PATH})
107endif ()
Ed tanous7d95f5f2018-03-23 00:19:20 -0700108
Ed Tanous580f3722018-03-13 16:59:02 -0700109# add_definitions(-DBOOST_ASIO_ENABLE_HANDLER_TRACKING)
Ed Tanous1e439872018-05-18 11:48:52 -0700110add_definitions (-DBOOST_ERROR_CODE_HEADER_ONLY)
111add_definitions (-DBOOST_SYSTEM_NO_DEPRECATED)
112add_definitions (-DBOOST_ALL_NO_LIB)
113add_definitions (-DBOOST_NO_RTTI)
114add_definitions (-DBOOST_NO_TYPEID)
Ed tanous7d95f5f2018-03-23 00:19:20 -0700115
Ed Tanous1e439872018-05-18 11:48:52 -0700116find_package (Boost 1.66 REQUIRED)
117include_directories (${BOOST_SRC_DIR})
Ed Tanousaa2e59c2018-04-12 12:17:20 -0700118
119# sdbusplus
Ed Tanous1e439872018-05-18 11:48:52 -0700120if (NOT ${YOCTO_DEPENDENCIES})
121 include_directories (${CMAKE_BINARY_DIR}/sdbusplus-src
122 ${CMAKE_BINARY_DIR}/prefix/include)
Ed Tanousaa2e59c2018-04-12 12:17:20 -0700123
Ed Tanous1e439872018-05-18 11:48:52 -0700124 set (WANT_TRANSACTION 0)
125
126 configure_file (${CMAKE_BINARY_DIR}/sdbusplus-src/sdbusplus/server.hpp.in
127 ${CMAKE_BINARY_DIR}/prefix/include/sdbusplus/server.hpp
128 @ONLY)
129 configure_file (${CMAKE_BINARY_DIR}/sdbusplus-src/sdbusplus/bus.hpp.in
130 ${CMAKE_BINARY_DIR}/prefix/include/sdbusplus/bus.hpp @ONLY)
131endif ()
Ed Tanous0fdddb12017-02-28 11:06:34 -0800132
Ed Tanous580f3722018-03-13 16:59:02 -0700133# Openssl
Ed Tanous1e439872018-05-18 11:48:52 -0700134find_package (OpenSSL REQUIRED)
135include_directories (${OPENSSL_INCLUDE_DIR})
136message ("OPENSSL_INCLUDE_DIR ${OPENSSL_INCLUDE_DIR}")
Ed Tanous0fdddb12017-02-28 11:06:34 -0800137
Ed Tanousac093312018-03-16 13:53:05 -0700138# Crow
Ed Tanous1e439872018-05-18 11:48:52 -0700139message ("CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}")
140if (CMAKE_BUILD_TYPE MATCHES Debug)
141 message ("Logging disabled")
142 add_definitions (-DCROW_ENABLE_LOGGING)
143 add_definitions (-DCROW_ENABLE_DEBUG)
144endif (CMAKE_BUILD_TYPE MATCHES Debug)
Ed Tanousaa2e59c2018-04-12 12:17:20 -0700145
Andrew Geissler1f2fbf22018-07-17 07:57:30 -0700146if (NOT "${BMCWEB_INSECURE_DISABLE_SSL}")
147 add_definitions(-DCROW_ENABLE_SSL)
148endif (NOT "${BMCWEB_INSECURE_DISABLE_SSL}")
Ed Tanous580f3722018-03-13 16:59:02 -0700149include_directories(${CMAKE_CURRENT_SOURCE_DIR}/crow/include)
Ed Tanous0fdddb12017-02-28 11:06:34 -0800150
Ed Tanous580f3722018-03-13 16:59:02 -0700151# Zlib
Ed Tanous1e439872018-05-18 11:48:52 -0700152find_package (ZLIB REQUIRED)
153include_directories (${ZLIB_INCLUDE_DIRS})
Ed Tanousf9273472017-02-28 16:05:13 -0800154
Ed Tanous4758d5b2017-06-06 15:28:13 -0700155# PAM
Ed Tanous1e439872018-05-18 11:48:52 -0700156option (WEBSERVER_ENABLE_PAM "enable pam authentication" ON)
157if ("${WEBSERVER_ENABLE_PAM}")
158 find_package (PAM REQUIRED)
159else ()
160 add_definitions ("-DWEBSERVER_DISABLE_PAM")
161endif ()
Ed Tanous911ac312017-08-15 09:37:42 -0700162
Jennifer Lee03346702018-05-23 14:05:20 -0700163add_definitions("-Wno-attributes")
164# Copy pam-webserver to etc/pam.d
165install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/pam-webserver DESTINATION /etc/pam.d/ RENAME webserver)
Ed Tanous5f34a9c2017-02-28 12:35:13 -0800166
Ed tanous7d95f5f2018-03-23 00:19:20 -0700167# tinyxml2
Ed Tanous1e439872018-05-18 11:48:52 -0700168find_package (tinyxml2 REQUIRED)
Ed tanous7d95f5f2018-03-23 00:19:20 -0700169
Ed Tanous1e439872018-05-18 11:48:52 -0700170set (WEBSERVER_MAIN src/webserver_main.cpp)
Ed Tanousb4d29f42017-03-24 16:39:25 -0700171
Ed Tanous1e439872018-05-18 11:48:52 -0700172include_directories (${CMAKE_CURRENT_SOURCE_DIR}/include)
173include_directories (${CMAKE_CURRENT_SOURCE_DIR}/redfish-core/include)
Ed Tanousb4d29f42017-03-24 16:39:25 -0700174
Ed Tanous1e439872018-05-18 11:48:52 -0700175file (MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/include/bmcweb)
176configure_file (settings.hpp.in ${CMAKE_BINARY_DIR}/include/bmcweb/settings.hpp)
177include_directories (${CMAKE_BINARY_DIR}/include)
Ed Tanous5f34a9c2017-02-28 12:35:13 -0800178
Ed Tanous1e439872018-05-18 11:48:52 -0700179set (SRC_FILES redfish-core/src/error_messages.cpp
180 redfish-core/src/utils/json_utils.cpp ${GENERATED_SRC_FILES})
Ed Tanous93f987d2017-04-17 17:52:36 -0700181
Ed Tanous1e439872018-05-18 11:48:52 -0700182file (COPY src/test_resources DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
Ed Tanous911ac312017-08-15 09:37:42 -0700183
Ed Tanous38bdb982017-03-03 14:19:33 -0800184# Unit Tests
Ed Tanous1e439872018-05-18 11:48:52 -0700185if (${BMCWEB_BUILD_UT})
186 set (UT_FILES src/crow_test.cpp src/gtest_main.cpp
187 src/token_authorization_middleware_test.cpp
188 src/security_headers_middleware_test.cpp src/webassets_test.cpp
189 src/crow_getroutes_test.cpp src/ast_jpeg_decoder_test.cpp
190 src/kvm_websocket_test.cpp src/msan_test.cpp
191 src/ast_video_puller_test.cpp
Ed Tanousd4bb9bb2018-05-16 13:36:42 -0700192 src/openbmc_jtag_rest_test.cpp
Borawski.Lukasz4b1b8682018-04-04 12:50:16 +0200193 redfish-core/ut/privileges_test.cpp
Ed Tanousd4bb9bb2018-05-16 13:36:42 -0700194 ${CMAKE_BINARY_DIR}/include/bmcweb/blns.hpp) # big list of naughty
Ed Tanous1e439872018-05-18 11:48:52 -0700195 # strings
196 add_custom_command (OUTPUT ${CMAKE_BINARY_DIR}/include/bmcweb/blns.hpp
197 COMMAND
198 xxd -i
199 ${CMAKE_CURRENT_SOURCE_DIR}/src/test_resources/blns
200 ${CMAKE_BINARY_DIR}/include/bmcweb/blns.hpp)
201
202 set_source_files_properties (${CMAKE_BINARY_DIR}/include/bmcweb/blns.hpp
203 PROPERTIES GENERATED TRUE)
204
205 enable_testing ()
206
207 add_executable (webtest ${SRC_FILES} ${UT_FILES})
208
209 find_package (GTest REQUIRED)
210 find_package (GMock REQUIRED)
211 target_link_libraries (webtest ${GTEST_LIBRARIES})
212 target_link_libraries (webtest ${GMOCK_LIBRARIES})
213
214 target_link_libraries (webtest pthread)
215 target_link_libraries (webtest ${OPENSSL_LIBRARIES})
216 target_link_libraries (webtest ${ZLIB_LIBRARIES})
217 target_link_libraries (webtest pam)
218 target_link_libraries (webtest tinyxml2)
Ed Tanousd425c6f2018-05-16 10:20:11 -0700219 target_link_libraries (webtest sdbusplus)
Ed Tanous1e439872018-05-18 11:48:52 -0700220 target_link_libraries (webtest -lstdc++fs)
221 add_test (webtest webtest "--gtest_output=xml:webtest.xml")
222
223endif (${BMCWEB_BUILD_UT})
224
225install (DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/static/ DESTINATION share/www)
226
227# bmcweb
228add_executable (bmcweb ${WEBSERVER_MAIN} ${HDR_FILES} ${SRC_FILES})
229target_link_libraries (bmcweb pthread)
230target_link_libraries (bmcweb ${OPENSSL_LIBRARIES})
231target_link_libraries (bmcweb ${ZLIB_LIBRARIES})
232target_link_libraries (bmcweb pam)
233target_link_libraries (bmcweb -lsystemd)
234target_link_libraries (bmcweb -lstdc++fs)
Ed Tanousd425c6f2018-05-16 10:20:11 -0700235target_link_libraries (bmcweb sdbusplus)
Ed Tanous1e439872018-05-18 11:48:52 -0700236target_link_libraries (bmcweb tinyxml2)
237install (TARGETS bmcweb DESTINATION bin)
238
239add_executable (getvideo src/getvideo_main.cpp)
240target_link_libraries (getvideo pthread)
Ed Tanous1ccd57c2017-03-21 13:15:58 -0700241
Ed Tanous580f3722018-03-13 16:59:02 -0700242# Visual Studio Code helper this needs to be at the end to make sure all
243# includes are handled correctly
Ed Tanous1e439872018-05-18 11:48:52 -0700244include (CMakeExtraGeneratorDetermineCompilerMacrosAndIncludeDirs)
245get_property (C_INCLUDE_DIRS
246 DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
247 PROPERTY INCLUDE_DIRECTORIES)
Ed Tanous911ac312017-08-15 09:37:42 -0700248
Ed Tanous1e439872018-05-18 11:48:52 -0700249execute_process (
250 COMMAND python3
251 ${CMAKE_CURRENT_SOURCE_DIR}/scripts/prime_vscode_compile_db.py
252 ${C_INCLUDE_DIRS} ${CMAKE_EXTRA_GENERATOR_C_SYSTEM_INCLUDE_DIRS}
253 ${CMAKE_EXTRA_GENERATOR_CXX_SYSTEM_INCLUDE_DIRS}
254)