blob: 98ccb2834b7996ac863ca2e21b2bfebbe91ec146 [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 \
Manojkiran Edaac293232020-09-01 10:07:41 +0530212 -Wno-stringop-overflow \
Ed Tanouscb13a392020-07-25 19:02:03 +0000213 -Wunused-parameter \
James Feist41d1d182019-10-18 13:57:16 -0700214 "
215 )
216 endif (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 8.0)
Ed Tanous271584a2019-07-09 16:24:22 -0700217endif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
218
Ed Tanous23a21a12020-07-25 04:45:05 +0000219if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
220 if (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 9.0)
221 set (
222 CMAKE_CXX_FLAGS
223 "${CMAKE_CXX_FLAGS} \
224 -Werror \
225 -Weverything \
226 -Wno-c++98-compat \
227 -Wno-c++98-compat-pedantic \
228 -Wno-global-constructors \
229 -Wno-exit-time-destructors \
230 -Wno-shadow \
231 -Wno-used-but-marked-unused \
232 -Wno-documentation-unknown-command \
233 -Wno-weak-vtables \
234 -Wno-documentation \
235 -Wno-padded \
Ed Tanouscb13a392020-07-25 19:02:03 +0000236 -Wunused-parameter \
Ed Tanous23a21a12020-07-25 04:45:05 +0000237 -Wcovered-switch-default \
238 -Wcomma \
239 -Wextra-semi \
240 -Wzero-as-null-pointer-constant \
241 -Wswitch-enum \
242 -Wnull-dereference \
243 -Wdouble-promotion \
244 -Wformat=2 \
245 "
246 )
Manojkiran Eda3fcb12d2020-08-25 23:04:03 +0530247 endif (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 9.0)
248endif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
Ed Tanous1e439872018-05-18 11:48:52 -0700249set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fno-rtti")
Ed Tanous3dac7492017-08-02 13:46:20 -0700250
Ed Tanous0fdddb12017-02-28 11:06:34 -0800251# general
Ed Tanous797d0c02018-08-07 10:22:35 -0700252option (BMCWEB_BUILD_UT "Enable Unit test" OFF)
Ed Tanous8041f312017-04-03 09:47:01 -0700253
Ed Tanous1ccd57c2017-03-21 13:15:58 -0700254# security flags
James Feist41d1d182019-10-18 13:57:16 -0700255set (
256 SECURITY_FLAGS
257 "-fstack-protector-strong \
Ed Tanous580f3722018-03-13 16:59:02 -0700258 -fPIE \
259 -fPIC \
260 -D_FORTIFY_SOURCE=2 \
261 -Wformat \
James Feist41d1d182019-10-18 13:57:16 -0700262 -Wformat-security"
Ed Tanousf0d73c22018-07-26 14:24:20 -0700263)
James Feist41d1d182019-10-18 13:57:16 -0700264set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} ${SECURITY_FLAGS}")
265set (CMAKE_CXX_FLAGS_RELWITHDEBINFO
266 "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} ${SECURITY_FLAGS}")
Ed Tanous1e439872018-05-18 11:48:52 -0700267set (CMAKE_C_FLAGS_MINSIZEREL "${CMAKE_C_FLAGS_MINSIZEREL} ${SECURITY_FLAGS}")
Ed Tanous3dac7492017-08-02 13:46:20 -0700268
Ed Tanous580f3722018-03-13 16:59:02 -0700269# Enable link time optimization This is a temporary workaround because
270# INTERPROCEDURAL_OPTIMIZATION isn't available until cmake 3.9. gcc-ar and gcc-
271# ranlib are wrappers around ar and ranlib which add the lto plugin to the
272# command line.
Ed Tanous1e439872018-05-18 11:48:52 -0700273if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
274 if (NOT CMAKE_BUILD_TYPE MATCHES Debug)
275 string (REGEX REPLACE "ar$" "gcc-ar" CMAKE_AR ${CMAKE_AR})
James Feist41d1d182019-10-18 13:57:16 -0700276 string (REGEX
277 REPLACE "ranlib$" "gcc-ranlib" CMAKE_RANLIB ${CMAKE_RANLIB})
Ed Tanous1e439872018-05-18 11:48:52 -0700278 set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -flto -fno-fat-lto-objects")
Borawski.Lukasz109799e2018-01-30 15:04:42 +0100279
Ed Tanous1e439872018-05-18 11:48:52 -0700280 # Reduce the binary size by removing unnecessary dynamic symbol table
281 # entries
James Feist41d1d182019-10-18 13:57:16 -0700282 set (
283 CMAKE_CXX_FLAGS
284 "${CMAKE_CXX_FLAGS} \
Ed Tanous580f3722018-03-13 16:59:02 -0700285 -fvisibility=hidden \
286 -fvisibility-inlines-hidden \
James Feist41d1d182019-10-18 13:57:16 -0700287 -Wl,--exclude-libs,ALL"
288 )
Ed Tanous1e439872018-05-18 11:48:52 -0700289 endif (NOT CMAKE_BUILD_TYPE MATCHES Debug)
290endif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
Borawski.Lukasz109799e2018-01-30 15:04:42 +0100291
Ed Tanous1e439872018-05-18 11:48:52 -0700292if (NOT ${YOCTO_DEPENDENCIES}) # Download and unpack googletest at configure
293 # time
294 configure_file (CMakeLists.txt.in 3rdparty/CMakeLists.txt)
James Feist41d1d182019-10-18 13:57:16 -0700295 execute_process (COMMAND ${CMAKE_COMMAND} -G "${CMAKE_GENERATOR}" .
296 WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/3rdparty)
297 execute_process (COMMAND ${CMAKE_COMMAND} --build .
298 WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/3rdparty)
Ed tanous7d95f5f2018-03-23 00:19:20 -0700299
Ed Tanous1e439872018-05-18 11:48:52 -0700300 set (CMAKE_PREFIX_PATH ${CMAKE_BINARY_DIR}/prefix ${CMAKE_PREFIX_PATH})
301endif ()
Ed tanous7d95f5f2018-03-23 00:19:20 -0700302
Manojkiran Edac6bfcfc2020-06-14 10:44:11 +0530303find_package (Boost 1.73 REQUIRED)
304message (BOOST_VERSION = ${Boost_VERSION})
Ed Tanous271584a2019-07-09 16:24:22 -0700305include_directories (SYSTEM ${BOOST_SRC_DIR})
306
Ed Tanous580f3722018-03-13 16:59:02 -0700307# add_definitions(-DBOOST_ASIO_ENABLE_HANDLER_TRACKING)
Ed Tanousd4d77e32020-08-18 00:07:28 -0700308add_definitions (-DBOOST_ASIO_USE_TS_EXECUTOR_AS_DEFAULT)
Ed Tanousd3a38062018-07-27 12:06:29 -0700309add_definitions (-DBOOST_ASIO_DISABLE_THREADS)
Ed Tanous39e77502019-03-04 17:35:53 -0800310add_definitions (-DBOOST_BEAST_USE_STD_STRING_VIEW)
Ed Tanous1e439872018-05-18 11:48:52 -0700311add_definitions (-DBOOST_ERROR_CODE_HEADER_ONLY)
312add_definitions (-DBOOST_SYSTEM_NO_DEPRECATED)
Manojkiran Edac6bfcfc2020-06-14 10:44:11 +0530313add_definitions (-DBOOST_ASIO_NO_DEPRECATED)
Ed Tanous1e439872018-05-18 11:48:52 -0700314add_definitions (-DBOOST_ALL_NO_LIB)
315add_definitions (-DBOOST_NO_RTTI)
316add_definitions (-DBOOST_NO_TYPEID)
Ed Tanousc85eb8b2018-10-16 14:59:20 -0700317add_definitions (-DBOOST_COROUTINES_NO_DEPRECATION_WARNING)
James Feist5a7e8772020-07-22 09:08:38 -0700318add_definitions (-DBOOST_URL_STANDALONE)
319add_definitions (-DBOOST_URL_HEADER_ONLY)
Ed tanous7d95f5f2018-03-23 00:19:20 -0700320
Ed Tanousaa2e59c2018-04-12 12:17:20 -0700321# sdbusplus
Ed Tanous1e439872018-05-18 11:48:52 -0700322if (NOT ${YOCTO_DEPENDENCIES})
Ed Tanous271584a2019-07-09 16:24:22 -0700323 include_directories (SYSTEM ${CMAKE_BINARY_DIR}/sdbusplus-src)
Patrick Williams3d833802020-06-01 07:14:39 -0500324 link_directories (${CMAKE_BINARY_DIR}/sdbusplus-src/build)
Ed Tanous1e439872018-05-18 11:48:52 -0700325endif ()
Ed Tanous0fdddb12017-02-28 11:06:34 -0800326
manojkiraneda4eaf2ee2019-12-13 17:10:41 +0530327# Its an Out of tree build,enabling ibm management console for
328# unit-test purpose.
329if (NOT ${YOCTO_DEPENDENCIES})
330 add_definitions(-DBMCWEB_ENABLE_IBM_MANAGEMENT_CONSOLE)
331endif(NOT ${YOCTO_DEPENDENCIES})
332
Ed Tanous580f3722018-03-13 16:59:02 -0700333# Openssl
Ed Tanous1e439872018-05-18 11:48:52 -0700334find_package (OpenSSL REQUIRED)
Ed Tanous271584a2019-07-09 16:24:22 -0700335include_directories (SYSTEM ${OPENSSL_INCLUDE_DIR})
Ed Tanous1e439872018-05-18 11:48:52 -0700336message ("OPENSSL_INCLUDE_DIR ${OPENSSL_INCLUDE_DIR}")
Ed Tanous0fdddb12017-02-28 11:06:34 -0800337
Ed Tanous55c7b7a2018-05-22 15:27:24 -0700338# bmcweb
Ed Tanous1e439872018-05-18 11:48:52 -0700339message ("CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}")
340if (CMAKE_BUILD_TYPE MATCHES Debug)
Igor Kononenko3d2b2c02020-08-28 17:49:16 +0300341 set(BMCWEB_ENABLE_LOGGING ON)
Ed Tanous1e439872018-05-18 11:48:52 -0700342endif (CMAKE_BUILD_TYPE MATCHES Debug)
Ed Tanousaa2e59c2018-04-12 12:17:20 -0700343
Andrew Geissler1f2fbf22018-07-17 07:57:30 -0700344if (NOT "${BMCWEB_INSECURE_DISABLE_SSL}")
Ed Tanousa434f2b2018-07-27 13:04:22 -0700345 add_definitions (-DBMCWEB_ENABLE_SSL)
Andrew Geissler1f2fbf22018-07-17 07:57:30 -0700346endif (NOT "${BMCWEB_INSECURE_DISABLE_SSL}")
Ed Tanousc94ad492019-10-10 15:39:33 -0700347include_directories (${CMAKE_CURRENT_SOURCE_DIR}/http)
Ed Tanous0fdddb12017-02-28 11:06:34 -0800348
Igor Kononenko3d2b2c02020-08-28 17:49:16 +0300349# Build with the extended debug logs output
350if (${BMCWEB_ENABLE_LOGGING})
351 message ("Logging enabled")
352 add_definitions (-DBMCWEB_ENABLE_DEBUG)
353 add_definitions (-DBMCWEB_ENABLE_LOGGING)
354endif(${BMCWEB_ENABLE_LOGGING})
355
Ed Tanous580f3722018-03-13 16:59:02 -0700356# Zlib
Ed Tanous1e439872018-05-18 11:48:52 -0700357find_package (ZLIB REQUIRED)
Ed Tanous271584a2019-07-09 16:24:22 -0700358include_directories (SYSTEM ${ZLIB_INCLUDE_DIRS})
Ed Tanousf9273472017-02-28 16:05:13 -0800359
Ed Tanous4758d5b2017-06-06 15:28:13 -0700360# PAM
Ed Tanous1e439872018-05-18 11:48:52 -0700361option (WEBSERVER_ENABLE_PAM "enable pam authentication" ON)
362if ("${WEBSERVER_ENABLE_PAM}")
363 find_package (PAM REQUIRED)
364else ()
365 add_definitions ("-DWEBSERVER_DISABLE_PAM")
366endif ()
Ed Tanous911ac312017-08-15 09:37:42 -0700367
Ed Tanousf0d73c22018-07-26 14:24:20 -0700368add_definitions ("-Wno-attributes")
Jennifer Lee03346702018-05-23 14:05:20 -0700369# Copy pam-webserver to etc/pam.d
James Feist41d1d182019-10-18 13:57:16 -0700370install (FILES ${CMAKE_CURRENT_SOURCE_DIR}/pam-webserver DESTINATION /etc/pam.d/
371 RENAME webserver)
Ed Tanous5f34a9c2017-02-28 12:35:13 -0800372
Ed tanous7d95f5f2018-03-23 00:19:20 -0700373# tinyxml2
Ed Tanous1e439872018-05-18 11:48:52 -0700374find_package (tinyxml2 REQUIRED)
Ed tanous7d95f5f2018-03-23 00:19:20 -0700375
Ed Tanous1e439872018-05-18 11:48:52 -0700376set (WEBSERVER_MAIN src/webserver_main.cpp)
Ed Tanousb4d29f42017-03-24 16:39:25 -0700377
Ed Tanous1e439872018-05-18 11:48:52 -0700378include_directories (${CMAKE_CURRENT_SOURCE_DIR}/include)
379include_directories (${CMAKE_CURRENT_SOURCE_DIR}/redfish-core/include)
Przemyslaw Czarnowskie13c2762019-09-02 17:32:43 +0200380include_directories (${CMAKE_CURRENT_SOURCE_DIR}/redfish-core/lib)
Ed Tanousb4d29f42017-03-24 16:39:25 -0700381
Ed Tanous1e439872018-05-18 11:48:52 -0700382file (MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/include/bmcweb)
Ed Tanous1e439872018-05-18 11:48:52 -0700383include_directories (${CMAKE_BINARY_DIR}/include)
Ed Tanous5f34a9c2017-02-28 12:35:13 -0800384
James Feist41d1d182019-10-18 13:57:16 -0700385set (SRC_FILES redfish-core/src/error_messages.cpp
386 redfish-core/src/utils/json_utils.cpp ${GENERATED_SRC_FILES})
Ed Tanous93f987d2017-04-17 17:52:36 -0700387
Ed Tanous1e439872018-05-18 11:48:52 -0700388file (COPY src/test_resources DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
Ed Tanous911ac312017-08-15 09:37:42 -0700389
Ed Tanous38bdb982017-03-03 14:19:33 -0800390# Unit Tests
manojkiraneda4eaf2ee2019-12-13 17:10:41 +0530391if (NOT ${YOCTO_DEPENDENCIES})
392 set (UT_FILES src/gtest_main.cpp src/msan_test.cpp
James Feist41d1d182019-10-18 13:57:16 -0700393 redfish-core/ut/privileges_test.cpp
manojkiraneda4eaf2ee2019-12-13 17:10:41 +0530394 redfish-core/ut/lock_test.cpp
Jonathan Doman5beaf842020-08-14 11:23:33 -0700395 http/ut/utility_test.cpp
James Feist41d1d182019-10-18 13:57:16 -0700396 ${CMAKE_BINARY_DIR}/include/bmcweb/blns.hpp) # big list of naughty
397 # strings
398 add_custom_command (OUTPUT ${CMAKE_BINARY_DIR}/include/bmcweb/blns.hpp
399 COMMAND
400 xxd -i
401 ${CMAKE_CURRENT_SOURCE_DIR}/src/test_resources/blns
402 ${CMAKE_BINARY_DIR}/include/bmcweb/blns.hpp)
Ed Tanous1e439872018-05-18 11:48:52 -0700403
James Feist41d1d182019-10-18 13:57:16 -0700404 set_source_files_properties (${CMAKE_BINARY_DIR}/include/bmcweb/blns.hpp
405 PROPERTIES GENERATED TRUE)
Ed Tanous1e439872018-05-18 11:48:52 -0700406 enable_testing ()
407
408 add_executable (webtest ${SRC_FILES} ${UT_FILES})
409
410 find_package (GTest REQUIRED)
411 find_package (GMock REQUIRED)
412 target_link_libraries (webtest ${GTEST_LIBRARIES})
413 target_link_libraries (webtest ${GMOCK_LIBRARIES})
414
415 target_link_libraries (webtest pthread)
416 target_link_libraries (webtest ${OPENSSL_LIBRARIES})
417 target_link_libraries (webtest ${ZLIB_LIBRARIES})
418 target_link_libraries (webtest pam)
419 target_link_libraries (webtest tinyxml2)
Ed Tanousd425c6f2018-05-16 10:20:11 -0700420 target_link_libraries (webtest sdbusplus)
Ed Tanouse0625902018-05-16 13:35:08 -0700421 target_link_libraries (webtest -lsystemd)
Ed Tanous1e439872018-05-18 11:48:52 -0700422 target_link_libraries (webtest -lstdc++fs)
423 add_test (webtest webtest "--gtest_output=xml:webtest.xml")
424
manojkiraneda4eaf2ee2019-12-13 17:10:41 +0530425endif (NOT ${YOCTO_DEPENDENCIES})
Ed Tanous1e439872018-05-18 11:48:52 -0700426
427install (DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/static/ DESTINATION share/www)
428
429# bmcweb
430add_executable (bmcweb ${WEBSERVER_MAIN} ${HDR_FILES} ${SRC_FILES})
Ed Tanous1e439872018-05-18 11:48:52 -0700431target_link_libraries (bmcweb ${OPENSSL_LIBRARIES})
432target_link_libraries (bmcweb ${ZLIB_LIBRARIES})
433target_link_libraries (bmcweb pam)
Brad Bishop79ba46f2018-11-29 10:57:31 -0500434target_link_libraries (bmcweb -latomic)
Ed Tanous1e439872018-05-18 11:48:52 -0700435target_link_libraries (bmcweb -lsystemd)
436target_link_libraries (bmcweb -lstdc++fs)
Ed Tanousd425c6f2018-05-16 10:20:11 -0700437target_link_libraries (bmcweb sdbusplus)
Ed Tanous1e439872018-05-18 11:48:52 -0700438target_link_libraries (bmcweb tinyxml2)
439install (TARGETS bmcweb DESTINATION bin)
440
Jason M. Billsc50fc5a2018-11-14 14:49:59 -0800441target_compile_definitions (
James Feist41d1d182019-10-18 13:57:16 -0700442 bmcweb PRIVATE $<$<BOOL:${BMCWEB_ENABLE_KVM}>: -DBMCWEB_ENABLE_KVM>
Kowalski, Kamil55e43f62019-07-10 13:12:57 +0200443 $<$<BOOL:${BMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION}>: -DBMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION>
Adriana Kobylak1bfbe0e2019-01-17 12:08:38 -0600444 $<$<BOOL:${BMCWEB_ENABLE_VM_WEBSOCKET}>: -DBMCWEB_ENABLE_VM_WEBSOCKET>
Iwona Klimaszewskac0a1c8a2019-07-12 18:26:38 +0200445 $<$<BOOL:${BMCWEB_ENABLE_VM_NBDPROXY}>: -DBMCWEB_ENABLE_VM_NBDPROXY>
Jason M. Billsc50fc5a2018-11-14 14:49:59 -0800446 $<$<BOOL:${BMCWEB_ENABLE_DBUS_REST}>: -DBMCWEB_ENABLE_DBUS_REST>
447 $<$<BOOL:${BMCWEB_ENABLE_REDFISH}>: -DBMCWEB_ENABLE_REDFISH>
448 $<$<BOOL:${BMCWEB_ENABLE_STATIC_HOSTING}>: -DBMCWEB_ENABLE_STATIC_HOSTING>
James Feist41d1d182019-10-18 13:57:16 -0700449 $<$<BOOL:${BMCWEB_ENABLE_HOST_SERIAL_WEBSOCKET}>:
450 -DBMCWEB_ENABLE_HOST_SERIAL_WEBSOCKET>
451 $<$<BOOL:${BMCWEB_INSECURE_DISABLE_CSRF_PREVENTION}>:
452 -DBMCWEB_INSECURE_DISABLE_CSRF_PREVENTION>
Jason M. Billsc50fc5a2018-11-14 14:49:59 -0800453 $<$<BOOL:${BMCWEB_INSECURE_DISABLE_SSL}>: -DBMCWEB_INSECURE_DISABLE_SSL>
James Feist41d1d182019-10-18 13:57:16 -0700454 $<$<BOOL:${BMCWEB_INSECURE_DISABLE_XSS_PREVENTION}>:
455 -DBMCWEB_INSECURE_DISABLE_XSS_PREVENTION>
456 $<$<BOOL:${BMCWEB_ENABLE_REDFISH_RAW_PECI}>:
457 -DBMCWEB_ENABLE_REDFISH_RAW_PECI>
458 $<$<BOOL:${BMCWEB_ENABLE_REDFISH_CPU_LOG}>:
459 -DBMCWEB_ENABLE_REDFISH_CPU_LOG>
Asmitha Karunanithi5cb1dd22020-05-07 04:35:02 -0500460 $<$<BOOL:${BMCWEB_ENABLE_REDFISH_DUMP_LOG}>:
461 -DBMCWEB_ENABLE_REDFISH_DUMP_LOG>
James Feist41d1d182019-10-18 13:57:16 -0700462 $<$<BOOL:${BMCWEB_ENABLE_REDFISH_BMC_JOURNAL}>:
463 -DBMCWEB_ENABLE_REDFISH_BMC_JOURNAL>
464 $<$<BOOL:${BMCWEB_ENABLE_REDFISH_DBUS_LOG_ENTRIES}>:
465 -DBMCWEB_ENABLE_REDFISH_DBUS_LOG_ENTRIES>
466 $<$<BOOL:${BMCWEB_INSECURE_ENABLE_REDFISH_FW_TFTP_UPDATE}>:
467 -DBMCWEB_INSECURE_ENABLE_REDFISH_FW_TFTP_UPDATE>
AppaRao Pulia6349912019-10-18 17:16:08 +0530468 $<$<BOOL:${BMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE}>:
469 -DBMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE>
jayaprakash Mutyala70d1d0a2020-01-21 23:41:36 +0000470 $<$<BOOL:${BMCWEB_ENABLE_VALIDATION_UNSECURE_FEATURE}>:
471 -DBMCWEB_ENABLE_VALIDATION_UNSECURE_FEATURE>
jayaprakash Mutyala91e130a2020-03-04 22:26:38 +0000472 $<$<BOOL:${BMCWEB_INSECURE_UNRESTRICTED_SENSOR_OVERRIDE}>:
473 -DBMCWEB_INSECURE_UNRESTRICTED_SENSOR_OVERRIDE>
Ratan Gupta453fed02019-12-14 09:39:47 +0530474 $<$<BOOL:${BMCWEB_ENABLE_IBM_MANAGEMENT_CONSOLE}>:
475 -DBMCWEB_ENABLE_IBM_MANAGEMENT_CONSOLE>
AppaRao Pulib52664e2020-04-09 21:36:51 +0530476 $<$<BOOL:${BMCWEB_INSECURE_ENABLE_HTTP_PUSH_STYLE_EVENTING}>:
477 -DBMCWEB_INSECURE_ENABLE_HTTP_PUSH_STYLE_EVENTING>
Brad Bishopf5e906b2018-11-29 10:55:10 -0500478)
Brad Bishop5a7094b2019-04-10 19:33:15 -0400479
480# configure and install systemd unit files
481configure_file (bmcweb.socket bmcweb.socket COPYONLY)
482configure_file (bmcweb.service.in bmcweb.service)
483pkg_get_variable (SYSTEMD_SYSTEMUNITDIR systemd systemdsystemunitdir)
James Feist41d1d182019-10-18 13:57:16 -0700484install (FILES ${PROJECT_BINARY_DIR}/bmcweb.socket DESTINATION
485 ${SYSTEMD_SYSTEMUNITDIR})
486install (FILES ${PROJECT_BINARY_DIR}/bmcweb.service DESTINATION
487 ${SYSTEMD_SYSTEMUNITDIR})