blob: caecd04b95af4bf2e099c8f665ca2a046783bc6f [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 (
Igor Kononenko3d2b2c02020-08-28 17:49:16 +030093 BMCWEB_ENABLE_LOGGING
94 "Enable output the extended debug logs"
95 OFF
96)
97option (
Kowalski, Kamil55e43f62019-07-10 13:12:57 +020098 BMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION
99 "Enables authenticating users through TLS client certificates.
100 The BMCWEB_INSECURE_DISABLE_SSL must be OFF for this option to take effect."
Zbigniew Kurzynskicac94c52019-11-07 12:55:04 +0100101 ON
Kowalski, Kamil55e43f62019-07-10 13:12:57 +0200102)
Ratan Gupta453fed02019-12-14 09:39:47 +0530103option (
104 BMCWEB_ENABLE_IBM_MANAGEMENT_CONSOLE
105 "Enable the IBM management console specific functionality. Paths are under
106 '/ibm/v1/'."
107 OFF
108)
109
Ed Tanous1da66f72018-07-27 16:13:37 -0700110
Ed Tanousbdd1c832018-10-12 11:00:30 -0700111# Insecure options. Every option that starts with a BMCWEB_INSECURE flag should
Ed Tanous1e439872018-05-18 11:48:52 -0700112# not be enabled by default for any platform, unless the author fully
113# comprehends the implications of doing so. In general, enabling these options
114# will cause security problems of varying degrees
James Feist41d1d182019-10-18 13:57:16 -0700115option (
116 BMCWEB_INSECURE_DISABLE_CSRF_PREVENTION
117 "Disable CSRF prevention checks. Should be set to OFF for production
118 systems."
119 OFF
120)
Ed Tanousf3d847c2017-06-12 16:01:42 -0700121
James Feist41d1d182019-10-18 13:57:16 -0700122option (BMCWEB_INSECURE_DISABLE_SSL
123 "Disable SSL ports. Should be set to OFF for production systems." OFF)
Ed Tanous0fdddb12017-02-28 11:06:34 -0800124
James Feist41d1d182019-10-18 13:57:16 -0700125option (
126 BMCWEB_INSECURE_DISABLE_AUTHENTICATION
127 "Disable authentication on all ports. Should be set to OFF for production
128 systems"
129 OFF
130)
Ed Tanous0fdddb12017-02-28 11:06:34 -0800131
Ed Tanous1e439872018-05-18 11:48:52 -0700132option (BMCWEB_INSECURE_DISABLE_XSS_PREVENTION "Disable XSS preventions" OFF)
Ed Tanous0d485ef2017-05-23 09:23:53 -0700133
James Feist41d1d182019-10-18 13:57:16 -0700134option (
135 BMCWEB_INSECURE_ENABLE_REDFISH_FW_TFTP_UPDATE
136 "Enable TFTP based firmware update transactions through Redfish
137 UpdateService.SimpleUpdate."
138 OFF
139)
Andrew Geissler0554c982019-04-23 14:40:12 -0500140
jayaprakash Mutyala91e130a2020-03-04 22:26:38 +0000141option (
AppaRao Pulib52664e2020-04-09 21:36:51 +0530142 BMCWEB_INSECURE_ENABLE_HTTP_PUSH_STYLE_EVENTING
143 "Enable HTTP push style eventing feature" OFF
144)
145
146option (
jayaprakash Mutyala91e130a2020-03-04 22:26:38 +0000147 BMCWEB_ENABLE_VALIDATION_UNSECURE_FEATURE
148 "Enables unsecure features required by validation. Note: must
149 be turned off for production images."
150 OFF)
151
152option (
153 BMCWEB_INSECURE_UNRESTRICTED_SENSOR_OVERRIDE
154 "Enables Sensor override feature without any check."
155 OFF)
jayaprakash Mutyala70d1d0a2020-01-21 23:41:36 +0000156
Adriana Kobylak0e1cf262019-12-05 13:57:57 -0600157set (BMCWEB_HTTP_REQ_BODY_LIMIT_MB "30" CACHE STRING
158 "The max HTTP request body size in MB")
Kowalski, Kamil55e43f62019-07-10 13:12:57 +0200159
Adriana Kobylak0e1cf262019-12-05 13:57:57 -0600160configure_file(config.h.in ${CMAKE_CURRENT_SOURCE_DIR}/include/config.h)
Kowalski, Kamil55e43f62019-07-10 13:12:57 +0200161
162if (BMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION AND BMCWEB_INSECURE_DISABLE_SSL)
163 message("SSL Must be enabled to allow SSL authentication")
164 set(BMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION OFF)
165endif()
166
167
Ed Tanous1e439872018-05-18 11:48:52 -0700168include (CTest)
169
Ed Tanous62288742018-10-16 14:58:20 -0700170set (CMAKE_CXX_STANDARD 17)
Ed Tanous1e439872018-05-18 11:48:52 -0700171set (CMAKE_CXX_STANDARD_REQUIRED ON)
172
173set (CMAKE_EXPORT_COMPILE_COMMANDS ON)
174
Ed Tanousb01bf292019-03-25 19:25:26 +0000175set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS} -Wall")
Ed Tanous1e439872018-05-18 11:48:52 -0700176
Ed Tanousd4d77e32020-08-18 00:07:28 -0700177# reenable when https://github.com/chriskohlhoff/asio/issues/533
178# is resolved. ASIO default executor doesn't build with no-rtti
179#set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} \
180# -fno-rtti \
181#")
Ed Tanous271584a2019-07-09 16:24:22 -0700182
James Feist41d1d182019-10-18 13:57:16 -0700183set (
184 CMAKE_CXX_FLAGS
185 "${CMAKE_CXX_FLAGS} \
Ed Tanousa9cbc9c2019-10-24 09:58:39 -0700186 -Wall \
187 -Wextra \
188 -Wnon-virtual-dtor \
189 -Wold-style-cast \
190 -Wcast-align \
191 -Wunused \
192 -Woverloaded-virtual \
193 -Wpedantic \
194 -Wconversion \
195 -Wsign-conversion \
James Feist41d1d182019-10-18 13:57:16 -0700196"
197)
Ed Tanous271584a2019-07-09 16:24:22 -0700198
199# only set -Werror if we're on a compiler that we know passes
200if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
James Feist41d1d182019-10-18 13:57:16 -0700201 if (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 8.0)
202 set (
203 CMAKE_CXX_FLAGS
204 "${CMAKE_CXX_FLAGS} \
Ed Tanousa9cbc9c2019-10-24 09:58:39 -0700205 -Werror \
206 -Wduplicated-cond \
207 -Wduplicated-branches \
208 -Wlogical-op \
209 -Wnull-dereference \
210 -Wdouble-promotion \
211 -Wformat=2 \
Ed Tanouscb13a392020-07-25 19:02:03 +0000212 -Wunused-parameter \
James Feist41d1d182019-10-18 13:57:16 -0700213 "
214 )
215 endif (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 8.0)
Ed Tanous271584a2019-07-09 16:24:22 -0700216endif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
217
Ed Tanous23a21a12020-07-25 04:45:05 +0000218if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
219 if (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 9.0)
220 set (
221 CMAKE_CXX_FLAGS
222 "${CMAKE_CXX_FLAGS} \
223 -Werror \
224 -Weverything \
225 -Wno-c++98-compat \
226 -Wno-c++98-compat-pedantic \
227 -Wno-global-constructors \
228 -Wno-exit-time-destructors \
229 -Wno-shadow \
230 -Wno-used-but-marked-unused \
231 -Wno-documentation-unknown-command \
232 -Wno-weak-vtables \
233 -Wno-documentation \
234 -Wno-padded \
Ed Tanouscb13a392020-07-25 19:02:03 +0000235 -Wunused-parameter \
Ed Tanous23a21a12020-07-25 04:45:05 +0000236 -Wcovered-switch-default \
237 -Wcomma \
238 -Wextra-semi \
239 -Wzero-as-null-pointer-constant \
240 -Wswitch-enum \
241 -Wnull-dereference \
242 -Wdouble-promotion \
243 -Wformat=2 \
244 "
245 )
Manojkiran Eda3fcb12d2020-08-25 23:04:03 +0530246 endif (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 9.0)
247endif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
Ed Tanous1e439872018-05-18 11:48:52 -0700248set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fno-rtti")
Ed Tanous3dac7492017-08-02 13:46:20 -0700249
Ed Tanous0fdddb12017-02-28 11:06:34 -0800250# general
Ed Tanous797d0c02018-08-07 10:22:35 -0700251option (BMCWEB_BUILD_UT "Enable Unit test" OFF)
Ed Tanous8041f312017-04-03 09:47:01 -0700252
Ed Tanous1ccd57c2017-03-21 13:15:58 -0700253# security flags
James Feist41d1d182019-10-18 13:57:16 -0700254set (
255 SECURITY_FLAGS
256 "-fstack-protector-strong \
Ed Tanous580f3722018-03-13 16:59:02 -0700257 -fPIE \
258 -fPIC \
259 -D_FORTIFY_SOURCE=2 \
260 -Wformat \
James Feist41d1d182019-10-18 13:57:16 -0700261 -Wformat-security"
Ed Tanousf0d73c22018-07-26 14:24:20 -0700262)
James Feist41d1d182019-10-18 13:57:16 -0700263set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} ${SECURITY_FLAGS}")
264set (CMAKE_CXX_FLAGS_RELWITHDEBINFO
265 "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} ${SECURITY_FLAGS}")
Ed Tanous1e439872018-05-18 11:48:52 -0700266set (CMAKE_C_FLAGS_MINSIZEREL "${CMAKE_C_FLAGS_MINSIZEREL} ${SECURITY_FLAGS}")
Ed Tanous3dac7492017-08-02 13:46:20 -0700267
Ed Tanous580f3722018-03-13 16:59:02 -0700268# Enable link time optimization This is a temporary workaround because
269# INTERPROCEDURAL_OPTIMIZATION isn't available until cmake 3.9. gcc-ar and gcc-
270# ranlib are wrappers around ar and ranlib which add the lto plugin to the
271# command line.
Ed Tanous1e439872018-05-18 11:48:52 -0700272if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
273 if (NOT CMAKE_BUILD_TYPE MATCHES Debug)
274 string (REGEX REPLACE "ar$" "gcc-ar" CMAKE_AR ${CMAKE_AR})
James Feist41d1d182019-10-18 13:57:16 -0700275 string (REGEX
276 REPLACE "ranlib$" "gcc-ranlib" CMAKE_RANLIB ${CMAKE_RANLIB})
Ed Tanous1e439872018-05-18 11:48:52 -0700277 set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -flto -fno-fat-lto-objects")
Borawski.Lukasz109799e2018-01-30 15:04:42 +0100278
Ed Tanous1e439872018-05-18 11:48:52 -0700279 # Reduce the binary size by removing unnecessary dynamic symbol table
280 # entries
James Feist41d1d182019-10-18 13:57:16 -0700281 set (
282 CMAKE_CXX_FLAGS
283 "${CMAKE_CXX_FLAGS} \
Ed Tanous580f3722018-03-13 16:59:02 -0700284 -fvisibility=hidden \
285 -fvisibility-inlines-hidden \
James Feist41d1d182019-10-18 13:57:16 -0700286 -Wl,--exclude-libs,ALL"
287 )
Ed Tanous1e439872018-05-18 11:48:52 -0700288 endif (NOT CMAKE_BUILD_TYPE MATCHES Debug)
289endif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
Borawski.Lukasz109799e2018-01-30 15:04:42 +0100290
Ed Tanous1e439872018-05-18 11:48:52 -0700291if (NOT ${YOCTO_DEPENDENCIES}) # Download and unpack googletest at configure
292 # time
293 configure_file (CMakeLists.txt.in 3rdparty/CMakeLists.txt)
James Feist41d1d182019-10-18 13:57:16 -0700294 execute_process (COMMAND ${CMAKE_COMMAND} -G "${CMAKE_GENERATOR}" .
295 WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/3rdparty)
296 execute_process (COMMAND ${CMAKE_COMMAND} --build .
297 WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/3rdparty)
Ed tanous7d95f5f2018-03-23 00:19:20 -0700298
Ed Tanous1e439872018-05-18 11:48:52 -0700299 set (CMAKE_PREFIX_PATH ${CMAKE_BINARY_DIR}/prefix ${CMAKE_PREFIX_PATH})
300endif ()
Ed tanous7d95f5f2018-03-23 00:19:20 -0700301
Manojkiran Edac6bfcfc2020-06-14 10:44:11 +0530302find_package (Boost 1.73 REQUIRED)
303message (BOOST_VERSION = ${Boost_VERSION})
Ed Tanous271584a2019-07-09 16:24:22 -0700304include_directories (SYSTEM ${BOOST_SRC_DIR})
305
Ed Tanous580f3722018-03-13 16:59:02 -0700306# add_definitions(-DBOOST_ASIO_ENABLE_HANDLER_TRACKING)
Ed Tanousd4d77e32020-08-18 00:07:28 -0700307add_definitions (-DBOOST_ASIO_USE_TS_EXECUTOR_AS_DEFAULT)
Ed Tanousd3a38062018-07-27 12:06:29 -0700308add_definitions (-DBOOST_ASIO_DISABLE_THREADS)
Ed Tanous39e77502019-03-04 17:35:53 -0800309add_definitions (-DBOOST_BEAST_USE_STD_STRING_VIEW)
Ed Tanous1e439872018-05-18 11:48:52 -0700310add_definitions (-DBOOST_ERROR_CODE_HEADER_ONLY)
311add_definitions (-DBOOST_SYSTEM_NO_DEPRECATED)
Manojkiran Edac6bfcfc2020-06-14 10:44:11 +0530312add_definitions (-DBOOST_ASIO_NO_DEPRECATED)
Ed Tanous1e439872018-05-18 11:48:52 -0700313add_definitions (-DBOOST_ALL_NO_LIB)
314add_definitions (-DBOOST_NO_RTTI)
315add_definitions (-DBOOST_NO_TYPEID)
Ed Tanousc85eb8b2018-10-16 14:59:20 -0700316add_definitions (-DBOOST_COROUTINES_NO_DEPRECATION_WARNING)
James Feist5a7e8772020-07-22 09:08:38 -0700317add_definitions (-DBOOST_URL_STANDALONE)
318add_definitions (-DBOOST_URL_HEADER_ONLY)
Ed tanous7d95f5f2018-03-23 00:19:20 -0700319
Ed Tanousaa2e59c2018-04-12 12:17:20 -0700320# sdbusplus
Ed Tanous1e439872018-05-18 11:48:52 -0700321if (NOT ${YOCTO_DEPENDENCIES})
Ed Tanous271584a2019-07-09 16:24:22 -0700322 include_directories (SYSTEM ${CMAKE_BINARY_DIR}/sdbusplus-src)
Patrick Williams3d833802020-06-01 07:14:39 -0500323 link_directories (${CMAKE_BINARY_DIR}/sdbusplus-src/build)
Ed Tanous1e439872018-05-18 11:48:52 -0700324endif ()
Ed Tanous0fdddb12017-02-28 11:06:34 -0800325
manojkiraneda4eaf2ee2019-12-13 17:10:41 +0530326# Its an Out of tree build,enabling ibm management console for
327# unit-test purpose.
328if (NOT ${YOCTO_DEPENDENCIES})
329 add_definitions(-DBMCWEB_ENABLE_IBM_MANAGEMENT_CONSOLE)
330endif(NOT ${YOCTO_DEPENDENCIES})
331
Ed Tanous580f3722018-03-13 16:59:02 -0700332# Openssl
Ed Tanous1e439872018-05-18 11:48:52 -0700333find_package (OpenSSL REQUIRED)
Ed Tanous271584a2019-07-09 16:24:22 -0700334include_directories (SYSTEM ${OPENSSL_INCLUDE_DIR})
Ed Tanous1e439872018-05-18 11:48:52 -0700335message ("OPENSSL_INCLUDE_DIR ${OPENSSL_INCLUDE_DIR}")
Ed Tanous0fdddb12017-02-28 11:06:34 -0800336
Ed Tanous55c7b7a2018-05-22 15:27:24 -0700337# bmcweb
Ed Tanous1e439872018-05-18 11:48:52 -0700338message ("CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}")
339if (CMAKE_BUILD_TYPE MATCHES Debug)
Igor Kononenko3d2b2c02020-08-28 17:49:16 +0300340 set(BMCWEB_ENABLE_LOGGING ON)
Ed Tanous1e439872018-05-18 11:48:52 -0700341endif (CMAKE_BUILD_TYPE MATCHES Debug)
Ed Tanousaa2e59c2018-04-12 12:17:20 -0700342
Andrew Geissler1f2fbf22018-07-17 07:57:30 -0700343if (NOT "${BMCWEB_INSECURE_DISABLE_SSL}")
Ed Tanousa434f2b2018-07-27 13:04:22 -0700344 add_definitions (-DBMCWEB_ENABLE_SSL)
Andrew Geissler1f2fbf22018-07-17 07:57:30 -0700345endif (NOT "${BMCWEB_INSECURE_DISABLE_SSL}")
Ed Tanousc94ad492019-10-10 15:39:33 -0700346include_directories (${CMAKE_CURRENT_SOURCE_DIR}/http)
Ed Tanous0fdddb12017-02-28 11:06:34 -0800347
Igor Kononenko3d2b2c02020-08-28 17:49:16 +0300348# Build with the extended debug logs output
349if (${BMCWEB_ENABLE_LOGGING})
350 message ("Logging enabled")
351 add_definitions (-DBMCWEB_ENABLE_DEBUG)
352 add_definitions (-DBMCWEB_ENABLE_LOGGING)
353endif(${BMCWEB_ENABLE_LOGGING})
354
Ed Tanous580f3722018-03-13 16:59:02 -0700355# Zlib
Ed Tanous1e439872018-05-18 11:48:52 -0700356find_package (ZLIB REQUIRED)
Ed Tanous271584a2019-07-09 16:24:22 -0700357include_directories (SYSTEM ${ZLIB_INCLUDE_DIRS})
Ed Tanousf9273472017-02-28 16:05:13 -0800358
Ed Tanous4758d5b2017-06-06 15:28:13 -0700359# PAM
Ed Tanous1e439872018-05-18 11:48:52 -0700360option (WEBSERVER_ENABLE_PAM "enable pam authentication" ON)
361if ("${WEBSERVER_ENABLE_PAM}")
362 find_package (PAM REQUIRED)
363else ()
364 add_definitions ("-DWEBSERVER_DISABLE_PAM")
365endif ()
Ed Tanous911ac312017-08-15 09:37:42 -0700366
Ed Tanousf0d73c22018-07-26 14:24:20 -0700367add_definitions ("-Wno-attributes")
Jennifer Lee03346702018-05-23 14:05:20 -0700368# Copy pam-webserver to etc/pam.d
James Feist41d1d182019-10-18 13:57:16 -0700369install (FILES ${CMAKE_CURRENT_SOURCE_DIR}/pam-webserver DESTINATION /etc/pam.d/
370 RENAME webserver)
Ed Tanous5f34a9c2017-02-28 12:35:13 -0800371
Ed tanous7d95f5f2018-03-23 00:19:20 -0700372# tinyxml2
Ed Tanous1e439872018-05-18 11:48:52 -0700373find_package (tinyxml2 REQUIRED)
Ed tanous7d95f5f2018-03-23 00:19:20 -0700374
Ed Tanous1e439872018-05-18 11:48:52 -0700375set (WEBSERVER_MAIN src/webserver_main.cpp)
Ed Tanousb4d29f42017-03-24 16:39:25 -0700376
Ed Tanous1e439872018-05-18 11:48:52 -0700377include_directories (${CMAKE_CURRENT_SOURCE_DIR}/include)
378include_directories (${CMAKE_CURRENT_SOURCE_DIR}/redfish-core/include)
Przemyslaw Czarnowskie13c2762019-09-02 17:32:43 +0200379include_directories (${CMAKE_CURRENT_SOURCE_DIR}/redfish-core/lib)
Ed Tanousb4d29f42017-03-24 16:39:25 -0700380
Ed Tanous1e439872018-05-18 11:48:52 -0700381file (MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/include/bmcweb)
Ed Tanous1e439872018-05-18 11:48:52 -0700382include_directories (${CMAKE_BINARY_DIR}/include)
Ed Tanous5f34a9c2017-02-28 12:35:13 -0800383
James Feist41d1d182019-10-18 13:57:16 -0700384set (SRC_FILES redfish-core/src/error_messages.cpp
385 redfish-core/src/utils/json_utils.cpp ${GENERATED_SRC_FILES})
Ed Tanous93f987d2017-04-17 17:52:36 -0700386
Ed Tanous1e439872018-05-18 11:48:52 -0700387file (COPY src/test_resources DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
Ed Tanous911ac312017-08-15 09:37:42 -0700388
Ed Tanous38bdb982017-03-03 14:19:33 -0800389# Unit Tests
manojkiraneda4eaf2ee2019-12-13 17:10:41 +0530390if (NOT ${YOCTO_DEPENDENCIES})
391 set (UT_FILES src/gtest_main.cpp src/msan_test.cpp
James Feist41d1d182019-10-18 13:57:16 -0700392 redfish-core/ut/privileges_test.cpp
manojkiraneda4eaf2ee2019-12-13 17:10:41 +0530393 redfish-core/ut/lock_test.cpp
Jonathan Doman5beaf842020-08-14 11:23:33 -0700394 http/ut/utility_test.cpp
James Feist41d1d182019-10-18 13:57:16 -0700395 ${CMAKE_BINARY_DIR}/include/bmcweb/blns.hpp) # big list of naughty
396 # strings
397 add_custom_command (OUTPUT ${CMAKE_BINARY_DIR}/include/bmcweb/blns.hpp
398 COMMAND
399 xxd -i
400 ${CMAKE_CURRENT_SOURCE_DIR}/src/test_resources/blns
401 ${CMAKE_BINARY_DIR}/include/bmcweb/blns.hpp)
Ed Tanous1e439872018-05-18 11:48:52 -0700402
James Feist41d1d182019-10-18 13:57:16 -0700403 set_source_files_properties (${CMAKE_BINARY_DIR}/include/bmcweb/blns.hpp
404 PROPERTIES GENERATED TRUE)
Ed Tanous1e439872018-05-18 11:48:52 -0700405 enable_testing ()
406
407 add_executable (webtest ${SRC_FILES} ${UT_FILES})
408
409 find_package (GTest REQUIRED)
410 find_package (GMock REQUIRED)
411 target_link_libraries (webtest ${GTEST_LIBRARIES})
412 target_link_libraries (webtest ${GMOCK_LIBRARIES})
413
414 target_link_libraries (webtest pthread)
415 target_link_libraries (webtest ${OPENSSL_LIBRARIES})
416 target_link_libraries (webtest ${ZLIB_LIBRARIES})
417 target_link_libraries (webtest pam)
418 target_link_libraries (webtest tinyxml2)
Ed Tanousd425c6f2018-05-16 10:20:11 -0700419 target_link_libraries (webtest sdbusplus)
Ed Tanouse0625902018-05-16 13:35:08 -0700420 target_link_libraries (webtest -lsystemd)
Ed Tanous1e439872018-05-18 11:48:52 -0700421 target_link_libraries (webtest -lstdc++fs)
422 add_test (webtest webtest "--gtest_output=xml:webtest.xml")
423
manojkiraneda4eaf2ee2019-12-13 17:10:41 +0530424endif (NOT ${YOCTO_DEPENDENCIES})
Ed Tanous1e439872018-05-18 11:48:52 -0700425
426install (DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/static/ DESTINATION share/www)
427
428# bmcweb
429add_executable (bmcweb ${WEBSERVER_MAIN} ${HDR_FILES} ${SRC_FILES})
Ed Tanous1e439872018-05-18 11:48:52 -0700430target_link_libraries (bmcweb ${OPENSSL_LIBRARIES})
431target_link_libraries (bmcweb ${ZLIB_LIBRARIES})
432target_link_libraries (bmcweb pam)
Brad Bishop79ba46f2018-11-29 10:57:31 -0500433target_link_libraries (bmcweb -latomic)
Ed Tanous1e439872018-05-18 11:48:52 -0700434target_link_libraries (bmcweb -lsystemd)
435target_link_libraries (bmcweb -lstdc++fs)
Ed Tanousd425c6f2018-05-16 10:20:11 -0700436target_link_libraries (bmcweb sdbusplus)
Ed Tanous1e439872018-05-18 11:48:52 -0700437target_link_libraries (bmcweb tinyxml2)
438install (TARGETS bmcweb DESTINATION bin)
439
Jason M. Billsc50fc5a2018-11-14 14:49:59 -0800440target_compile_definitions (
James Feist41d1d182019-10-18 13:57:16 -0700441 bmcweb PRIVATE $<$<BOOL:${BMCWEB_ENABLE_KVM}>: -DBMCWEB_ENABLE_KVM>
Kowalski, Kamil55e43f62019-07-10 13:12:57 +0200442 $<$<BOOL:${BMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION}>: -DBMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION>
Adriana Kobylak1bfbe0e2019-01-17 12:08:38 -0600443 $<$<BOOL:${BMCWEB_ENABLE_VM_WEBSOCKET}>: -DBMCWEB_ENABLE_VM_WEBSOCKET>
Iwona Klimaszewskac0a1c8a2019-07-12 18:26:38 +0200444 $<$<BOOL:${BMCWEB_ENABLE_VM_NBDPROXY}>: -DBMCWEB_ENABLE_VM_NBDPROXY>
Jason M. Billsc50fc5a2018-11-14 14:49:59 -0800445 $<$<BOOL:${BMCWEB_ENABLE_DBUS_REST}>: -DBMCWEB_ENABLE_DBUS_REST>
446 $<$<BOOL:${BMCWEB_ENABLE_REDFISH}>: -DBMCWEB_ENABLE_REDFISH>
447 $<$<BOOL:${BMCWEB_ENABLE_STATIC_HOSTING}>: -DBMCWEB_ENABLE_STATIC_HOSTING>
James Feist41d1d182019-10-18 13:57:16 -0700448 $<$<BOOL:${BMCWEB_ENABLE_HOST_SERIAL_WEBSOCKET}>:
449 -DBMCWEB_ENABLE_HOST_SERIAL_WEBSOCKET>
450 $<$<BOOL:${BMCWEB_INSECURE_DISABLE_CSRF_PREVENTION}>:
451 -DBMCWEB_INSECURE_DISABLE_CSRF_PREVENTION>
Jason M. Billsc50fc5a2018-11-14 14:49:59 -0800452 $<$<BOOL:${BMCWEB_INSECURE_DISABLE_SSL}>: -DBMCWEB_INSECURE_DISABLE_SSL>
James Feist41d1d182019-10-18 13:57:16 -0700453 $<$<BOOL:${BMCWEB_INSECURE_DISABLE_XSS_PREVENTION}>:
454 -DBMCWEB_INSECURE_DISABLE_XSS_PREVENTION>
455 $<$<BOOL:${BMCWEB_ENABLE_REDFISH_RAW_PECI}>:
456 -DBMCWEB_ENABLE_REDFISH_RAW_PECI>
457 $<$<BOOL:${BMCWEB_ENABLE_REDFISH_CPU_LOG}>:
458 -DBMCWEB_ENABLE_REDFISH_CPU_LOG>
Asmitha Karunanithi5cb1dd22020-05-07 04:35:02 -0500459 $<$<BOOL:${BMCWEB_ENABLE_REDFISH_DUMP_LOG}>:
460 -DBMCWEB_ENABLE_REDFISH_DUMP_LOG>
James Feist41d1d182019-10-18 13:57:16 -0700461 $<$<BOOL:${BMCWEB_ENABLE_REDFISH_BMC_JOURNAL}>:
462 -DBMCWEB_ENABLE_REDFISH_BMC_JOURNAL>
463 $<$<BOOL:${BMCWEB_ENABLE_REDFISH_DBUS_LOG_ENTRIES}>:
464 -DBMCWEB_ENABLE_REDFISH_DBUS_LOG_ENTRIES>
465 $<$<BOOL:${BMCWEB_INSECURE_ENABLE_REDFISH_FW_TFTP_UPDATE}>:
466 -DBMCWEB_INSECURE_ENABLE_REDFISH_FW_TFTP_UPDATE>
AppaRao Pulia6349912019-10-18 17:16:08 +0530467 $<$<BOOL:${BMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE}>:
468 -DBMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE>
jayaprakash Mutyala70d1d0a2020-01-21 23:41:36 +0000469 $<$<BOOL:${BMCWEB_ENABLE_VALIDATION_UNSECURE_FEATURE}>:
470 -DBMCWEB_ENABLE_VALIDATION_UNSECURE_FEATURE>
jayaprakash Mutyala91e130a2020-03-04 22:26:38 +0000471 $<$<BOOL:${BMCWEB_INSECURE_UNRESTRICTED_SENSOR_OVERRIDE}>:
472 -DBMCWEB_INSECURE_UNRESTRICTED_SENSOR_OVERRIDE>
Ratan Gupta453fed02019-12-14 09:39:47 +0530473 $<$<BOOL:${BMCWEB_ENABLE_IBM_MANAGEMENT_CONSOLE}>:
474 -DBMCWEB_ENABLE_IBM_MANAGEMENT_CONSOLE>
AppaRao Pulib52664e2020-04-09 21:36:51 +0530475 $<$<BOOL:${BMCWEB_INSECURE_ENABLE_HTTP_PUSH_STYLE_EVENTING}>:
476 -DBMCWEB_INSECURE_ENABLE_HTTP_PUSH_STYLE_EVENTING>
Brad Bishopf5e906b2018-11-29 10:55:10 -0500477)
Brad Bishop5a7094b2019-04-10 19:33:15 -0400478
479# configure and install systemd unit files
480configure_file (bmcweb.socket bmcweb.socket COPYONLY)
481configure_file (bmcweb.service.in bmcweb.service)
482pkg_get_variable (SYSTEMD_SYSTEMUNITDIR systemd systemdsystemunitdir)
James Feist41d1d182019-10-18 13:57:16 -0700483install (FILES ${PROJECT_BINARY_DIR}/bmcweb.socket DESTINATION
484 ${SYSTEMD_SYSTEMUNITDIR})
485install (FILES ${PROJECT_BINARY_DIR}/bmcweb.service DESTINATION
486 ${SYSTEMD_SYSTEMUNITDIR})