blob: 9d5aa631268d5702b2e74667b66bd3d0e5eec87f [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 Tanous271584a2019-07-09 16:24:22 -07003project (bmc-webserver CXX)
4
Ed Tanous1e439872018-05-18 11:48:52 -07005cmake_policy (SET CMP0054 NEW)
Ed Tanouscfbe25d2017-05-23 16:34:35 -07006
Ed Tanous1e439872018-05-18 11:48:52 -07007set (CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})
Ed Tanous0fdddb12017-02-28 11:06:34 -08008
Ed Tanous1e439872018-05-18 11:48:52 -07009option (BUILD_STATIC_LIBS "Built static libraries" ON)
Ed Tanous911ac312017-08-15 09:37:42 -070010
Joseph Reynolds7a777f52018-11-07 22:01:31 -060011option (YOCTO_DEPENDENCIES "Use YOCTO dependencies system" OFF)
Ed Tanous0fdddb12017-02-28 11:06:34 -080012
James Feist41d1d182019-10-18 13:57:16 -070013option (
14 BMCWEB_ENABLE_KVM
15 "Enable the KVM host video WebSocket. Path is '/kvm/0'. Video is from the
16 BMC's '/dev/video' device."
17 ON
18)
19option (
20 BMCWEB_ENABLE_VM_WEBSOCKET
21 "Enable the Virtual Media WebSocket. Path is '/vm/0/0'to open the websocket.
22 See https://github.com/openbmc/jsnbd/blob/master/README."
23 ON
24)
25option (
Iwona Klimaszewskac0a1c8a2019-07-12 18:26:38 +020026 BMCWEB_ENABLE_VM_NBDPROXY
27 "Enable the Virtual Media WebSocket."
28 OFF
29)
30option (
James Feist41d1d182019-10-18 13:57:16 -070031 BMCWEB_ENABLE_DBUS_REST
32 "Enable Phosphor REST (D-Bus) APIs. Paths directly map Phosphor D-Bus
33 object paths, for example, '/xyz/openbmc_project/logging/entry/enumerate'.
34 See https://github.com/openbmc/docs/blob/master/rest-api.md."
35 ON
36)
37option (
38 BMCWEB_ENABLE_REDFISH
39 "Enable Redfish APIs. Paths are under '/redfish/v1/'. See
40 https://github.com/openbmc/bmcweb/blob/master/DEVELOPING.md#redfish."
41 ON
42)
43option (
44 BMCWEB_ENABLE_HOST_SERIAL_WEBSOCKET
45 "Enable host serial console WebSocket. Path is '/console0'. See
46 https://github.com/openbmc/docs/blob/master/console.md."
47 ON
48)
49option (
50 BMCWEB_ENABLE_STATIC_HOSTING
51 "Enable serving files from the '/usr/share/www' directory as paths under
52 '/'."
53 ON
54)
55option (
56 BMCWEB_ENABLE_REDFISH_BMC_JOURNAL
57 "Enable BMC journal access through Redfish. Paths are under
58 '/redfish/v1/Managers/bmc/LogServices/Journal'."
59 OFF
60)
61option (
62 BMCWEB_ENABLE_REDFISH_RAW_PECI
63 "Enable PECI transactions through Redfish. Paths are under
64 '/redfish/v1/Systems/system/LogServices/CpuLog/Actions/Oem/CpuLog.SendRawPeci'."
65 OFF
66)
67option (
68 BMCWEB_ENABLE_REDFISH_CPU_LOG
69 "Enable CPU log service transactions through Redfish. Paths are under
70 '/redfish/v1/Systems/system/LogServices/Crashdump'."
71 OFF
72)
73option (
Asmitha Karunanithi5cb1dd22020-05-07 04:35:02 -050074 BMCWEB_ENABLE_REDFISH_DUMP_LOG
75 "Enable BMC and System dump log service transactions through Redfish. For BMC dump, paths
76 are under '/redfish/v1/Managers/bmc/LogServices/Dump' and for System dump,
77 paths are under '/redfish/v1/Systems/system/LogServices/Dump'."
raviteja-bc9bb6862020-02-03 11:53:32 -060078 OFF
79)
80option (
James Feist41d1d182019-10-18 13:57:16 -070081 BMCWEB_ENABLE_REDFISH_DBUS_LOG_ENTRIES
82 "Enable DBUS log service transactions through Redfish. Paths are under
83 '/redfish/v1/Systems/system/LogServices/EventLog/Entries'."
84 OFF
85)
AppaRao Pulia6349912019-10-18 17:16:08 +053086option (
87 BMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE
88 "Enable provisioning feature support in redfish. Paths are under
89 '/redfish/v1/Systems/system/'."
90 OFF
91)
Kowalski, Kamil55e43f62019-07-10 13:12:57 +020092option (
93 BMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION
94 "Enables authenticating users through TLS client certificates.
95 The BMCWEB_INSECURE_DISABLE_SSL must be OFF for this option to take effect."
Zbigniew Kurzynskicac94c52019-11-07 12:55:04 +010096 ON
Kowalski, Kamil55e43f62019-07-10 13:12:57 +020097)
Ratan Gupta453fed02019-12-14 09:39:47 +053098option (
99 BMCWEB_ENABLE_IBM_MANAGEMENT_CONSOLE
100 "Enable the IBM management console specific functionality. Paths are under
101 '/ibm/v1/'."
102 OFF
103)
104
Ed Tanous1da66f72018-07-27 16:13:37 -0700105
Ed Tanousbdd1c832018-10-12 11:00:30 -0700106# Insecure options. Every option that starts with a BMCWEB_INSECURE flag should
Ed Tanous1e439872018-05-18 11:48:52 -0700107# not be enabled by default for any platform, unless the author fully
108# comprehends the implications of doing so. In general, enabling these options
109# will cause security problems of varying degrees
James Feist41d1d182019-10-18 13:57:16 -0700110option (
111 BMCWEB_INSECURE_DISABLE_CSRF_PREVENTION
112 "Disable CSRF prevention checks. Should be set to OFF for production
113 systems."
114 OFF
115)
Ed Tanousf3d847c2017-06-12 16:01:42 -0700116
James Feist41d1d182019-10-18 13:57:16 -0700117option (BMCWEB_INSECURE_DISABLE_SSL
118 "Disable SSL ports. Should be set to OFF for production systems." OFF)
Ed Tanous0fdddb12017-02-28 11:06:34 -0800119
James Feist41d1d182019-10-18 13:57:16 -0700120option (
121 BMCWEB_INSECURE_DISABLE_AUTHENTICATION
122 "Disable authentication on all ports. Should be set to OFF for production
123 systems"
124 OFF
125)
Ed Tanous0fdddb12017-02-28 11:06:34 -0800126
Ed Tanous1e439872018-05-18 11:48:52 -0700127option (BMCWEB_INSECURE_DISABLE_XSS_PREVENTION "Disable XSS preventions" OFF)
Ed Tanous0d485ef2017-05-23 09:23:53 -0700128
James Feist41d1d182019-10-18 13:57:16 -0700129option (
130 BMCWEB_INSECURE_ENABLE_REDFISH_FW_TFTP_UPDATE
131 "Enable TFTP based firmware update transactions through Redfish
132 UpdateService.SimpleUpdate."
133 OFF
134)
Andrew Geissler0554c982019-04-23 14:40:12 -0500135
jayaprakash Mutyala91e130a2020-03-04 22:26:38 +0000136option (
AppaRao Pulib52664e2020-04-09 21:36:51 +0530137 BMCWEB_INSECURE_ENABLE_HTTP_PUSH_STYLE_EVENTING
138 "Enable HTTP push style eventing feature" OFF
139)
140
141option (
jayaprakash Mutyala91e130a2020-03-04 22:26:38 +0000142 BMCWEB_ENABLE_VALIDATION_UNSECURE_FEATURE
143 "Enables unsecure features required by validation. Note: must
144 be turned off for production images."
145 OFF)
146
147option (
148 BMCWEB_INSECURE_UNRESTRICTED_SENSOR_OVERRIDE
149 "Enables Sensor override feature without any check."
150 OFF)
jayaprakash Mutyala70d1d0a2020-01-21 23:41:36 +0000151
Adriana Kobylak0e1cf262019-12-05 13:57:57 -0600152set (BMCWEB_HTTP_REQ_BODY_LIMIT_MB "30" CACHE STRING
153 "The max HTTP request body size in MB")
Kowalski, Kamil55e43f62019-07-10 13:12:57 +0200154
Adriana Kobylak0e1cf262019-12-05 13:57:57 -0600155configure_file(config.h.in ${CMAKE_CURRENT_SOURCE_DIR}/include/config.h)
Kowalski, Kamil55e43f62019-07-10 13:12:57 +0200156
157if (BMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION AND BMCWEB_INSECURE_DISABLE_SSL)
158 message("SSL Must be enabled to allow SSL authentication")
159 set(BMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION OFF)
160endif()
161
162
Ed Tanous1e439872018-05-18 11:48:52 -0700163include (CTest)
164
Ed Tanous62288742018-10-16 14:58:20 -0700165set (CMAKE_CXX_STANDARD 17)
Ed Tanous1e439872018-05-18 11:48:52 -0700166set (CMAKE_CXX_STANDARD_REQUIRED ON)
167
168set (CMAKE_EXPORT_COMPILE_COMMANDS ON)
169
Ed Tanousb01bf292019-03-25 19:25:26 +0000170set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS} -Wall")
Ed Tanous1e439872018-05-18 11:48:52 -0700171
Ed Tanous271584a2019-07-09 16:24:22 -0700172set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} \
173 -fno-rtti \
174")
175
James Feist41d1d182019-10-18 13:57:16 -0700176set (
177 CMAKE_CXX_FLAGS
178 "${CMAKE_CXX_FLAGS} \
Ed Tanousa9cbc9c2019-10-24 09:58:39 -0700179 -Wall \
180 -Wextra \
181 -Wnon-virtual-dtor \
182 -Wold-style-cast \
183 -Wcast-align \
184 -Wunused \
185 -Woverloaded-virtual \
186 -Wpedantic \
187 -Wconversion \
188 -Wsign-conversion \
189 -Wnull-dereference \
190 -Wdouble-promotion \
191 -Wformat=2 \
James Feist41d1d182019-10-18 13:57:16 -0700192"
193)
Ed Tanous271584a2019-07-09 16:24:22 -0700194
195# only set -Werror if we're on a compiler that we know passes
196if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
James Feist41d1d182019-10-18 13:57:16 -0700197 if (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 8.0)
198 set (
199 CMAKE_CXX_FLAGS
200 "${CMAKE_CXX_FLAGS} \
Ed Tanousa9cbc9c2019-10-24 09:58:39 -0700201 -Werror \
202 -Wduplicated-cond \
203 -Wduplicated-branches \
204 -Wlogical-op \
205 -Wnull-dereference \
206 -Wdouble-promotion \
207 -Wformat=2 \
Ed Tanouscb13a392020-07-25 19:02:03 +0000208 -Wunused-parameter \
James Feist41d1d182019-10-18 13:57:16 -0700209 "
210 )
211 endif (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 8.0)
Ed Tanous271584a2019-07-09 16:24:22 -0700212endif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
213
Ed Tanous23a21a12020-07-25 04:45:05 +0000214if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
215 if (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 9.0)
216 set (
217 CMAKE_CXX_FLAGS
218 "${CMAKE_CXX_FLAGS} \
219 -Werror \
220 -Weverything \
221 -Wno-c++98-compat \
222 -Wno-c++98-compat-pedantic \
223 -Wno-global-constructors \
224 -Wno-exit-time-destructors \
225 -Wno-shadow \
226 -Wno-used-but-marked-unused \
227 -Wno-documentation-unknown-command \
228 -Wno-weak-vtables \
229 -Wno-documentation \
230 -Wno-padded \
Ed Tanouscb13a392020-07-25 19:02:03 +0000231 -Wunused-parameter \
Ed Tanous23a21a12020-07-25 04:45:05 +0000232 -Wcovered-switch-default \
233 -Wcomma \
234 -Wextra-semi \
235 -Wzero-as-null-pointer-constant \
236 -Wswitch-enum \
237 -Wnull-dereference \
238 -Wdouble-promotion \
239 -Wformat=2 \
240 "
241 )
242 endif (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 8.0)
243endif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
Ed Tanous1e439872018-05-18 11:48:52 -0700244set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fno-rtti")
Ed Tanous3dac7492017-08-02 13:46:20 -0700245
Ed Tanous0fdddb12017-02-28 11:06:34 -0800246# general
Ed Tanous797d0c02018-08-07 10:22:35 -0700247option (BMCWEB_BUILD_UT "Enable Unit test" OFF)
Ed Tanous8041f312017-04-03 09:47:01 -0700248
Ed Tanous1ccd57c2017-03-21 13:15:58 -0700249# security flags
James Feist41d1d182019-10-18 13:57:16 -0700250set (
251 SECURITY_FLAGS
252 "-fstack-protector-strong \
Ed Tanous580f3722018-03-13 16:59:02 -0700253 -fPIE \
254 -fPIC \
255 -D_FORTIFY_SOURCE=2 \
256 -Wformat \
James Feist41d1d182019-10-18 13:57:16 -0700257 -Wformat-security"
Ed Tanousf0d73c22018-07-26 14:24:20 -0700258)
James Feist41d1d182019-10-18 13:57:16 -0700259set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} ${SECURITY_FLAGS}")
260set (CMAKE_CXX_FLAGS_RELWITHDEBINFO
261 "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} ${SECURITY_FLAGS}")
Ed Tanous1e439872018-05-18 11:48:52 -0700262set (CMAKE_C_FLAGS_MINSIZEREL "${CMAKE_C_FLAGS_MINSIZEREL} ${SECURITY_FLAGS}")
Ed Tanous3dac7492017-08-02 13:46:20 -0700263
Ed Tanous580f3722018-03-13 16:59:02 -0700264# Enable link time optimization This is a temporary workaround because
265# INTERPROCEDURAL_OPTIMIZATION isn't available until cmake 3.9. gcc-ar and gcc-
266# ranlib are wrappers around ar and ranlib which add the lto plugin to the
267# command line.
Ed Tanous1e439872018-05-18 11:48:52 -0700268if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
269 if (NOT CMAKE_BUILD_TYPE MATCHES Debug)
270 string (REGEX REPLACE "ar$" "gcc-ar" CMAKE_AR ${CMAKE_AR})
James Feist41d1d182019-10-18 13:57:16 -0700271 string (REGEX
272 REPLACE "ranlib$" "gcc-ranlib" CMAKE_RANLIB ${CMAKE_RANLIB})
Ed Tanous1e439872018-05-18 11:48:52 -0700273 set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -flto -fno-fat-lto-objects")
Borawski.Lukasz109799e2018-01-30 15:04:42 +0100274
Ed Tanous1e439872018-05-18 11:48:52 -0700275 # Reduce the binary size by removing unnecessary dynamic symbol table
276 # entries
James Feist41d1d182019-10-18 13:57:16 -0700277 set (
278 CMAKE_CXX_FLAGS
279 "${CMAKE_CXX_FLAGS} \
Ed Tanous580f3722018-03-13 16:59:02 -0700280 -fvisibility=hidden \
281 -fvisibility-inlines-hidden \
James Feist41d1d182019-10-18 13:57:16 -0700282 -Wl,--exclude-libs,ALL"
283 )
Ed Tanous1e439872018-05-18 11:48:52 -0700284 endif (NOT CMAKE_BUILD_TYPE MATCHES Debug)
285endif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
Borawski.Lukasz109799e2018-01-30 15:04:42 +0100286
Ed Tanous1e439872018-05-18 11:48:52 -0700287if (NOT ${YOCTO_DEPENDENCIES}) # Download and unpack googletest at configure
288 # time
289 configure_file (CMakeLists.txt.in 3rdparty/CMakeLists.txt)
James Feist41d1d182019-10-18 13:57:16 -0700290 execute_process (COMMAND ${CMAKE_COMMAND} -G "${CMAKE_GENERATOR}" .
291 WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/3rdparty)
292 execute_process (COMMAND ${CMAKE_COMMAND} --build .
293 WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/3rdparty)
Ed tanous7d95f5f2018-03-23 00:19:20 -0700294
Ed Tanous1e439872018-05-18 11:48:52 -0700295 set (CMAKE_PREFIX_PATH ${CMAKE_BINARY_DIR}/prefix ${CMAKE_PREFIX_PATH})
296endif ()
Ed tanous7d95f5f2018-03-23 00:19:20 -0700297
Manojkiran Edac6bfcfc2020-06-14 10:44:11 +0530298find_package (Boost 1.73 REQUIRED)
299message (BOOST_VERSION = ${Boost_VERSION})
Ed Tanous271584a2019-07-09 16:24:22 -0700300include_directories (SYSTEM ${BOOST_SRC_DIR})
301
Ed Tanous580f3722018-03-13 16:59:02 -0700302# add_definitions(-DBOOST_ASIO_ENABLE_HANDLER_TRACKING)
Ed Tanousd3a38062018-07-27 12:06:29 -0700303add_definitions (-DBOOST_ASIO_DISABLE_THREADS)
Ed Tanous39e77502019-03-04 17:35:53 -0800304add_definitions (-DBOOST_BEAST_USE_STD_STRING_VIEW)
Ed Tanous1e439872018-05-18 11:48:52 -0700305add_definitions (-DBOOST_ERROR_CODE_HEADER_ONLY)
306add_definitions (-DBOOST_SYSTEM_NO_DEPRECATED)
Manojkiran Edac6bfcfc2020-06-14 10:44:11 +0530307add_definitions (-DBOOST_ASIO_NO_DEPRECATED)
Ed Tanous1e439872018-05-18 11:48:52 -0700308add_definitions (-DBOOST_ALL_NO_LIB)
309add_definitions (-DBOOST_NO_RTTI)
310add_definitions (-DBOOST_NO_TYPEID)
Ed Tanousc85eb8b2018-10-16 14:59:20 -0700311add_definitions (-DBOOST_COROUTINES_NO_DEPRECATION_WARNING)
James Feist5a7e8772020-07-22 09:08:38 -0700312add_definitions (-DBOOST_URL_STANDALONE)
313add_definitions (-DBOOST_URL_HEADER_ONLY)
Ed tanous7d95f5f2018-03-23 00:19:20 -0700314
Ed Tanousaa2e59c2018-04-12 12:17:20 -0700315# sdbusplus
Ed Tanous1e439872018-05-18 11:48:52 -0700316if (NOT ${YOCTO_DEPENDENCIES})
Ed Tanous271584a2019-07-09 16:24:22 -0700317 include_directories (SYSTEM ${CMAKE_BINARY_DIR}/sdbusplus-src)
Patrick Williams3d833802020-06-01 07:14:39 -0500318 link_directories (${CMAKE_BINARY_DIR}/sdbusplus-src/build)
Ed Tanous1e439872018-05-18 11:48:52 -0700319endif ()
Ed Tanous0fdddb12017-02-28 11:06:34 -0800320
manojkiraneda4eaf2ee2019-12-13 17:10:41 +0530321# Its an Out of tree build,enabling ibm management console for
322# unit-test purpose.
323if (NOT ${YOCTO_DEPENDENCIES})
324 add_definitions(-DBMCWEB_ENABLE_IBM_MANAGEMENT_CONSOLE)
325endif(NOT ${YOCTO_DEPENDENCIES})
326
Ed Tanous580f3722018-03-13 16:59:02 -0700327# Openssl
Ed Tanous1e439872018-05-18 11:48:52 -0700328find_package (OpenSSL REQUIRED)
Ed Tanous271584a2019-07-09 16:24:22 -0700329include_directories (SYSTEM ${OPENSSL_INCLUDE_DIR})
Ed Tanous1e439872018-05-18 11:48:52 -0700330message ("OPENSSL_INCLUDE_DIR ${OPENSSL_INCLUDE_DIR}")
Ed Tanous0fdddb12017-02-28 11:06:34 -0800331
Ed Tanous55c7b7a2018-05-22 15:27:24 -0700332# bmcweb
Ed Tanous1e439872018-05-18 11:48:52 -0700333message ("CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}")
334if (CMAKE_BUILD_TYPE MATCHES Debug)
James Feistfaf1f432020-07-09 09:51:14 -0700335 message ("Logging enabled")
Ed Tanous55c7b7a2018-05-22 15:27:24 -0700336 add_definitions (-DBMCWEB_ENABLE_LOGGING)
337 add_definitions (-DBMCWEB_ENABLE_DEBUG)
Ed Tanous1e439872018-05-18 11:48:52 -0700338endif (CMAKE_BUILD_TYPE MATCHES Debug)
Ed Tanousaa2e59c2018-04-12 12:17:20 -0700339
Andrew Geissler1f2fbf22018-07-17 07:57:30 -0700340if (NOT "${BMCWEB_INSECURE_DISABLE_SSL}")
Ed Tanousa434f2b2018-07-27 13:04:22 -0700341 add_definitions (-DBMCWEB_ENABLE_SSL)
Andrew Geissler1f2fbf22018-07-17 07:57:30 -0700342endif (NOT "${BMCWEB_INSECURE_DISABLE_SSL}")
Ed Tanousc94ad492019-10-10 15:39:33 -0700343include_directories (${CMAKE_CURRENT_SOURCE_DIR}/http)
Ed Tanous0fdddb12017-02-28 11:06:34 -0800344
Ed Tanous580f3722018-03-13 16:59:02 -0700345# Zlib
Ed Tanous1e439872018-05-18 11:48:52 -0700346find_package (ZLIB REQUIRED)
Ed Tanous271584a2019-07-09 16:24:22 -0700347include_directories (SYSTEM ${ZLIB_INCLUDE_DIRS})
Ed Tanousf9273472017-02-28 16:05:13 -0800348
Ed Tanous4758d5b2017-06-06 15:28:13 -0700349# PAM
Ed Tanous1e439872018-05-18 11:48:52 -0700350option (WEBSERVER_ENABLE_PAM "enable pam authentication" ON)
351if ("${WEBSERVER_ENABLE_PAM}")
352 find_package (PAM REQUIRED)
353else ()
354 add_definitions ("-DWEBSERVER_DISABLE_PAM")
355endif ()
Ed Tanous911ac312017-08-15 09:37:42 -0700356
Ed Tanousf0d73c22018-07-26 14:24:20 -0700357add_definitions ("-Wno-attributes")
Jennifer Lee03346702018-05-23 14:05:20 -0700358# Copy pam-webserver to etc/pam.d
James Feist41d1d182019-10-18 13:57:16 -0700359install (FILES ${CMAKE_CURRENT_SOURCE_DIR}/pam-webserver DESTINATION /etc/pam.d/
360 RENAME webserver)
Ed Tanous5f34a9c2017-02-28 12:35:13 -0800361
Ed tanous7d95f5f2018-03-23 00:19:20 -0700362# tinyxml2
Ed Tanous1e439872018-05-18 11:48:52 -0700363find_package (tinyxml2 REQUIRED)
Ed tanous7d95f5f2018-03-23 00:19:20 -0700364
Ed Tanous1e439872018-05-18 11:48:52 -0700365set (WEBSERVER_MAIN src/webserver_main.cpp)
Ed Tanousb4d29f42017-03-24 16:39:25 -0700366
Ed Tanous1e439872018-05-18 11:48:52 -0700367include_directories (${CMAKE_CURRENT_SOURCE_DIR}/include)
368include_directories (${CMAKE_CURRENT_SOURCE_DIR}/redfish-core/include)
Przemyslaw Czarnowskie13c2762019-09-02 17:32:43 +0200369include_directories (${CMAKE_CURRENT_SOURCE_DIR}/redfish-core/lib)
Ed Tanousb4d29f42017-03-24 16:39:25 -0700370
Ed Tanous1e439872018-05-18 11:48:52 -0700371file (MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/include/bmcweb)
Ed Tanous1e439872018-05-18 11:48:52 -0700372include_directories (${CMAKE_BINARY_DIR}/include)
Ed Tanous5f34a9c2017-02-28 12:35:13 -0800373
James Feist41d1d182019-10-18 13:57:16 -0700374set (SRC_FILES redfish-core/src/error_messages.cpp
375 redfish-core/src/utils/json_utils.cpp ${GENERATED_SRC_FILES})
Ed Tanous93f987d2017-04-17 17:52:36 -0700376
Ed Tanous1e439872018-05-18 11:48:52 -0700377file (COPY src/test_resources DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
Ed Tanous911ac312017-08-15 09:37:42 -0700378
Ed Tanous38bdb982017-03-03 14:19:33 -0800379# Unit Tests
manojkiraneda4eaf2ee2019-12-13 17:10:41 +0530380if (NOT ${YOCTO_DEPENDENCIES})
381 set (UT_FILES src/gtest_main.cpp src/msan_test.cpp
James Feist41d1d182019-10-18 13:57:16 -0700382 redfish-core/ut/privileges_test.cpp
manojkiraneda4eaf2ee2019-12-13 17:10:41 +0530383 redfish-core/ut/lock_test.cpp
James Feist41d1d182019-10-18 13:57:16 -0700384 ${CMAKE_BINARY_DIR}/include/bmcweb/blns.hpp) # big list of naughty
385 # strings
386 add_custom_command (OUTPUT ${CMAKE_BINARY_DIR}/include/bmcweb/blns.hpp
387 COMMAND
388 xxd -i
389 ${CMAKE_CURRENT_SOURCE_DIR}/src/test_resources/blns
390 ${CMAKE_BINARY_DIR}/include/bmcweb/blns.hpp)
Ed Tanous1e439872018-05-18 11:48:52 -0700391
James Feist41d1d182019-10-18 13:57:16 -0700392 set_source_files_properties (${CMAKE_BINARY_DIR}/include/bmcweb/blns.hpp
393 PROPERTIES GENERATED TRUE)
Ed Tanous1e439872018-05-18 11:48:52 -0700394 enable_testing ()
395
396 add_executable (webtest ${SRC_FILES} ${UT_FILES})
397
398 find_package (GTest REQUIRED)
399 find_package (GMock REQUIRED)
400 target_link_libraries (webtest ${GTEST_LIBRARIES})
401 target_link_libraries (webtest ${GMOCK_LIBRARIES})
402
403 target_link_libraries (webtest pthread)
404 target_link_libraries (webtest ${OPENSSL_LIBRARIES})
405 target_link_libraries (webtest ${ZLIB_LIBRARIES})
406 target_link_libraries (webtest pam)
407 target_link_libraries (webtest tinyxml2)
Ed Tanousd425c6f2018-05-16 10:20:11 -0700408 target_link_libraries (webtest sdbusplus)
Ed Tanouse0625902018-05-16 13:35:08 -0700409 target_link_libraries (webtest -lsystemd)
Ed Tanous1e439872018-05-18 11:48:52 -0700410 target_link_libraries (webtest -lstdc++fs)
411 add_test (webtest webtest "--gtest_output=xml:webtest.xml")
412
manojkiraneda4eaf2ee2019-12-13 17:10:41 +0530413endif (NOT ${YOCTO_DEPENDENCIES})
Ed Tanous1e439872018-05-18 11:48:52 -0700414
415install (DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/static/ DESTINATION share/www)
416
417# bmcweb
418add_executable (bmcweb ${WEBSERVER_MAIN} ${HDR_FILES} ${SRC_FILES})
Ed Tanous1e439872018-05-18 11:48:52 -0700419target_link_libraries (bmcweb ${OPENSSL_LIBRARIES})
420target_link_libraries (bmcweb ${ZLIB_LIBRARIES})
421target_link_libraries (bmcweb pam)
Brad Bishop79ba46f2018-11-29 10:57:31 -0500422target_link_libraries (bmcweb -latomic)
Ed Tanous1e439872018-05-18 11:48:52 -0700423target_link_libraries (bmcweb -lsystemd)
424target_link_libraries (bmcweb -lstdc++fs)
Ed Tanousd425c6f2018-05-16 10:20:11 -0700425target_link_libraries (bmcweb sdbusplus)
Ed Tanous1e439872018-05-18 11:48:52 -0700426target_link_libraries (bmcweb tinyxml2)
427install (TARGETS bmcweb DESTINATION bin)
428
Jason M. Billsc50fc5a2018-11-14 14:49:59 -0800429target_compile_definitions (
James Feist41d1d182019-10-18 13:57:16 -0700430 bmcweb PRIVATE $<$<BOOL:${BMCWEB_ENABLE_KVM}>: -DBMCWEB_ENABLE_KVM>
Kowalski, Kamil55e43f62019-07-10 13:12:57 +0200431 $<$<BOOL:${BMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION}>: -DBMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION>
Adriana Kobylak1bfbe0e2019-01-17 12:08:38 -0600432 $<$<BOOL:${BMCWEB_ENABLE_VM_WEBSOCKET}>: -DBMCWEB_ENABLE_VM_WEBSOCKET>
Iwona Klimaszewskac0a1c8a2019-07-12 18:26:38 +0200433 $<$<BOOL:${BMCWEB_ENABLE_VM_NBDPROXY}>: -DBMCWEB_ENABLE_VM_NBDPROXY>
Jason M. Billsc50fc5a2018-11-14 14:49:59 -0800434 $<$<BOOL:${BMCWEB_ENABLE_DBUS_REST}>: -DBMCWEB_ENABLE_DBUS_REST>
435 $<$<BOOL:${BMCWEB_ENABLE_REDFISH}>: -DBMCWEB_ENABLE_REDFISH>
436 $<$<BOOL:${BMCWEB_ENABLE_STATIC_HOSTING}>: -DBMCWEB_ENABLE_STATIC_HOSTING>
James Feist41d1d182019-10-18 13:57:16 -0700437 $<$<BOOL:${BMCWEB_ENABLE_HOST_SERIAL_WEBSOCKET}>:
438 -DBMCWEB_ENABLE_HOST_SERIAL_WEBSOCKET>
439 $<$<BOOL:${BMCWEB_INSECURE_DISABLE_CSRF_PREVENTION}>:
440 -DBMCWEB_INSECURE_DISABLE_CSRF_PREVENTION>
Jason M. Billsc50fc5a2018-11-14 14:49:59 -0800441 $<$<BOOL:${BMCWEB_INSECURE_DISABLE_SSL}>: -DBMCWEB_INSECURE_DISABLE_SSL>
James Feist41d1d182019-10-18 13:57:16 -0700442 $<$<BOOL:${BMCWEB_INSECURE_DISABLE_XSS_PREVENTION}>:
443 -DBMCWEB_INSECURE_DISABLE_XSS_PREVENTION>
444 $<$<BOOL:${BMCWEB_ENABLE_REDFISH_RAW_PECI}>:
445 -DBMCWEB_ENABLE_REDFISH_RAW_PECI>
446 $<$<BOOL:${BMCWEB_ENABLE_REDFISH_CPU_LOG}>:
447 -DBMCWEB_ENABLE_REDFISH_CPU_LOG>
Asmitha Karunanithi5cb1dd22020-05-07 04:35:02 -0500448 $<$<BOOL:${BMCWEB_ENABLE_REDFISH_DUMP_LOG}>:
449 -DBMCWEB_ENABLE_REDFISH_DUMP_LOG>
James Feist41d1d182019-10-18 13:57:16 -0700450 $<$<BOOL:${BMCWEB_ENABLE_REDFISH_BMC_JOURNAL}>:
451 -DBMCWEB_ENABLE_REDFISH_BMC_JOURNAL>
452 $<$<BOOL:${BMCWEB_ENABLE_REDFISH_DBUS_LOG_ENTRIES}>:
453 -DBMCWEB_ENABLE_REDFISH_DBUS_LOG_ENTRIES>
454 $<$<BOOL:${BMCWEB_INSECURE_ENABLE_REDFISH_FW_TFTP_UPDATE}>:
455 -DBMCWEB_INSECURE_ENABLE_REDFISH_FW_TFTP_UPDATE>
AppaRao Pulia6349912019-10-18 17:16:08 +0530456 $<$<BOOL:${BMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE}>:
457 -DBMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE>
jayaprakash Mutyala70d1d0a2020-01-21 23:41:36 +0000458 $<$<BOOL:${BMCWEB_ENABLE_VALIDATION_UNSECURE_FEATURE}>:
459 -DBMCWEB_ENABLE_VALIDATION_UNSECURE_FEATURE>
jayaprakash Mutyala91e130a2020-03-04 22:26:38 +0000460 $<$<BOOL:${BMCWEB_INSECURE_UNRESTRICTED_SENSOR_OVERRIDE}>:
461 -DBMCWEB_INSECURE_UNRESTRICTED_SENSOR_OVERRIDE>
Ratan Gupta453fed02019-12-14 09:39:47 +0530462 $<$<BOOL:${BMCWEB_ENABLE_IBM_MANAGEMENT_CONSOLE}>:
463 -DBMCWEB_ENABLE_IBM_MANAGEMENT_CONSOLE>
AppaRao Pulib52664e2020-04-09 21:36:51 +0530464 $<$<BOOL:${BMCWEB_INSECURE_ENABLE_HTTP_PUSH_STYLE_EVENTING}>:
465 -DBMCWEB_INSECURE_ENABLE_HTTP_PUSH_STYLE_EVENTING>
Brad Bishopf5e906b2018-11-29 10:55:10 -0500466)
Brad Bishop5a7094b2019-04-10 19:33:15 -0400467
468# configure and install systemd unit files
469configure_file (bmcweb.socket bmcweb.socket COPYONLY)
470configure_file (bmcweb.service.in bmcweb.service)
471pkg_get_variable (SYSTEMD_SYSTEMUNITDIR systemd systemdsystemunitdir)
James Feist41d1d182019-10-18 13:57:16 -0700472install (FILES ${PROJECT_BINARY_DIR}/bmcweb.socket DESTINATION
473 ${SYSTEMD_SYSTEMUNITDIR})
474install (FILES ${PROJECT_BINARY_DIR}/bmcweb.service DESTINATION
475 ${SYSTEMD_SYSTEMUNITDIR})