1project('bmcweb', 'cpp', 2 version : '1.0', 3 meson_version: '>=0.63.0', 4 default_options: [ 5 'b_lto_mode=default', 6 'b_lto_threads=0', 7 'b_lto=true', 8 'b_ndebug=if-release', 9 'buildtype=debugoptimized', 10 'cpp_rtti=false', 11 'cpp_std=c++20', 12 'warning_level=3', 13 'werror=true', 14 ]) 15 16# Project related links 17 18project_pretty_name = 'bmcweb' 19project_url = 'https://github.com/openbmc/' + project_pretty_name 20project_issues_url = project_url + '/issues/new' 21summary('Issues',project_issues_url, section: 'Report Issues') 22 23# Validate the c++ Standard 24 25if get_option('cpp_std') != 'c++20' 26 error('This project requires c++20 support') 27endif 28 29# Get compiler and default build type 30 31cxx = meson.get_compiler('cpp') 32build = get_option('buildtype') 33optimization = get_option('optimization') 34summary('Build Type',build, section : 'Build Info') 35summary('Optimization',optimization, section : 'Build Info') 36 37 38# remove debug information for minsize buildtype 39if(get_option('buildtype') == 'minsize') 40 add_project_arguments(['-fdata-sections', '-ffunction-sections'], language : 'cpp') 41 add_project_arguments('-DNDEBUG', language : 'cpp') 42endif 43 44if(get_option('dns-resolver') == 'systemd-dbus') 45 add_project_arguments('-DBMCWEB_DBUS_DNS_RESOLVER', language : 'cpp') 46endif 47 48# Disable lto when compiling with no optimization 49if(get_option('optimization') == '0') 50 add_project_arguments('-fno-lto', language: 'cpp') 51 message('Disabling lto & its supported features as optimization is disabled') 52endif 53 54# Include Directories 55 56incdir = include_directories( 57 'include', 58 'redfish-core/include', 59 'redfish-core/lib', 60 'http' 61) 62 63# Get the options and enable the respective features 64## create a MAP of "options : feature_flag" 65 66feature_map = { 67 'basic-auth' : '-DBMCWEB_ENABLE_BASIC_AUTHENTICATION', 68 'cookie-auth' : '-DBMCWEB_ENABLE_COOKIE_AUTHENTICATION', 69 'google-api' : '-DBMCWEB_ENABLE_GOOGLE_API', 70 'host-serial-socket' : '-DBMCWEB_ENABLE_HOST_SERIAL_WEBSOCKET', 71 'ibm-management-console' : '-DBMCWEB_ENABLE_IBM_MANAGEMENT_CONSOLE', 72 'insecure-disable-auth' : '-DBMCWEB_INSECURE_DISABLE_AUTHX', 73 'insecure-disable-csrf' : '-DBMCWEB_INSECURE_DISABLE_CSRF_PREVENTION', 74 'insecure-disable-ssl' : '-DBMCWEB_INSECURE_DISABLE_SSL', 75 'insecure-push-style-notification' : '-DBMCWEB_INSECURE_ENABLE_HTTP_PUSH_STYLE_EVENTING', 76 'insecure-tftp-update' : '-DBMCWEB_INSECURE_ENABLE_REDFISH_FW_TFTP_UPDATE', 77 'insecure-ignore-content-type' : '-DBMCWEB_INSECURE_IGNORE_CONTENT_TYPE', 78 'kvm' : '-DBMCWEB_ENABLE_KVM' , 79 'mutual-tls-auth' : '-DBMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION', 80 'redfish-aggregation' : '-DBMCWEB_ENABLE_REDFISH_AGGREGATION', 81 'redfish-allow-deprecated-power-thermal' : '-DBMCWEB_ALLOW_DEPRECATED_POWER_THERMAL', 82 'redfish-bmc-journal' : '-DBMCWEB_ENABLE_REDFISH_BMC_JOURNAL', 83 'redfish-cpu-log' : '-DBMCWEB_ENABLE_REDFISH_CPU_LOG', 84 'redfish-dbus-log' : '-DBMCWEB_ENABLE_REDFISH_DBUS_LOG_ENTRIES', 85 'redfish-dump-log' : '-DBMCWEB_ENABLE_REDFISH_DUMP_LOG', 86 'redfish-host-logger' : '-DBMCWEB_ENABLE_REDFISH_HOST_LOGGER', 87 'redfish-new-powersubsystem-thermalsubsystem' : '-DBMCWEB_NEW_POWERSUBSYSTEM_THERMALSUBSYSTEM', 88 'redfish-oem-manager-fan-data' : '-DBMCWEB_ENABLE_REDFISH_OEM_MANAGER_FAN_DATA', 89 'redfish-provisioning-feature' : '-DBMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE', 90 'redfish' : '-DBMCWEB_ENABLE_REDFISH', 91 'rest' : '-DBMCWEB_ENABLE_DBUS_REST', 92 'session-auth' : '-DBMCWEB_ENABLE_SESSION_AUTHENTICATION', 93 'static-hosting' : '-DBMCWEB_ENABLE_STATIC_HOSTING', 94 'vm-websocket' : '-DBMCWEB_ENABLE_VM_WEBSOCKET', 95 'xtoken-auth' : '-DBMCWEB_ENABLE_XTOKEN_AUTHENTICATION', 96 #'vm-nbdproxy' : '-DBMCWEB_ENABLE_VM_NBDPROXY', 97} 98 99# Get the options status and build a project summary to show which flags are 100# being enabled during the configuration time. 101 102foreach option_key,option_value : feature_map 103 if(get_option(option_key).enabled()) 104 if(option_key == 'mutual-tls-auth' or option_key == 'insecure-disable-ssl') 105 if(get_option('insecure-disable-ssl').disabled() or get_option('mutual-tls-auth').disabled()) 106 add_project_arguments(option_value,language:'cpp') 107 summary(option_key,option_value, section : 'Enabled Features') 108 endif 109 elif (option_key in ['basic-auth', 'cookie-auth', 'session-auth', 'xtoken-auth', 'mutual-tls-auth']) 110 if (get_option('insecure-disable-auth').disabled()) 111 add_project_arguments(option_value, language:'cpp') 112 summary(option_key,option_value, section : 'Enabled Features') 113 endif 114 else 115 summary(option_key,option_value, section : 'Enabled Features') 116 add_project_arguments(option_value,language:'cpp') 117 endif 118 else 119 if(option_key == 'insecure-disable-ssl') 120 summary('ssl','-DBMCWEB_ENABLE_SSL', section : 'Enabled Features') 121 add_project_arguments('-DBMCWEB_ENABLE_SSL', language : 'cpp') 122 endif 123 endif 124endforeach 125 126if(get_option('tests').enabled()) 127 summary('unittest','NA', section : 'Enabled Features') 128endif 129 130# Add compiler arguments 131 132# -Wpedantic, -Wextra comes by default with warning level 133add_project_arguments( 134 cxx.get_supported_arguments([ 135 '-Wcast-align', 136 '-Wconversion', 137 '-Wformat=2', 138 '-Wold-style-cast', 139 '-Woverloaded-virtual', 140 '-Wsign-conversion', 141 '-Wunused', 142 '-Wno-attributes', 143 ]), 144 language: 'cpp' 145) 146 147if (cxx.get_id() == 'clang' and cxx.version().version_compare('>9.0')) 148add_project_arguments( 149 cxx.get_supported_arguments([ 150 '-Weverything', 151 '-Wno-c++98-compat-pedantic', 152 '-Wno-c++98-compat', 153 '-Wno-documentation-unknown-command', 154 '-Wno-documentation', 155 '-Wno-exit-time-destructors', 156 '-Wno-global-constructors', 157 '-Wno-newline-eof', 158 '-Wno-padded', 159 '-Wno-shadow', 160 '-Wno-used-but-marked-unused', 161 '-Wno-weak-vtables', 162 '-Wno-switch-enum', 163 ]), 164 language:'cpp') 165endif 166 167# if compiler is gnu-gcc , and version is > 8.0 then we add few more 168# compiler arguments , we know that will pass 169 170if (cxx.get_id() == 'gcc' and cxx.version().version_compare('>8.0')) 171 add_project_arguments( 172 cxx.get_supported_arguments([ 173 '-Wduplicated-cond', 174 '-Wduplicated-branches', 175 '-Wlogical-op', 176 '-Wnull-dereference', 177 '-Wunused-parameter', 178 '-Wdouble-promotion', 179 '-Wshadow', 180 '-Wno-psabi', 181 ]), 182 language:'cpp') 183endif 184 185if (get_option('buildtype') != 'plain') 186 if (get_option('b_lto') == true and get_option('optimization')!='0') 187 # Reduce the binary size by removing unnecessary 188 # dynamic symbol table entries 189 190 add_project_arguments( 191 cxx.get_supported_arguments([ 192 '-fno-fat-lto-objects', 193 '-fvisibility=hidden', 194 '-fvisibility-inlines-hidden' 195 ]), 196 language: 'cpp') 197 198 if cxx.has_link_argument('-Wl,--exclude-libs,ALL') 199 add_project_link_arguments('-Wl,--exclude-libs,ALL', language: 'cpp') 200 endif 201 endif 202endif 203 204if( get_option('bmcweb-logging') != 'disabled' or \ 205 get_option('buildtype').startswith('debug')) 206 add_project_arguments([ 207 '-DBMCWEB_ENABLE_DEBUG' 208 ], 209 language : 'cpp') 210 211 summary('debug', '-DBMCWEB_ENABLE_DEBUG', section : 'Enabled Features') 212endif 213 214# Set Compiler Security flags 215 216security_flags = [ 217 '-fstack-protector-strong', 218 '-fPIE', 219 '-fPIC', 220 '-D_FORTIFY_SOURCE=2', 221 '-Wformat', 222 '-Wformat-security' 223] 224 225## Add security flags for builds of type 'release','debugoptimized' and 'minsize' 226 227if not (get_option('buildtype') == 'plain' or get_option('buildtype').startswith('debug')) 228 add_project_arguments( 229 cxx.get_supported_arguments([ 230 security_flags 231 ]), 232 language: 'cpp') 233endif 234 235# Boost dependency configuration 236 237add_project_arguments( 238cxx.get_supported_arguments([ 239 '-DBOOST_ALL_NO_LIB', 240 '-DBOOST_ALLOW_DEPRECATED_HEADERS', 241 '-DBOOST_ASIO_DISABLE_THREADS', 242 '-DBOOST_ASIO_NO_DEPRECATED', 243 '-DBOOST_ASIO_SEPARATE_COMPILATION', 244 '-DBOOST_BEAST_SEPARATE_COMPILATION', 245 '-DBOOST_EXCEPTION_DISABLE', 246 '-DBOOST_URL_NO_SOURCE_LOCATION', 247 '-DJSON_NOEXCEPTION', 248 '-DOPENSSL_NO_FILENAMES', 249]), 250language : 'cpp') 251 252# Find the dependency modules, if not found use meson wrap to get them 253# automatically during the configure step 254bmcweb_dependencies = [] 255 256pam = cxx.find_library('pam', required: true) 257atomic = cxx.find_library('atomic', required: true) 258openssl = dependency('openssl', required : true) 259bmcweb_dependencies += [pam, atomic, openssl] 260 261sdbusplus = dependency('sdbusplus', required : false, include_type: 'system') 262if not sdbusplus.found() 263 sdbusplus_proj = subproject('sdbusplus', required: true) 264 sdbusplus = sdbusplus_proj.get_variable('sdbusplus_dep') 265 sdbusplus = sdbusplus.as_system('system') 266endif 267bmcweb_dependencies += sdbusplus 268 269tinyxml = dependency( 270 'tinyxml2', 271 include_type: 'system', 272 version: '>=9.0.0', 273) 274if not tinyxml.found() 275 tinyxml_proj = subproject('tinyxml2', required: true) 276 tinyxml = tinyxml_proj.get_variable('tinyxml_dep') 277 tinyxml = tinyxml.as_system('system') 278endif 279bmcweb_dependencies += tinyxml 280 281systemd = dependency('systemd') 282zlib = dependency('zlib') 283bmcweb_dependencies += [systemd, zlib] 284 285nlohmann_json = dependency('nlohmann_json', version: '>=3.9.2', required: false, include_type: 'system') 286if not nlohmann_json.found() 287 nlohmann_json_proj = subproject('nlohmann_json', required: true) 288 nlohmann_json = nlohmann_json_proj.get_variable('nlohmann_json_dep') 289 nlohmann_json = nlohmann_json.as_system('system') 290endif 291bmcweb_dependencies += nlohmann_json 292 293boost = dependency('boost',version : '>=1.82.0', required : false, include_type: 'system') 294if not boost.found() 295 boost = subproject('boost', required: true).get_variable('boost_dep') 296 boost = boost.as_system('system') 297endif 298bmcweb_dependencies += boost 299 300if get_option('tests').enabled() 301 gtest = dependency('gtest', main: true, disabler: true, required : false) 302 gmock = dependency('gmock', required : false) 303 if not gtest.found() and get_option('tests').enabled() 304 gtest_proj = subproject('gtest', required: true) 305 gtest = gtest_proj.get_variable('gtest_main_dep') 306 gmock = gtest_proj.get_variable('gmock_dep') 307 endif 308 gtest = gtest.as_system('system') 309 gmock = gmock.as_system('system') 310endif 311 312systemd_system_unit_dir = systemd.get_variable('systemdsystemunitdir') 313 314bindir = get_option('prefix') + '/' +get_option('bindir') 315 316summary({ 317 'prefix' : get_option('prefix'), 318 'bindir' : bindir, 319 'systemd unit directory' : systemd_system_unit_dir 320 }, section : 'Directories') 321 322install_subdir('static', install_dir : 'share/www', strip_directory : true) 323 324# Config subdirectory 325 326subdir('config') 327bmcweb_dependencies += conf_h_dep 328 329# Source files 330fs = import('fs') 331 332srcfiles_bmcweb = files( 333 'redfish-core/src/error_messages.cpp', 334 'redfish-core/src/registries.cpp', 335 'redfish-core/src/utils/json_utils.cpp', 336 'src/boost_asio_ssl.cpp', 337 'src/boost_asio.cpp', 338 'src/boost_beast.cpp', 339 'src/boost_url.cpp', 340 'src/dbus_singleton.cpp', 341 'src/json_html_serializer.cpp', 342) 343 344bmcweblib = static_library( 345 'bmcweblib', 346 srcfiles_bmcweb, 347 include_directories : incdir, 348 dependencies: bmcweb_dependencies, 349) 350 351# Generate the bmcweb executable 352executable( 353 'bmcweb', 354 'src/webserver_main.cpp', 355 include_directories : incdir, 356 dependencies: bmcweb_dependencies, 357 link_with: bmcweblib, 358 link_args: '-Wl,--gc-sections', 359 install: true, 360 install_dir:bindir 361) 362 363srcfiles_unittest = files( 364 'test/http/crow_getroutes_test.cpp', 365 'test/http/router_test.cpp', 366 'test/http/utility_test.cpp', 367 'test/http/verb_test.cpp', 368 'test/include/dbus_utility_test.cpp', 369 'test/include/google/google_service_root_test.cpp', 370 'test/include/json_html_serializer.cpp', 371 'test/include/http_utility_test.cpp', 372 'test/include/human_sort_test.cpp', 373 'test/include/ibm/configfile_test.cpp', 374 'test/include/ibm/lock_test.cpp', 375 'test/include/multipart_test.cpp', 376 'test/include/openbmc_dbus_rest_test.cpp', 377 'test/include/str_utility_test.cpp', 378 'test/redfish-core/include/privileges_test.cpp', 379 'test/redfish-core/include/redfish_aggregator_test.cpp', 380 'test/redfish-core/include/registries_test.cpp', 381 'test/redfish-core/include/utils/hex_utils_test.cpp', 382 'test/redfish-core/include/utils/ip_utils_test.cpp', 383 'test/redfish-core/include/utils/json_utils_test.cpp', 384 'test/redfish-core/include/utils/query_param_test.cpp', 385 'test/redfish-core/include/utils/stl_utils_test.cpp', 386 'test/redfish-core/include/utils/time_utils_test.cpp', 387 'test/redfish-core/lib/chassis_test.cpp', 388 'test/redfish-core/lib/sensors_test.cpp', 389 'test/redfish-core/lib/log_services_dump_test.cpp', 390 'test/redfish-core/lib/service_root_test.cpp', 391 'test/redfish-core/lib/thermal_subsystem_test.cpp', 392 'test/redfish-core/lib/power_subsystem_test.cpp', 393) 394 395if(get_option('tests').enabled()) 396 # generate the test executable 397 foreach test_src : srcfiles_unittest 398 test_bin = executable( 399 fs.stem(test_src), 400 test_src, 401 link_with: bmcweblib, 402 include_directories : incdir, 403 install_dir: bindir, 404 dependencies: bmcweb_dependencies + [ 405 gtest, 406 gmock, 407 ] 408 ) 409 test(fs.stem(test_src), test_bin) 410 endforeach 411endif 412