1project('bmcweb', 'cpp', 2 version : '1.0', 3 meson_version: '>=0.53.2', 4 default_options: [ 5 'werror=true', 6 'warning_level=3', 7 'cpp_std=c++17', 8 'buildtype=debugoptimized', 9 'b_ndebug=if-release', 10 'b_lto=true', 11 'cpp_rtti=false', 12 'b_lto_mode=default', 13 'b_lto_threads=0' 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++17' 26 error('This project requires c++17 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 44# Disable lto when compiling with no optimization 45if(get_option('optimization') == '0') 46 add_project_arguments('-fno-lto', language: 'cpp') 47 message('Disabling lto & its supported features as optimization is disabled') 48endif 49 50# Include Directories 51 52incdir = include_directories( 53 'include', 54 'redfish-core/include', 55 'redfish-core/lib', 56 'http' 57) 58 59# Get the options and enable the respective features 60## create a MAP of "options : feature_flag" 61 62feature_map = { 63 'insecure-disable-auth' : '-DBMCWEB_INSECURE_DISABLE_AUTHENTICATION', 64 'insecure-disable-csrf' : '-DBMCWEB_INSECURE_DISABLE_CSRF_PREVENTION', 65 'insecure-disable-ssl' : '-DBMCWEB_INSECURE_DISABLE_SSL', 66 'host-serial-socket' : '-DBMCWEB_ENABLE_HOST_SERIAL_WEBSOCKET', 67 'ibm-management-console' : '-DBMCWEB_ENABLE_IBM_MANAGEMENT_CONSOLE', 68 'google-api' : '-DBMCWEB_ENABLE_GOOGLE_API', 69 'kvm' : '-DBMCWEB_ENABLE_KVM' , 70 'basic-auth' : '-DBMCWEB_ENABLE_BASIC_AUTHENTICATION', 71 'session-auth' : '-DBMCWEB_ENABLE_SESSION_AUTHENTICATION', 72 'xtoken-auth' : '-DBMCWEB_ENABLE_XTOKEN_AUTHENTICATION', 73 'cookie-auth' : '-DBMCWEB_ENABLE_COOKIE_AUTHENTICATION', 74 'mutual-tls-auth' : '-DBMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION', 75 'pam' : '-DWEBSERVER_ENABLE_PAM', 76 'insecure-push-style-notification': '-DBMCWEB_INSECURE_ENABLE_HTTP_PUSH_STYLE_EVENTING', 77 'redfish' : '-DBMCWEB_ENABLE_REDFISH', 78 'redfish-bmc-journal' : '-DBMCWEB_ENABLE_REDFISH_BMC_JOURNAL', 79 'redfish-cpu-log' : '-DBMCWEB_ENABLE_REDFISH_CPU_LOG', 80 'redfish-dbus-log' : '-DBMCWEB_ENABLE_REDFISH_DBUS_LOG_ENTRIES', 81 'redfish-provisioning-feature' : '-DBMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE', 82 'redfish-dump-log' : '-DBMCWEB_ENABLE_REDFISH_DUMP_LOG', 83 'rest' : '-DBMCWEB_ENABLE_DBUS_REST', 84 'static-hosting' : '-DBMCWEB_ENABLE_STATIC_HOSTING', 85 'insecure-tftp-update' : '-DBMCWEB_INSECURE_ENABLE_REDFISH_FW_TFTP_UPDATE', 86 #'vm-nbdproxy' : '-DBMCWEB_ENABLE_VM_NBDPROXY', 87 'vm-websocket' : '-DBMCWEB_ENABLE_VM_WEBSOCKET', 88} 89 90# Get the options status and build a project summary to show which flags are 91# being enabled during the configuration time. 92 93foreach option_key,option_value : feature_map 94 if(get_option(option_key).enabled()) 95 if(option_key == 'mutual-tls-auth' or option_key == 'insecure-disable-ssl') 96 if(get_option('insecure-disable-ssl').disabled() or get_option('mutual-tls-auth').disabled()) 97 add_project_arguments(option_value,language:'cpp') 98 summary(option_key,option_value, section : 'Enabled Features') 99 endif 100 else 101 summary(option_key,option_value, section : 'Enabled Features') 102 add_project_arguments(option_value,language:'cpp') 103 endif 104 else 105 if(option_key == 'insecure-disable-ssl') 106 summary('ssl','-DBMCWEB_ENABLE_SSL', section : 'Enabled Features') 107 add_project_arguments('-DBMCWEB_ENABLE_SSL', language : 'cpp') 108 endif 109 endif 110endforeach 111 112if(get_option('tests').enabled()) 113 summary('unittest','NA', section : 'Enabled Features') 114endif 115 116# Add compiler arguments 117 118# -Wpedantic, -Wextra comes by default with warning level 119add_project_arguments( 120 cxx.get_supported_arguments([ 121 '-Wold-style-cast', 122 '-Wcast-align', 123 '-Wunused', 124 '-Woverloaded-virtual', 125 '-Wconversion', 126 '-Wsign-conversion', 127 '-Wno-attributes', 128 ]), 129 language: 'cpp' 130) 131 132if (cxx.get_id() == 'clang' and cxx.version().version_compare('>9.0')) 133add_project_arguments( 134 cxx.get_supported_arguments([ 135 '-Weverything', 136 '-Wno-c++98-compat', 137 '-Wno-c++98-compat-pedantic', 138 '-Wno-global-constructors', 139 '-Wno-exit-time-destructors', 140 '-Wno-shadow', 141 '-Wno-used-but-marked-unused', 142 '-Wno-documentation-unknown-command', 143 '-Wno-weak-vtables', 144 '-Wno-documentation', 145 '-Wno-padded', 146 '-Wunused-parameter', 147 '-Wcovered-switch-default', 148 '-Wcomma', 149 '-Wextra-semi', 150 '-Wzero-as-null-pointer-constant', 151 '-Wswitch-enum', 152 '-Wnull-dereference', 153 '-Wdouble-promotion', 154 '-Wno-newline-eof', 155 '-Wformat=2', 156 ]), 157 language:'cpp') 158endif 159 160# if compiler is gnu-gcc , and version is > 8.0 then we add few more 161# compiler arguments , we know that will pass 162 163if (cxx.get_id() == 'gcc' and cxx.version().version_compare('>8.0')) 164 165 ## remove once bmcweb/issues/147 is fixed 166 add_global_link_arguments('-Wno-stringop-overflow',language:['c','cpp']) 167 add_project_arguments('-Wno-stringop-overflow',language:['c','cpp']) 168 169 add_project_arguments( 170 cxx.get_supported_arguments([ 171 '-Wduplicated-cond', 172 '-Wduplicated-branches', 173 '-Wlogical-op', 174 '-Wunused-parameter', 175 '-Wnull-dereference', 176 '-Wdouble-promotion', 177 '-Wformat=2', 178 ]), 179 language:'cpp') 180endif 181 182if (get_option('buildtype') != 'plain') 183 if (get_option('b_lto') == true and get_option('optimization')!='0') 184 # Reduce the binary size by removing unnecessary 185 # dynamic symbol table entries 186 187 add_project_arguments( 188 cxx.get_supported_arguments([ 189 '-fno-fat-lto-objects', 190 '-fvisibility=hidden', 191 '-fvisibility-inlines-hidden' 192 ]), 193 language: 'cpp') 194 195 if cxx.has_link_argument('-Wl,--exclude-libs,ALL') 196 add_project_link_arguments('-Wl,--exclude-libs,ALL', language: 'cpp') 197 endif 198 endif 199endif 200 201if( get_option('bmcweb-logging').enabled() or \ 202 get_option('buildtype').startswith('debug')) 203 add_project_arguments([ 204 '-DBMCWEB_ENABLE_LOGGING', 205 '-DBMCWEB_ENABLE_DEBUG' 206 ], 207 language : 'cpp') 208 209 summary({'debug' :'-DBMCWEB_ENABLE_DEBUG', 210 'logging' : '-DBMCWEB_ENABLE_LOGGING', 211 },section : 'Enabled Features') 212endif 213 214if( get_option('redfish-allow-deprecated-power-thermal').enabled()) 215 add_project_arguments([ 216 '-DBMCWEB_ALLOW_DEPRECATED_POWER_THERMAL' 217 ], 218 language : 'cpp') 219 220 summary({'power-thermal' :'-DBMCWEB_ALLOW_DEPRECATED_POWER_THERMAL' 221 },section : 'Enabled Features') 222endif 223 224if( get_option('redfish-new-powersubsystem-thermalsubsystem').enabled()) 225 add_project_arguments([ 226 '-DBMCWEB_NEW_POWERSUBSYSTEM_THERMALSUBSYSTEM' 227 ], 228 language : 'cpp') 229 230 summary({'new-powersubsystem-thermalsubsystem' :'-DBMCWEB_NEW_POWERSUBSYSTEM_THERMALSUBSYSTEM' 231 },section : 'Enabled Features') 232endif 233 234# Set Compiler Security flags 235 236security_flags = [ 237 '-fstack-protector-strong', 238 '-fPIE', 239 '-fPIC', 240 '-D_FORTIFY_SOURCE=2', 241 '-Wformat', 242 '-Wformat-security' 243] 244 245## Add security flags for builds of type 'release','debugoptimized' and 'minsize' 246 247if not (get_option('buildtype') == 'plain' or get_option('buildtype').startswith('debug')) 248 add_project_arguments( 249 cxx.get_supported_arguments([ 250 security_flags 251 ]), 252 language: 'cpp') 253endif 254 255# Boost dependency configuration 256 257add_project_arguments( 258cxx.get_supported_arguments([ 259 '-DBOOST_ASIO_USE_TS_EXECUTOR_AS_DEFAULT', 260 '-DBOOST_ASIO_DISABLE_THREADS', 261 '-DBOOST_BEAST_USE_STD_STRING_VIEW', 262 '-DBOOST_ERROR_CODE_HEADER_ONLY', 263 '-DBOOST_SYSTEM_NO_DEPRECATED', 264 '-DBOOST_ASIO_NO_DEPRECATED', 265 '-DBOOST_ALL_NO_LIB', 266 '-DBOOST_NO_RTTI', 267 '-DBOOST_NO_TYPEID', 268 '-DBOOST_COROUTINES_NO_DEPRECATION_WARNING', 269 '-DBOOST_URL_STANDALONE', 270 '-DBOOST_URL_HEADER_ONLY', 271 '-DBOOST_ALLOW_DEPRECATED_HEADERS', 272 '-DJSON_NOEXCEPTION' 273]), 274language : 'cpp') 275 276# Find the dependency modules, if not found use meson wrap to get them 277# automatically during the configure step 278bmcweb_dependencies = [] 279 280pam = cxx.find_library('pam', required: get_option('pam')) 281atomic = cxx.find_library('atomic', required: true) 282openssl = dependency('openssl', required : true) 283bmcweb_dependencies += [pam, atomic, openssl] 284 285sdbusplus = dependency('sdbusplus', required : false, include_type: 'system') 286if not sdbusplus.found() 287 sdbusplus_proj = subproject('sdbusplus', required: true) 288 sdbusplus = sdbusplus_proj.get_variable('sdbusplus_dep') 289 sdbusplus = sdbusplus.as_system('system') 290endif 291bmcweb_dependencies += sdbusplus 292 293if get_option('rest').enabled() 294 tinyxml = dependency('tinyxml2', 295 default_options: ['tests=false'], 296 include_type: 'system', 297 ) 298 bmcweb_dependencies += tinyxml 299endif 300 301systemd = dependency('systemd') 302zlib = dependency('zlib') 303bmcweb_dependencies += [systemd, zlib] 304 305if cxx.has_header('nlohmann/json.hpp') 306 nlohmann_json = declare_dependency() 307else 308 nlohmann_json_proj = subproject('nlohmann', required: true) 309 nlohmann_json = nlohmann_json_proj.get_variable('nlohmann_json_dep') 310 nlohmann_json = nlohmann_json.as_system('system') 311endif 312bmcweb_dependencies += nlohmann_json 313 314boost = dependency('boost',version : '>=1.75.0', required : false, include_type: 'system') 315if not boost.found() 316 subproject('boost', required: false) 317 boost_inc = include_directories('subprojects/boost_1_75_0/', is_system:true) 318 boost = declare_dependency(include_directories : boost_inc) 319 boost = boost.as_system('system') 320endif 321bmcweb_dependencies += boost 322 323if cxx.has_header('boost/url/url_view.hpp') 324 boost_url = declare_dependency() 325else 326 subproject('boost-url', required: false) 327 boost_url_inc = include_directories('subprojects/boost-url/include', is_system:true) 328 boost_url= declare_dependency(include_directories : boost_url_inc) 329 boost_url = boost_url.as_system('system') 330endif 331bmcweb_dependencies += boost_url 332 333if get_option('tests').enabled() 334 gtest = dependency('gtest', main: true,disabler: true, required : false) 335 gmock = dependency('gmock', required : false) 336 if not gtest.found() and get_option('tests').enabled() 337 gtest_proj = subproject('gtest', required: true) 338 gtest = gtest_proj.get_variable('gtest_main_dep') 339 gmock = gtest_proj.get_variable('gmock_dep') 340 endif 341 gtest = gtest.as_system('system') 342 gmock = gmock.as_system('system') 343endif 344 345# Source files 346 347srcfiles_bmcweb = [ 348 'src/webserver_main.cpp', 349 'redfish-core/src/error_messages.cpp', 350 'redfish-core/src/utils/json_utils.cpp', 351 'src/boost_url.cpp' 352] 353 354srcfiles_unittest = [ 355 'include/ut/dbus_utility_test.cpp', 356 'include/ut/http_utility_test.cpp', 357 'include/ut/human_sort_test.cpp', 358 'redfish-core/ut/privileges_test.cpp', 359 'redfish-core/ut/lock_test.cpp', 360 'redfish-core/ut/configfile_test.cpp', 361 'redfish-core/ut/time_utils_test.cpp', 362 'http/ut/utility_test.cpp' 363] 364 365# Gather the Configuration data 366 367conf_data = configuration_data() 368conf_data.set('BMCWEB_HTTP_REQ_BODY_LIMIT_MB', get_option('http-body-limit')) 369xss_enabled = get_option('insecure-disable-xss') 370conf_data.set10('BMCWEB_INSECURE_DISABLE_XSS_PREVENTION', xss_enabled.enabled()) 371conf_data.set('MESON_INSTALL_PREFIX', get_option('prefix')) 372conf_data.set('HTTPS_PORT', get_option('https_port')) 373configure_file(input: 'bmcweb_config.h.in', 374 output: 'bmcweb_config.h', 375 configuration: conf_data) 376 377# Configure and install systemd unit files 378 379systemd_system_unit_dir = systemd.get_variable(pkgconfig: 'systemdsystemunitdir') 380 381bindir = get_option('prefix') + '/' +get_option('bindir') 382 383summary({ 384 'prefix' : get_option('prefix'), 385 'bindir' : bindir, 386 'systemd unit directory' : systemd_system_unit_dir 387 }, section : 'Directories') 388 389configure_file(input : 'bmcweb.socket.in', 390 output : 'bmcweb.socket', 391 install_dir: systemd_system_unit_dir, 392 configuration: conf_data, 393 install : true) 394 395configure_file(input : 'bmcweb.service.in', 396 output : 'bmcweb.service', 397 install_dir: systemd_system_unit_dir, 398 configuration: conf_data, 399 install : true) 400 401# Copy pam-webserver to etc/pam.d 402configure_file(input : 'pam-webserver', 403 output : 'webserver', 404 copy : true, 405 install_dir: '/etc/pam.d', 406 install : true) 407 408install_subdir('static', install_dir : 'share/www', strip_directory : true) 409 410# Generate the bmcweb executable and the test binary 411 412executable('bmcweb',srcfiles_bmcweb, 413 include_directories : incdir, 414 dependencies: bmcweb_dependencies, 415 link_args: '-Wl,--gc-sections', 416 install: true, 417 install_dir:bindir) 418 419if(get_option('tests').enabled()) 420 foreach src_test : srcfiles_unittest 421 testname = src_test.split('/')[-1].split('.')[0] 422 test(testname,executable(testname, 423 [src_test, 424 'src/boost_url.cpp'], 425 include_directories : incdir, 426 install_dir: bindir, 427 dependencies: [ 428 boost, 429 boost_url, 430 gtest, 431 openssl, 432 gmock, 433 nlohmann_json, 434 sdbusplus, 435 pam 436 ])) 437 endforeach 438endif 439