Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 1 | cmake_minimum_required (VERSION 3.5 FATAL_ERROR) |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 2 | |
Ed Tanous | 271584a | 2019-07-09 16:24:22 -0700 | [diff] [blame] | 3 | project (bmc-webserver CXX) |
| 4 | |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 5 | cmake_policy (SET CMP0054 NEW) |
Ed Tanous | cfbe25d | 2017-05-23 16:34:35 -0700 | [diff] [blame] | 6 | |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 7 | set (CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH}) |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 8 | |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 9 | option (BUILD_STATIC_LIBS "Built static libraries" ON) |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 10 | |
Joseph Reynolds | 7a777f5 | 2018-11-07 22:01:31 -0600 | [diff] [blame] | 11 | option (YOCTO_DEPENDENCIES "Use YOCTO dependencies system" OFF) |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 12 | |
James Feist | 41d1d18 | 2019-10-18 13:57:16 -0700 | [diff] [blame] | 13 | option ( |
| 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 | ) |
| 19 | option ( |
| 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 | ) |
| 25 | option ( |
| 26 | BMCWEB_ENABLE_DBUS_REST |
| 27 | "Enable Phosphor REST (D-Bus) APIs. Paths directly map Phosphor D-Bus |
| 28 | object paths, for example, '/xyz/openbmc_project/logging/entry/enumerate'. |
| 29 | See https://github.com/openbmc/docs/blob/master/rest-api.md." |
| 30 | ON |
| 31 | ) |
| 32 | option ( |
| 33 | BMCWEB_ENABLE_REDFISH |
| 34 | "Enable Redfish APIs. Paths are under '/redfish/v1/'. See |
| 35 | https://github.com/openbmc/bmcweb/blob/master/DEVELOPING.md#redfish." |
| 36 | ON |
| 37 | ) |
| 38 | option ( |
| 39 | BMCWEB_ENABLE_HOST_SERIAL_WEBSOCKET |
| 40 | "Enable host serial console WebSocket. Path is '/console0'. See |
| 41 | https://github.com/openbmc/docs/blob/master/console.md." |
| 42 | ON |
| 43 | ) |
| 44 | option ( |
| 45 | BMCWEB_ENABLE_STATIC_HOSTING |
| 46 | "Enable serving files from the '/usr/share/www' directory as paths under |
| 47 | '/'." |
| 48 | ON |
| 49 | ) |
| 50 | option ( |
| 51 | BMCWEB_ENABLE_REDFISH_BMC_JOURNAL |
| 52 | "Enable BMC journal access through Redfish. Paths are under |
| 53 | '/redfish/v1/Managers/bmc/LogServices/Journal'." |
| 54 | OFF |
| 55 | ) |
| 56 | option ( |
| 57 | BMCWEB_ENABLE_REDFISH_RAW_PECI |
| 58 | "Enable PECI transactions through Redfish. Paths are under |
| 59 | '/redfish/v1/Systems/system/LogServices/CpuLog/Actions/Oem/CpuLog.SendRawPeci'." |
| 60 | OFF |
| 61 | ) |
| 62 | option ( |
| 63 | BMCWEB_ENABLE_REDFISH_CPU_LOG |
| 64 | "Enable CPU log service transactions through Redfish. Paths are under |
| 65 | '/redfish/v1/Systems/system/LogServices/Crashdump'." |
| 66 | OFF |
| 67 | ) |
| 68 | option ( |
| 69 | BMCWEB_ENABLE_REDFISH_DBUS_LOG_ENTRIES |
| 70 | "Enable DBUS log service transactions through Redfish. Paths are under |
| 71 | '/redfish/v1/Systems/system/LogServices/EventLog/Entries'." |
| 72 | OFF |
| 73 | ) |
AppaRao Puli | a634991 | 2019-10-18 17:16:08 +0530 | [diff] [blame^] | 74 | option ( |
| 75 | BMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE |
| 76 | "Enable provisioning feature support in redfish. Paths are under |
| 77 | '/redfish/v1/Systems/system/'." |
| 78 | OFF |
| 79 | ) |
Ed Tanous | 1da66f7 | 2018-07-27 16:13:37 -0700 | [diff] [blame] | 80 | |
Ed Tanous | bdd1c83 | 2018-10-12 11:00:30 -0700 | [diff] [blame] | 81 | # Insecure options. Every option that starts with a BMCWEB_INSECURE flag should |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 82 | # not be enabled by default for any platform, unless the author fully |
| 83 | # comprehends the implications of doing so. In general, enabling these options |
| 84 | # will cause security problems of varying degrees |
James Feist | 41d1d18 | 2019-10-18 13:57:16 -0700 | [diff] [blame] | 85 | option ( |
| 86 | BMCWEB_INSECURE_DISABLE_CSRF_PREVENTION |
| 87 | "Disable CSRF prevention checks. Should be set to OFF for production |
| 88 | systems." |
| 89 | OFF |
| 90 | ) |
Ed Tanous | f3d847c | 2017-06-12 16:01:42 -0700 | [diff] [blame] | 91 | |
James Feist | 41d1d18 | 2019-10-18 13:57:16 -0700 | [diff] [blame] | 92 | option (BMCWEB_INSECURE_DISABLE_SSL |
| 93 | "Disable SSL ports. Should be set to OFF for production systems." OFF) |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 94 | |
James Feist | 41d1d18 | 2019-10-18 13:57:16 -0700 | [diff] [blame] | 95 | option ( |
| 96 | BMCWEB_INSECURE_DISABLE_AUTHENTICATION |
| 97 | "Disable authentication on all ports. Should be set to OFF for production |
| 98 | systems" |
| 99 | OFF |
| 100 | ) |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 101 | |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 102 | option (BMCWEB_INSECURE_DISABLE_XSS_PREVENTION "Disable XSS preventions" OFF) |
Ed Tanous | 0d485ef | 2017-05-23 09:23:53 -0700 | [diff] [blame] | 103 | |
James Feist | 41d1d18 | 2019-10-18 13:57:16 -0700 | [diff] [blame] | 104 | option ( |
| 105 | BMCWEB_INSECURE_ENABLE_REDFISH_FW_TFTP_UPDATE |
| 106 | "Enable TFTP based firmware update transactions through Redfish |
| 107 | UpdateService.SimpleUpdate." |
| 108 | OFF |
| 109 | ) |
Andrew Geissler | 0554c98 | 2019-04-23 14:40:12 -0500 | [diff] [blame] | 110 | |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 111 | include (CTest) |
| 112 | |
Ed Tanous | 6228874 | 2018-10-16 14:58:20 -0700 | [diff] [blame] | 113 | set (CMAKE_CXX_STANDARD 17) |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 114 | set (CMAKE_CXX_STANDARD_REQUIRED ON) |
| 115 | |
| 116 | set (CMAKE_EXPORT_COMPILE_COMMANDS ON) |
| 117 | |
Ed Tanous | b01bf29 | 2019-03-25 19:25:26 +0000 | [diff] [blame] | 118 | set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS} -Wall") |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 119 | |
Ed Tanous | 271584a | 2019-07-09 16:24:22 -0700 | [diff] [blame] | 120 | set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} \ |
| 121 | -fno-rtti \ |
| 122 | ") |
| 123 | |
James Feist | 41d1d18 | 2019-10-18 13:57:16 -0700 | [diff] [blame] | 124 | set ( |
| 125 | CMAKE_CXX_FLAGS |
| 126 | "${CMAKE_CXX_FLAGS} \ |
Ed Tanous | 271584a | 2019-07-09 16:24:22 -0700 | [diff] [blame] | 127 | -Wall \ |
| 128 | -Wextra \ |
| 129 | -Wnon-virtual-dtor \ |
| 130 | -Wold-style-cast \ |
| 131 | -Wcast-align \ |
| 132 | -Wunused \ |
| 133 | -Woverloaded-virtual \ |
| 134 | -Wpedantic \ |
| 135 | -Wconversion \ |
| 136 | -Wsign-conversion \ |
| 137 | -Wnull-dereference \ |
| 138 | -Wdouble-promotion \ |
| 139 | -Wformat=2 \ |
| 140 | -Wno-unused-parameter \ |
James Feist | 41d1d18 | 2019-10-18 13:57:16 -0700 | [diff] [blame] | 141 | " |
| 142 | ) |
Ed Tanous | 271584a | 2019-07-09 16:24:22 -0700 | [diff] [blame] | 143 | |
| 144 | # only set -Werror if we're on a compiler that we know passes |
| 145 | if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") |
James Feist | 41d1d18 | 2019-10-18 13:57:16 -0700 | [diff] [blame] | 146 | if (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 8.0) |
| 147 | set ( |
| 148 | CMAKE_CXX_FLAGS |
| 149 | "${CMAKE_CXX_FLAGS} \ |
Ed Tanous | 271584a | 2019-07-09 16:24:22 -0700 | [diff] [blame] | 150 | -Werror \ |
| 151 | -Wduplicated-cond \ |
| 152 | -Wduplicated-branches \ |
| 153 | -Wlogical-op \ |
| 154 | -Wnull-dereference \ |
| 155 | -Wdouble-promotion \ |
| 156 | -Wformat=2 \ |
| 157 | -Wno-unused-parameter \ |
James Feist | 41d1d18 | 2019-10-18 13:57:16 -0700 | [diff] [blame] | 158 | " |
| 159 | ) |
| 160 | endif (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 8.0) |
Ed Tanous | 271584a | 2019-07-09 16:24:22 -0700 | [diff] [blame] | 161 | endif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") |
| 162 | |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 163 | set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fno-rtti") |
Ed Tanous | 3dac749 | 2017-08-02 13:46:20 -0700 | [diff] [blame] | 164 | |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 165 | # general |
Ed Tanous | 797d0c0 | 2018-08-07 10:22:35 -0700 | [diff] [blame] | 166 | option (BMCWEB_BUILD_UT "Enable Unit test" OFF) |
Ed Tanous | 8041f31 | 2017-04-03 09:47:01 -0700 | [diff] [blame] | 167 | |
Ed Tanous | 1ccd57c | 2017-03-21 13:15:58 -0700 | [diff] [blame] | 168 | # security flags |
James Feist | 41d1d18 | 2019-10-18 13:57:16 -0700 | [diff] [blame] | 169 | set ( |
| 170 | SECURITY_FLAGS |
| 171 | "-fstack-protector-strong \ |
Ed Tanous | 580f372 | 2018-03-13 16:59:02 -0700 | [diff] [blame] | 172 | -fPIE \ |
| 173 | -fPIC \ |
| 174 | -D_FORTIFY_SOURCE=2 \ |
| 175 | -Wformat \ |
James Feist | 41d1d18 | 2019-10-18 13:57:16 -0700 | [diff] [blame] | 176 | -Wformat-security" |
Ed Tanous | f0d73c2 | 2018-07-26 14:24:20 -0700 | [diff] [blame] | 177 | ) |
James Feist | 41d1d18 | 2019-10-18 13:57:16 -0700 | [diff] [blame] | 178 | set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} ${SECURITY_FLAGS}") |
| 179 | set (CMAKE_CXX_FLAGS_RELWITHDEBINFO |
| 180 | "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} ${SECURITY_FLAGS}") |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 181 | set (CMAKE_C_FLAGS_MINSIZEREL "${CMAKE_C_FLAGS_MINSIZEREL} ${SECURITY_FLAGS}") |
Ed Tanous | 3dac749 | 2017-08-02 13:46:20 -0700 | [diff] [blame] | 182 | |
Ed Tanous | 580f372 | 2018-03-13 16:59:02 -0700 | [diff] [blame] | 183 | # Enable link time optimization This is a temporary workaround because |
| 184 | # INTERPROCEDURAL_OPTIMIZATION isn't available until cmake 3.9. gcc-ar and gcc- |
| 185 | # ranlib are wrappers around ar and ranlib which add the lto plugin to the |
| 186 | # command line. |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 187 | if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") |
| 188 | if (NOT CMAKE_BUILD_TYPE MATCHES Debug) |
| 189 | string (REGEX REPLACE "ar$" "gcc-ar" CMAKE_AR ${CMAKE_AR}) |
James Feist | 41d1d18 | 2019-10-18 13:57:16 -0700 | [diff] [blame] | 190 | string (REGEX |
| 191 | REPLACE "ranlib$" "gcc-ranlib" CMAKE_RANLIB ${CMAKE_RANLIB}) |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 192 | set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -flto -fno-fat-lto-objects") |
Borawski.Lukasz | 109799e | 2018-01-30 15:04:42 +0100 | [diff] [blame] | 193 | |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 194 | # Reduce the binary size by removing unnecessary dynamic symbol table |
| 195 | # entries |
James Feist | 41d1d18 | 2019-10-18 13:57:16 -0700 | [diff] [blame] | 196 | set ( |
| 197 | CMAKE_CXX_FLAGS |
| 198 | "${CMAKE_CXX_FLAGS} \ |
Ed Tanous | 580f372 | 2018-03-13 16:59:02 -0700 | [diff] [blame] | 199 | -fvisibility=hidden \ |
| 200 | -fvisibility-inlines-hidden \ |
James Feist | 41d1d18 | 2019-10-18 13:57:16 -0700 | [diff] [blame] | 201 | -Wl,--exclude-libs,ALL" |
| 202 | ) |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 203 | endif (NOT CMAKE_BUILD_TYPE MATCHES Debug) |
| 204 | endif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") |
Borawski.Lukasz | 109799e | 2018-01-30 15:04:42 +0100 | [diff] [blame] | 205 | |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 206 | if (NOT ${YOCTO_DEPENDENCIES}) # Download and unpack googletest at configure |
| 207 | # time |
| 208 | configure_file (CMakeLists.txt.in 3rdparty/CMakeLists.txt) |
James Feist | 41d1d18 | 2019-10-18 13:57:16 -0700 | [diff] [blame] | 209 | execute_process (COMMAND ${CMAKE_COMMAND} -G "${CMAKE_GENERATOR}" . |
| 210 | WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/3rdparty) |
| 211 | execute_process (COMMAND ${CMAKE_COMMAND} --build . |
| 212 | WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/3rdparty) |
Ed tanous | 7d95f5f | 2018-03-23 00:19:20 -0700 | [diff] [blame] | 213 | |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 214 | set (CMAKE_PREFIX_PATH ${CMAKE_BINARY_DIR}/prefix ${CMAKE_PREFIX_PATH}) |
| 215 | endif () |
Ed tanous | 7d95f5f | 2018-03-23 00:19:20 -0700 | [diff] [blame] | 216 | |
Ed Tanous | 271584a | 2019-07-09 16:24:22 -0700 | [diff] [blame] | 217 | find_package (Boost 1.66 REQUIRED) |
| 218 | include_directories (SYSTEM ${BOOST_SRC_DIR}) |
| 219 | |
Ed Tanous | 580f372 | 2018-03-13 16:59:02 -0700 | [diff] [blame] | 220 | # add_definitions(-DBOOST_ASIO_ENABLE_HANDLER_TRACKING) |
Ed Tanous | d3a3806 | 2018-07-27 12:06:29 -0700 | [diff] [blame] | 221 | add_definitions (-DBOOST_ASIO_DISABLE_THREADS) |
Ed Tanous | 39e7750 | 2019-03-04 17:35:53 -0800 | [diff] [blame] | 222 | add_definitions (-DBOOST_BEAST_USE_STD_STRING_VIEW) |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 223 | add_definitions (-DBOOST_ERROR_CODE_HEADER_ONLY) |
| 224 | add_definitions (-DBOOST_SYSTEM_NO_DEPRECATED) |
James Feist | 41d1d18 | 2019-10-18 13:57:16 -0700 | [diff] [blame] | 225 | message (BOOST_VERSION = ${Boost_VERSION}) |
Ed Tanous | 271584a | 2019-07-09 16:24:22 -0700 | [diff] [blame] | 226 | if ("${Boost_VERSION}" STREQUAL "107100") |
| 227 | add_definitions (-DBOOST_ASIO_NO_DEPRECATED) |
James Feist | 41d1d18 | 2019-10-18 13:57:16 -0700 | [diff] [blame] | 228 | endif () |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 229 | add_definitions (-DBOOST_ALL_NO_LIB) |
| 230 | add_definitions (-DBOOST_NO_RTTI) |
| 231 | add_definitions (-DBOOST_NO_TYPEID) |
Ed Tanous | c85eb8b | 2018-10-16 14:59:20 -0700 | [diff] [blame] | 232 | add_definitions (-DBOOST_COROUTINES_NO_DEPRECATION_WARNING) |
Ed tanous | 7d95f5f | 2018-03-23 00:19:20 -0700 | [diff] [blame] | 233 | |
Ed Tanous | aa2e59c | 2018-04-12 12:17:20 -0700 | [diff] [blame] | 234 | # sdbusplus |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 235 | if (NOT ${YOCTO_DEPENDENCIES}) |
Ed Tanous | 271584a | 2019-07-09 16:24:22 -0700 | [diff] [blame] | 236 | include_directories (SYSTEM ${CMAKE_BINARY_DIR}/sdbusplus-src) |
James Feist | a975e9f | 2018-08-08 14:03:49 -0700 | [diff] [blame] | 237 | link_directories (${CMAKE_BINARY_DIR}/sdbusplus-src/.libs) |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 238 | endif () |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 239 | |
Ed Tanous | 580f372 | 2018-03-13 16:59:02 -0700 | [diff] [blame] | 240 | # Openssl |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 241 | find_package (OpenSSL REQUIRED) |
Ed Tanous | 271584a | 2019-07-09 16:24:22 -0700 | [diff] [blame] | 242 | include_directories (SYSTEM ${OPENSSL_INCLUDE_DIR}) |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 243 | message ("OPENSSL_INCLUDE_DIR ${OPENSSL_INCLUDE_DIR}") |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 244 | |
Ed Tanous | 55c7b7a | 2018-05-22 15:27:24 -0700 | [diff] [blame] | 245 | # bmcweb |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 246 | message ("CMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}") |
| 247 | if (CMAKE_BUILD_TYPE MATCHES Debug) |
| 248 | message ("Logging disabled") |
Ed Tanous | 55c7b7a | 2018-05-22 15:27:24 -0700 | [diff] [blame] | 249 | add_definitions (-DBMCWEB_ENABLE_LOGGING) |
| 250 | add_definitions (-DBMCWEB_ENABLE_DEBUG) |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 251 | endif (CMAKE_BUILD_TYPE MATCHES Debug) |
Ed Tanous | aa2e59c | 2018-04-12 12:17:20 -0700 | [diff] [blame] | 252 | |
Andrew Geissler | 1f2fbf2 | 2018-07-17 07:57:30 -0700 | [diff] [blame] | 253 | if (NOT "${BMCWEB_INSECURE_DISABLE_SSL}") |
Ed Tanous | a434f2b | 2018-07-27 13:04:22 -0700 | [diff] [blame] | 254 | add_definitions (-DBMCWEB_ENABLE_SSL) |
Andrew Geissler | 1f2fbf2 | 2018-07-17 07:57:30 -0700 | [diff] [blame] | 255 | endif (NOT "${BMCWEB_INSECURE_DISABLE_SSL}") |
Ed Tanous | c94ad49 | 2019-10-10 15:39:33 -0700 | [diff] [blame] | 256 | include_directories (${CMAKE_CURRENT_SOURCE_DIR}/http) |
Ed Tanous | 0fdddb1 | 2017-02-28 11:06:34 -0800 | [diff] [blame] | 257 | |
Ed Tanous | 580f372 | 2018-03-13 16:59:02 -0700 | [diff] [blame] | 258 | # Zlib |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 259 | find_package (ZLIB REQUIRED) |
Ed Tanous | 271584a | 2019-07-09 16:24:22 -0700 | [diff] [blame] | 260 | include_directories (SYSTEM ${ZLIB_INCLUDE_DIRS}) |
Ed Tanous | f927347 | 2017-02-28 16:05:13 -0800 | [diff] [blame] | 261 | |
Ed Tanous | 4758d5b | 2017-06-06 15:28:13 -0700 | [diff] [blame] | 262 | # PAM |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 263 | option (WEBSERVER_ENABLE_PAM "enable pam authentication" ON) |
| 264 | if ("${WEBSERVER_ENABLE_PAM}") |
| 265 | find_package (PAM REQUIRED) |
| 266 | else () |
| 267 | add_definitions ("-DWEBSERVER_DISABLE_PAM") |
| 268 | endif () |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 269 | |
Ed Tanous | f0d73c2 | 2018-07-26 14:24:20 -0700 | [diff] [blame] | 270 | add_definitions ("-Wno-attributes") |
Jennifer Lee | 0334670 | 2018-05-23 14:05:20 -0700 | [diff] [blame] | 271 | # Copy pam-webserver to etc/pam.d |
James Feist | 41d1d18 | 2019-10-18 13:57:16 -0700 | [diff] [blame] | 272 | install (FILES ${CMAKE_CURRENT_SOURCE_DIR}/pam-webserver DESTINATION /etc/pam.d/ |
| 273 | RENAME webserver) |
Ed Tanous | 5f34a9c | 2017-02-28 12:35:13 -0800 | [diff] [blame] | 274 | |
Ed tanous | 7d95f5f | 2018-03-23 00:19:20 -0700 | [diff] [blame] | 275 | # tinyxml2 |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 276 | find_package (tinyxml2 REQUIRED) |
Ed tanous | 7d95f5f | 2018-03-23 00:19:20 -0700 | [diff] [blame] | 277 | |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 278 | set (WEBSERVER_MAIN src/webserver_main.cpp) |
Ed Tanous | b4d29f4 | 2017-03-24 16:39:25 -0700 | [diff] [blame] | 279 | |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 280 | include_directories (${CMAKE_CURRENT_SOURCE_DIR}/include) |
| 281 | include_directories (${CMAKE_CURRENT_SOURCE_DIR}/redfish-core/include) |
Ed Tanous | b4d29f4 | 2017-03-24 16:39:25 -0700 | [diff] [blame] | 282 | |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 283 | file (MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/include/bmcweb) |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 284 | include_directories (${CMAKE_BINARY_DIR}/include) |
Ed Tanous | 5f34a9c | 2017-02-28 12:35:13 -0800 | [diff] [blame] | 285 | |
James Feist | 41d1d18 | 2019-10-18 13:57:16 -0700 | [diff] [blame] | 286 | set (SRC_FILES redfish-core/src/error_messages.cpp |
| 287 | redfish-core/src/utils/json_utils.cpp ${GENERATED_SRC_FILES}) |
Ed Tanous | 93f987d | 2017-04-17 17:52:36 -0700 | [diff] [blame] | 288 | |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 289 | file (COPY src/test_resources DESTINATION ${CMAKE_CURRENT_BINARY_DIR}) |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 290 | |
Ed Tanous | 38bdb98 | 2017-03-03 14:19:33 -0800 | [diff] [blame] | 291 | # Unit Tests |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 292 | if (${BMCWEB_BUILD_UT}) |
James Feist | 41d1d18 | 2019-10-18 13:57:16 -0700 | [diff] [blame] | 293 | set (UT_FILES src/crow_test.cpp src/gtest_main.cpp |
| 294 | src/token_authorization_middleware_test.cpp |
| 295 | src/security_headers_middleware_test.cpp src/webassets_test.cpp |
| 296 | src/crow_getroutes_test.cpp src/ast_jpeg_decoder_test.cpp |
| 297 | src/kvm_websocket_test.cpp src/msan_test.cpp |
| 298 | src/ast_video_puller_test.cpp src/openbmc_jtag_rest_test.cpp |
| 299 | redfish-core/ut/privileges_test.cpp |
| 300 | ${CMAKE_BINARY_DIR}/include/bmcweb/blns.hpp) # big list of naughty |
| 301 | # strings |
| 302 | add_custom_command (OUTPUT ${CMAKE_BINARY_DIR}/include/bmcweb/blns.hpp |
| 303 | COMMAND |
| 304 | xxd -i |
| 305 | ${CMAKE_CURRENT_SOURCE_DIR}/src/test_resources/blns |
| 306 | ${CMAKE_BINARY_DIR}/include/bmcweb/blns.hpp) |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 307 | |
James Feist | 41d1d18 | 2019-10-18 13:57:16 -0700 | [diff] [blame] | 308 | set_source_files_properties (${CMAKE_BINARY_DIR}/include/bmcweb/blns.hpp |
| 309 | PROPERTIES GENERATED TRUE) |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 310 | enable_testing () |
| 311 | |
| 312 | add_executable (webtest ${SRC_FILES} ${UT_FILES}) |
| 313 | |
| 314 | find_package (GTest REQUIRED) |
| 315 | find_package (GMock REQUIRED) |
| 316 | target_link_libraries (webtest ${GTEST_LIBRARIES}) |
| 317 | target_link_libraries (webtest ${GMOCK_LIBRARIES}) |
| 318 | |
| 319 | target_link_libraries (webtest pthread) |
| 320 | target_link_libraries (webtest ${OPENSSL_LIBRARIES}) |
| 321 | target_link_libraries (webtest ${ZLIB_LIBRARIES}) |
| 322 | target_link_libraries (webtest pam) |
| 323 | target_link_libraries (webtest tinyxml2) |
Ed Tanous | d425c6f | 2018-05-16 10:20:11 -0700 | [diff] [blame] | 324 | target_link_libraries (webtest sdbusplus) |
Ed Tanous | e062590 | 2018-05-16 13:35:08 -0700 | [diff] [blame] | 325 | target_link_libraries (webtest -lsystemd) |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 326 | target_link_libraries (webtest -lstdc++fs) |
| 327 | add_test (webtest webtest "--gtest_output=xml:webtest.xml") |
| 328 | |
| 329 | endif (${BMCWEB_BUILD_UT}) |
| 330 | |
| 331 | install (DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/static/ DESTINATION share/www) |
| 332 | |
| 333 | # bmcweb |
| 334 | add_executable (bmcweb ${WEBSERVER_MAIN} ${HDR_FILES} ${SRC_FILES}) |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 335 | target_link_libraries (bmcweb ${OPENSSL_LIBRARIES}) |
| 336 | target_link_libraries (bmcweb ${ZLIB_LIBRARIES}) |
| 337 | target_link_libraries (bmcweb pam) |
Brad Bishop | 79ba46f | 2018-11-29 10:57:31 -0500 | [diff] [blame] | 338 | target_link_libraries (bmcweb -latomic) |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 339 | target_link_libraries (bmcweb -lsystemd) |
| 340 | target_link_libraries (bmcweb -lstdc++fs) |
Ed Tanous | d425c6f | 2018-05-16 10:20:11 -0700 | [diff] [blame] | 341 | target_link_libraries (bmcweb sdbusplus) |
Ed Tanous | 1e43987 | 2018-05-18 11:48:52 -0700 | [diff] [blame] | 342 | target_link_libraries (bmcweb tinyxml2) |
| 343 | install (TARGETS bmcweb DESTINATION bin) |
| 344 | |
Jason M. Bills | c50fc5a | 2018-11-14 14:49:59 -0800 | [diff] [blame] | 345 | target_compile_definitions ( |
James Feist | 41d1d18 | 2019-10-18 13:57:16 -0700 | [diff] [blame] | 346 | bmcweb PRIVATE $<$<BOOL:${BMCWEB_ENABLE_KVM}>: -DBMCWEB_ENABLE_KVM> |
Adriana Kobylak | 1bfbe0e | 2019-01-17 12:08:38 -0600 | [diff] [blame] | 347 | $<$<BOOL:${BMCWEB_ENABLE_VM_WEBSOCKET}>: -DBMCWEB_ENABLE_VM_WEBSOCKET> |
Jason M. Bills | c50fc5a | 2018-11-14 14:49:59 -0800 | [diff] [blame] | 348 | $<$<BOOL:${BMCWEB_ENABLE_DBUS_REST}>: -DBMCWEB_ENABLE_DBUS_REST> |
| 349 | $<$<BOOL:${BMCWEB_ENABLE_REDFISH}>: -DBMCWEB_ENABLE_REDFISH> |
| 350 | $<$<BOOL:${BMCWEB_ENABLE_STATIC_HOSTING}>: -DBMCWEB_ENABLE_STATIC_HOSTING> |
James Feist | 41d1d18 | 2019-10-18 13:57:16 -0700 | [diff] [blame] | 351 | $<$<BOOL:${BMCWEB_ENABLE_HOST_SERIAL_WEBSOCKET}>: |
| 352 | -DBMCWEB_ENABLE_HOST_SERIAL_WEBSOCKET> |
| 353 | $<$<BOOL:${BMCWEB_INSECURE_DISABLE_CSRF_PREVENTION}>: |
| 354 | -DBMCWEB_INSECURE_DISABLE_CSRF_PREVENTION> |
Jason M. Bills | c50fc5a | 2018-11-14 14:49:59 -0800 | [diff] [blame] | 355 | $<$<BOOL:${BMCWEB_INSECURE_DISABLE_SSL}>: -DBMCWEB_INSECURE_DISABLE_SSL> |
James Feist | 41d1d18 | 2019-10-18 13:57:16 -0700 | [diff] [blame] | 356 | $<$<BOOL:${BMCWEB_INSECURE_DISABLE_XSS_PREVENTION}>: |
| 357 | -DBMCWEB_INSECURE_DISABLE_XSS_PREVENTION> |
| 358 | $<$<BOOL:${BMCWEB_ENABLE_REDFISH_RAW_PECI}>: |
| 359 | -DBMCWEB_ENABLE_REDFISH_RAW_PECI> |
| 360 | $<$<BOOL:${BMCWEB_ENABLE_REDFISH_CPU_LOG}>: |
| 361 | -DBMCWEB_ENABLE_REDFISH_CPU_LOG> |
| 362 | $<$<BOOL:${BMCWEB_ENABLE_REDFISH_BMC_JOURNAL}>: |
| 363 | -DBMCWEB_ENABLE_REDFISH_BMC_JOURNAL> |
| 364 | $<$<BOOL:${BMCWEB_ENABLE_REDFISH_DBUS_LOG_ENTRIES}>: |
| 365 | -DBMCWEB_ENABLE_REDFISH_DBUS_LOG_ENTRIES> |
| 366 | $<$<BOOL:${BMCWEB_INSECURE_ENABLE_REDFISH_FW_TFTP_UPDATE}>: |
| 367 | -DBMCWEB_INSECURE_ENABLE_REDFISH_FW_TFTP_UPDATE> |
AppaRao Puli | a634991 | 2019-10-18 17:16:08 +0530 | [diff] [blame^] | 368 | $<$<BOOL:${BMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE}>: |
| 369 | -DBMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE> |
Brad Bishop | f5e906b | 2018-11-29 10:55:10 -0500 | [diff] [blame] | 370 | ) |
Brad Bishop | 5a7094b | 2019-04-10 19:33:15 -0400 | [diff] [blame] | 371 | |
| 372 | # configure and install systemd unit files |
| 373 | configure_file (bmcweb.socket bmcweb.socket COPYONLY) |
| 374 | configure_file (bmcweb.service.in bmcweb.service) |
| 375 | pkg_get_variable (SYSTEMD_SYSTEMUNITDIR systemd systemdsystemunitdir) |
James Feist | 41d1d18 | 2019-10-18 13:57:16 -0700 | [diff] [blame] | 376 | install (FILES ${PROJECT_BINARY_DIR}/bmcweb.socket DESTINATION |
| 377 | ${SYSTEMD_SYSTEMUNITDIR}) |
| 378 | install (FILES ${PROJECT_BINARY_DIR}/bmcweb.service DESTINATION |
| 379 | ${SYSTEMD_SYSTEMUNITDIR}) |