blob: 863cad1d203e4c7aeb9e947aefe2825fa469426b [file] [log] [blame]
Manojkiran Edaaf6298d2020-05-27 08:51:32 +05301project('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',
Manojkiran Edacb2ed192021-02-15 08:30:43 +053011 'cpp_rtti=false',
12 'b_lto_mode=default',
13 'b_lto_threads=0'
Manojkiran Edaaf6298d2020-05-27 08:51:32 +053014 ])
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
Ed Tanous5e34b672021-02-05 14:21:27 -080037
Manojkiran Edaaf6298d2020-05-27 08:51:32 +053038# remove debug information for minsize buildtype
39if(get_option('buildtype') == 'minsize')
Ed Tanous5e34b672021-02-05 14:21:27 -080040 add_project_arguments(['-fdata-sections', '-ffunction-sections'], language : 'cpp')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +053041 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
Ed Tanouscf2f9322021-09-22 15:34:41 -070052incdir = include_directories(
53 'include',
54 'redfish-core/include',
55 'redfish-core/lib',
56 'http'
57)
Manojkiran Edaaf6298d2020-05-27 08:51:32 +053058
59# Get the options and enable the respective features
60## create a MAP of "options : feature_flag"
61
62feature_map = {
Ed Tanouscf2f9322021-09-22 15:34:41 -070063 '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',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +053088}
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
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530116# 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',
Ed Tanousd32c4fa2021-09-14 13:16:51 -0700154 '-Wno-newline-eof',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530155 '-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')
Ed Tanousc66403c2021-09-22 15:28:57 -0700180endif
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530181
Ed Tanousc66403c2021-09-22 15:28:57 -0700182if (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
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530186
Ed Tanousc66403c2021-09-22 15:28:57 -0700187 add_project_arguments(
188 cxx.get_supported_arguments([
189 '-fno-fat-lto-objects',
190 '-fvisibility=hidden',
191 '-fvisibility-inlines-hidden'
192 ]),
193 language: 'cpp')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530194
Ed Tanousc66403c2021-09-22 15:28:57 -0700195 if cxx.has_link_argument('-Wl,--exclude-libs,ALL')
196 add_project_link_arguments('-Wl,--exclude-libs,ALL', language: 'cpp')
George Liue8204932021-02-01 14:42:49 +0800197 endif
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530198 endif
199endif
200
Ed Tanousc66403c2021-09-22 15:28:57 -0700201if( 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
Ed Tanousc66403c2021-09-22 15:28:57 -0700214if( 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
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530234# Set Compiler Security flags
235
236security_flags = [
Ed Tanouscf2f9322021-09-22 15:34:41 -0700237 '-fstack-protector-strong',
238 '-fPIE',
239 '-fPIC',
240 '-D_FORTIFY_SOURCE=2',
241 '-Wformat',
242 '-Wformat-security'
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530243]
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([
Ed Tanouscf2f9322021-09-22 15:34:41 -0700259 '-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'
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530273]),
274language : 'cpp')
275
276# Find the dependency modules, if not found use meson wrap to get them
277# automatically during the configure step
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800278bmcweb_dependencies = []
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530279
280pam = cxx.find_library('pam', required: get_option('pam'))
281atomic = cxx.find_library('atomic', required: true)
282openssl = dependency('openssl', required : true)
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800283bmcweb_dependencies += [pam, atomic, openssl]
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530284
Ed Tanous7bb985e2021-09-02 14:31:40 -0700285sdbusplus = dependency('sdbusplus', required : false, include_type: 'system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530286if 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
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800291bmcweb_dependencies += sdbusplus
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530292
293if get_option('rest').enabled()
Patrick Williams565c0912021-10-12 20:22:45 -0500294 tinyxml = dependency('tinyxml2',
295 default_options: ['tests=false'],
296 include_type: 'system',
297 )
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800298 bmcweb_dependencies += tinyxml
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530299endif
300
301systemd = dependency('systemd')
302zlib = dependency('zlib')
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800303bmcweb_dependencies += [systemd, zlib]
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530304
305if cxx.has_header('nlohmann/json.hpp')
306 nlohmann_json = declare_dependency()
307else
Josh Lehan259df352021-10-07 15:20:02 -0700308 nlohmann_json_proj = subproject('nlohmann', required: true)
309 nlohmann_json = nlohmann_json_proj.get_variable('nlohmann_json_dep')
Ed Tanousb00dcc22021-02-23 12:52:50 -0800310 nlohmann_json = nlohmann_json.as_system('system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530311endif
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800312bmcweb_dependencies += nlohmann_json
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530313
Ed Tanous7bb985e2021-09-02 14:31:40 -0700314boost = dependency('boost',version : '>=1.75.0', required : false, include_type: 'system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530315if not boost.found()
316 subproject('boost', required: false)
Ed Tanous65f73652021-02-17 10:20:27 -0800317 boost_inc = include_directories('subprojects/boost_1_75_0/', is_system:true)
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530318 boost = declare_dependency(include_directories : boost_inc)
Ed Tanousb00dcc22021-02-23 12:52:50 -0800319 boost = boost.as_system('system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530320endif
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800321bmcweb_dependencies += boost
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530322
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)
Ed Tanousb00dcc22021-02-23 12:52:50 -0800329 boost_url = boost_url.as_system('system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530330endif
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800331bmcweb_dependencies += boost_url
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530332
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
Ed Tanousb00dcc22021-02-23 12:52:50 -0800341 gtest = gtest.as_system('system')
342 gmock = gmock.as_system('system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530343endif
344
345# Source files
346
Ed Tanouscf2f9322021-09-22 15:34:41 -0700347srcfiles_bmcweb = [
348 'src/webserver_main.cpp',
349 'redfish-core/src/error_messages.cpp',
Ed Tanousd32c4fa2021-09-14 13:16:51 -0700350 'redfish-core/src/utils/json_utils.cpp',
351 'src/boost_url.cpp'
Ed Tanouscf2f9322021-09-22 15:34:41 -0700352]
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530353
Ed Tanouscf2f9322021-09-22 15:34:41 -0700354srcfiles_unittest = [
355 'include/ut/dbus_utility_test.cpp',
356 'include/ut/http_utility_test.cpp',
Ed Tanousa8544a52021-09-29 14:31:13 -0700357 'include/ut/human_sort_test.cpp',
Ed Tanouscf2f9322021-09-22 15:34:41 -0700358 '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',
George Liu287ece62021-09-30 20:24:46 +0800362 'redfish-core/ut/stl_utils_test.cpp',
Ed Tanousf201ffb2021-10-09 14:49:28 -0700363 'redfish-core/ut/hex_utils_test.cpp',
Ed Tanouscf2f9322021-09-22 15:34:41 -0700364 'http/ut/utility_test.cpp'
365]
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530366
367# Gather the Configuration data
368
369conf_data = configuration_data()
Ed Tanous0260d9d2021-02-07 19:31:07 +0000370conf_data.set('BMCWEB_HTTP_REQ_BODY_LIMIT_MB', get_option('http-body-limit'))
371xss_enabled = get_option('insecure-disable-xss')
Ed Tanousfeaf1502021-02-23 08:53:50 -0800372conf_data.set10('BMCWEB_INSECURE_DISABLE_XSS_PREVENTION', xss_enabled.enabled())
Ed Tanous0260d9d2021-02-07 19:31:07 +0000373conf_data.set('MESON_INSTALL_PREFIX', get_option('prefix'))
Vivekanand Veeracholan54d13552021-06-14 19:16:36 -0700374conf_data.set('HTTPS_PORT', get_option('https_port'))
Ed Tanous75312982021-02-11 14:26:02 -0800375configure_file(input: 'bmcweb_config.h.in',
376 output: 'bmcweb_config.h',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530377 configuration: conf_data)
378
379# Configure and install systemd unit files
380
Patrick Williams6a779932021-10-12 20:08:44 -0500381systemd_system_unit_dir = systemd.get_variable(pkgconfig: 'systemdsystemunitdir')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530382
383bindir = get_option('prefix') + '/' +get_option('bindir')
384
385summary({
386 'prefix' : get_option('prefix'),
387 'bindir' : bindir,
388 'systemd unit directory' : systemd_system_unit_dir
389 }, section : 'Directories')
390
Vivekanand Veeracholan54d13552021-06-14 19:16:36 -0700391configure_file(input : 'bmcweb.socket.in',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530392 output : 'bmcweb.socket',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530393 install_dir: systemd_system_unit_dir,
Vivekanand Veeracholan54d13552021-06-14 19:16:36 -0700394 configuration: conf_data,
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530395 install : true)
396
397configure_file(input : 'bmcweb.service.in',
398 output : 'bmcweb.service',
399 install_dir: systemd_system_unit_dir,
400 configuration: conf_data,
401 install : true)
402
403# Copy pam-webserver to etc/pam.d
404configure_file(input : 'pam-webserver',
405 output : 'webserver',
406 copy : true,
407 install_dir: '/etc/pam.d',
408 install : true)
409
410install_subdir('static', install_dir : 'share/www', strip_directory : true)
411
412# Generate the bmcweb executable and the test binary
413
414executable('bmcweb',srcfiles_bmcweb,
415 include_directories : incdir,
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800416 dependencies: bmcweb_dependencies,
Ed Tanous5e34b672021-02-05 14:21:27 -0800417 link_args: '-Wl,--gc-sections',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530418 install: true,
419 install_dir:bindir)
420
421if(get_option('tests').enabled())
422 foreach src_test : srcfiles_unittest
423 testname = src_test.split('/')[-1].split('.')[0]
Patrick Williams6a779932021-10-12 20:08:44 -0500424 test(testname,executable(testname,
Ed Tanousd32c4fa2021-09-14 13:16:51 -0700425 [src_test,
426 'src/boost_url.cpp'],
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530427 include_directories : incdir,
428 install_dir: bindir,
429 dependencies: [
Ed Tanouscf2f9322021-09-22 15:34:41 -0700430 boost,
431 boost_url,
432 gtest,
433 openssl,
434 gmock,
435 nlohmann_json,
436 sdbusplus,
437 pam
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530438 ]))
439 endforeach
440endif