blob: ff07103c692dcb6d45bd715aa4cda977a34d6931 [file] [log] [blame]
Manojkiran Edaaf6298d2020-05-27 08:51:32 +05301project('bmcweb', 'cpp',
2 version : '1.0',
Patrick Williamsc52ee722021-10-06 15:17:42 -05003 meson_version: '>=0.57.0',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +05304 default_options: [
5 'werror=true',
6 'warning_level=3',
Patrick Williamsc52ee722021-10-06 15:17:42 -05007 'cpp_std=c++20',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +05308 '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
Patrick Williamsc52ee722021-10-06 15:17:42 -050025if get_option('cpp_std') != 'c++20'
26 error('This project requires c++20 support')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +053027endif
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 = {
Manojkiran Eda2d74fbc2021-10-28 12:39:49 +053063 'basic-auth' : '-DBMCWEB_ENABLE_BASIC_AUTHENTICATION',
64 'cookie-auth' : '-DBMCWEB_ENABLE_COOKIE_AUTHENTICATION',
65 'google-api' : '-DBMCWEB_ENABLE_GOOGLE_API',
66 'host-serial-socket' : '-DBMCWEB_ENABLE_HOST_SERIAL_WEBSOCKET',
67 'ibm-management-console' : '-DBMCWEB_ENABLE_IBM_MANAGEMENT_CONSOLE',
68 'insecure-disable-auth' : '-DBMCWEB_INSECURE_DISABLE_AUTHENTICATION',
69 'insecure-disable-csrf' : '-DBMCWEB_INSECURE_DISABLE_CSRF_PREVENTION',
70 'insecure-disable-ssl' : '-DBMCWEB_INSECURE_DISABLE_SSL',
71 'insecure-push-style-notification' : '-DBMCWEB_INSECURE_ENABLE_HTTP_PUSH_STYLE_EVENTING',
72 'insecure-tftp-update' : '-DBMCWEB_INSECURE_ENABLE_REDFISH_FW_TFTP_UPDATE',
73 'kvm' : '-DBMCWEB_ENABLE_KVM' ,
74 'mutual-tls-auth' : '-DBMCWEB_ENABLE_MUTUAL_TLS_AUTHENTICATION',
Manojkiran Eda2d74fbc2021-10-28 12:39:49 +053075 'redfish' : '-DBMCWEB_ENABLE_REDFISH',
76 'redfish-bmc-journal' : '-DBMCWEB_ENABLE_REDFISH_BMC_JOURNAL',
77 'redfish-cpu-log' : '-DBMCWEB_ENABLE_REDFISH_CPU_LOG',
78 'redfish-dbus-log' : '-DBMCWEB_ENABLE_REDFISH_DBUS_LOG_ENTRIES',
Spencer Kub7028eb2021-10-26 15:27:35 +080079 'redfish-host-logger' : '-DBMCWEB_ENABLE_REDFISH_HOST_LOGGER',
Manojkiran Eda2d74fbc2021-10-28 12:39:49 +053080 'redfish-dump-log' : '-DBMCWEB_ENABLE_REDFISH_DUMP_LOG',
81 'redfish-provisioning-feature' : '-DBMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE',
82 'rest' : '-DBMCWEB_ENABLE_DBUS_REST',
83 'redfish-allow-deprecated-power-thermal' : '-DBMCWEB_ALLOW_DEPRECATED_POWER_THERMAL',
84 'redfish-new-powersubsystem-thermalsubsystem' : '-DBMCWEB_NEW_POWERSUBSYSTEM_THERMALSUBSYSTEM',
85 'session-auth' : '-DBMCWEB_ENABLE_SESSION_AUTHENTICATION',
86 'static-hosting' : '-DBMCWEB_ENABLE_STATIC_HOSTING',
87 #'vm-nbdproxy' : '-DBMCWEB_ENABLE_VM_NBDPROXY',
88 'vm-websocket' : '-DBMCWEB_ENABLE_VM_WEBSOCKET',
89 'xtoken-auth' : '-DBMCWEB_ENABLE_XTOKEN_AUTHENTICATION',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +053090}
91
92# Get the options status and build a project summary to show which flags are
93# being enabled during the configuration time.
94
95foreach option_key,option_value : feature_map
96 if(get_option(option_key).enabled())
97 if(option_key == 'mutual-tls-auth' or option_key == 'insecure-disable-ssl')
98 if(get_option('insecure-disable-ssl').disabled() or get_option('mutual-tls-auth').disabled())
99 add_project_arguments(option_value,language:'cpp')
100 summary(option_key,option_value, section : 'Enabled Features')
101 endif
102 else
103 summary(option_key,option_value, section : 'Enabled Features')
104 add_project_arguments(option_value,language:'cpp')
105 endif
106 else
107 if(option_key == 'insecure-disable-ssl')
108 summary('ssl','-DBMCWEB_ENABLE_SSL', section : 'Enabled Features')
109 add_project_arguments('-DBMCWEB_ENABLE_SSL', language : 'cpp')
110 endif
111 endif
112endforeach
113
114if(get_option('tests').enabled())
115 summary('unittest','NA', section : 'Enabled Features')
116endif
117
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530118# Add compiler arguments
119
120# -Wpedantic, -Wextra comes by default with warning level
121add_project_arguments(
122 cxx.get_supported_arguments([
123 '-Wold-style-cast',
124 '-Wcast-align',
125 '-Wunused',
126 '-Woverloaded-virtual',
127 '-Wconversion',
128 '-Wsign-conversion',
129 '-Wno-attributes',
130 ]),
131 language: 'cpp'
132)
133
134if (cxx.get_id() == 'clang' and cxx.version().version_compare('>9.0'))
135add_project_arguments(
136 cxx.get_supported_arguments([
137 '-Weverything',
138 '-Wno-c++98-compat',
139 '-Wno-c++98-compat-pedantic',
140 '-Wno-global-constructors',
141 '-Wno-exit-time-destructors',
142 '-Wno-shadow',
143 '-Wno-used-but-marked-unused',
144 '-Wno-documentation-unknown-command',
145 '-Wno-weak-vtables',
146 '-Wno-documentation',
147 '-Wno-padded',
148 '-Wunused-parameter',
149 '-Wcovered-switch-default',
150 '-Wcomma',
151 '-Wextra-semi',
152 '-Wzero-as-null-pointer-constant',
153 '-Wswitch-enum',
154 '-Wnull-dereference',
155 '-Wdouble-promotion',
Ed Tanousd32c4fa2021-09-14 13:16:51 -0700156 '-Wno-newline-eof',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530157 '-Wformat=2',
158 ]),
159 language:'cpp')
160endif
161
162# if compiler is gnu-gcc , and version is > 8.0 then we add few more
163# compiler arguments , we know that will pass
164
165if (cxx.get_id() == 'gcc' and cxx.version().version_compare('>8.0'))
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530166 add_project_arguments(
167 cxx.get_supported_arguments([
168 '-Wduplicated-cond',
169 '-Wduplicated-branches',
170 '-Wlogical-op',
171 '-Wunused-parameter',
172 '-Wnull-dereference',
173 '-Wdouble-promotion',
174 '-Wformat=2',
175 ]),
176 language:'cpp')
Ed Tanousc66403c2021-09-22 15:28:57 -0700177endif
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530178
Ed Tanousc66403c2021-09-22 15:28:57 -0700179if (get_option('buildtype') != 'plain')
180 if (get_option('b_lto') == true and get_option('optimization')!='0')
181 # Reduce the binary size by removing unnecessary
182 # dynamic symbol table entries
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530183
Ed Tanousc66403c2021-09-22 15:28:57 -0700184 add_project_arguments(
185 cxx.get_supported_arguments([
186 '-fno-fat-lto-objects',
187 '-fvisibility=hidden',
188 '-fvisibility-inlines-hidden'
189 ]),
190 language: 'cpp')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530191
Ed Tanousc66403c2021-09-22 15:28:57 -0700192 if cxx.has_link_argument('-Wl,--exclude-libs,ALL')
193 add_project_link_arguments('-Wl,--exclude-libs,ALL', language: 'cpp')
George Liue8204932021-02-01 14:42:49 +0800194 endif
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530195 endif
196endif
197
Ed Tanousc66403c2021-09-22 15:28:57 -0700198if( get_option('bmcweb-logging').enabled() or \
199 get_option('buildtype').startswith('debug'))
200 add_project_arguments([
201 '-DBMCWEB_ENABLE_LOGGING',
202 '-DBMCWEB_ENABLE_DEBUG'
203 ],
204 language : 'cpp')
205
206 summary({'debug' :'-DBMCWEB_ENABLE_DEBUG',
207 'logging' : '-DBMCWEB_ENABLE_LOGGING',
Ed Tanousc66403c2021-09-22 15:28:57 -0700208
Ed Tanousc66403c2021-09-22 15:28:57 -0700209 },section : 'Enabled Features')
210endif
211
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530212# Set Compiler Security flags
213
214security_flags = [
Ed Tanouscf2f9322021-09-22 15:34:41 -0700215 '-fstack-protector-strong',
216 '-fPIE',
217 '-fPIC',
218 '-D_FORTIFY_SOURCE=2',
219 '-Wformat',
220 '-Wformat-security'
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530221]
222
223## Add security flags for builds of type 'release','debugoptimized' and 'minsize'
224
225if not (get_option('buildtype') == 'plain' or get_option('buildtype').startswith('debug'))
226 add_project_arguments(
227 cxx.get_supported_arguments([
228 security_flags
229 ]),
230 language: 'cpp')
231endif
232
233# Boost dependency configuration
234
235add_project_arguments(
236cxx.get_supported_arguments([
Ed Tanouscf2f9322021-09-22 15:34:41 -0700237 '-DBOOST_ASIO_USE_TS_EXECUTOR_AS_DEFAULT',
238 '-DBOOST_ASIO_DISABLE_THREADS',
239 '-DBOOST_BEAST_USE_STD_STRING_VIEW',
Ed Tanous2107fe12021-10-09 16:10:52 -0700240 '-DBOOST_BEAST_SEPARATE_COMPILATION',
241 '-DBOOST_ASIO_SEPARATE_COMPILATION',
Ed Tanouscf2f9322021-09-22 15:34:41 -0700242 '-DBOOST_ASIO_NO_DEPRECATED',
243 '-DBOOST_ALL_NO_LIB',
Ed Tanouscf2f9322021-09-22 15:34:41 -0700244 '-DBOOST_ALLOW_DEPRECATED_HEADERS',
245 '-DJSON_NOEXCEPTION'
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530246]),
247language : 'cpp')
248
249# Find the dependency modules, if not found use meson wrap to get them
250# automatically during the configure step
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800251bmcweb_dependencies = []
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530252
Nan Zhou8682c5a2021-11-13 11:00:07 -0800253pam = cxx.find_library('pam', required: true)
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530254atomic = cxx.find_library('atomic', required: true)
255openssl = dependency('openssl', required : true)
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800256bmcweb_dependencies += [pam, atomic, openssl]
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530257
Ed Tanous7bb985e2021-09-02 14:31:40 -0700258sdbusplus = dependency('sdbusplus', required : false, include_type: 'system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530259if not sdbusplus.found()
260 sdbusplus_proj = subproject('sdbusplus', required: true)
261 sdbusplus = sdbusplus_proj.get_variable('sdbusplus_dep')
262 sdbusplus = sdbusplus.as_system('system')
263endif
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800264bmcweb_dependencies += sdbusplus
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530265
266if get_option('rest').enabled()
Patrick Williams565c0912021-10-12 20:22:45 -0500267 tinyxml = dependency('tinyxml2',
268 default_options: ['tests=false'],
269 include_type: 'system',
270 )
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800271 bmcweb_dependencies += tinyxml
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530272endif
273
274systemd = dependency('systemd')
275zlib = dependency('zlib')
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800276bmcweb_dependencies += [systemd, zlib]
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530277
278if cxx.has_header('nlohmann/json.hpp')
279 nlohmann_json = declare_dependency()
280else
Josh Lehan259df352021-10-07 15:20:02 -0700281 nlohmann_json_proj = subproject('nlohmann', required: true)
282 nlohmann_json = nlohmann_json_proj.get_variable('nlohmann_json_dep')
Ed Tanousb00dcc22021-02-23 12:52:50 -0800283 nlohmann_json = nlohmann_json.as_system('system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530284endif
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800285bmcweb_dependencies += nlohmann_json
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530286
Ed Tanous9c7b76c2021-10-25 12:06:39 -0700287boost = dependency('boost',version : '>=1.77.0', required : false, include_type: 'system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530288if not boost.found()
289 subproject('boost', required: false)
Ed Tanous9c7b76c2021-10-25 12:06:39 -0700290 boost_inc = include_directories('subprojects/boost_1_77_0/', is_system:true)
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530291 boost = declare_dependency(include_directories : boost_inc)
Ed Tanousb00dcc22021-02-23 12:52:50 -0800292 boost = boost.as_system('system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530293endif
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800294bmcweb_dependencies += boost
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530295
296if cxx.has_header('boost/url/url_view.hpp')
297 boost_url = declare_dependency()
298else
299 subproject('boost-url', required: false)
300 boost_url_inc = include_directories('subprojects/boost-url/include', is_system:true)
301 boost_url= declare_dependency(include_directories : boost_url_inc)
Ed Tanousb00dcc22021-02-23 12:52:50 -0800302 boost_url = boost_url.as_system('system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530303endif
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800304bmcweb_dependencies += boost_url
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530305
306if get_option('tests').enabled()
307 gtest = dependency('gtest', main: true,disabler: true, required : false)
308 gmock = dependency('gmock', required : false)
309 if not gtest.found() and get_option('tests').enabled()
310 gtest_proj = subproject('gtest', required: true)
311 gtest = gtest_proj.get_variable('gtest_main_dep')
312 gmock = gtest_proj.get_variable('gmock_dep')
313 endif
Ed Tanousb00dcc22021-02-23 12:52:50 -0800314 gtest = gtest.as_system('system')
315 gmock = gmock.as_system('system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530316endif
317
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530318# Gather the Configuration data
319
320conf_data = configuration_data()
Ed Tanous0260d9d2021-02-07 19:31:07 +0000321conf_data.set('BMCWEB_HTTP_REQ_BODY_LIMIT_MB', get_option('http-body-limit'))
322xss_enabled = get_option('insecure-disable-xss')
Ed Tanousfeaf1502021-02-23 08:53:50 -0800323conf_data.set10('BMCWEB_INSECURE_DISABLE_XSS_PREVENTION', xss_enabled.enabled())
Ed Tanous0260d9d2021-02-07 19:31:07 +0000324conf_data.set('MESON_INSTALL_PREFIX', get_option('prefix'))
Vivekanand Veeracholan54d13552021-06-14 19:16:36 -0700325conf_data.set('HTTPS_PORT', get_option('https_port'))
Ed Tanous75312982021-02-11 14:26:02 -0800326configure_file(input: 'bmcweb_config.h.in',
327 output: 'bmcweb_config.h',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530328 configuration: conf_data)
329
330# Configure and install systemd unit files
331
Patrick Williams6a779932021-10-12 20:08:44 -0500332systemd_system_unit_dir = systemd.get_variable(pkgconfig: 'systemdsystemunitdir')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530333
334bindir = get_option('prefix') + '/' +get_option('bindir')
335
336summary({
337 'prefix' : get_option('prefix'),
338 'bindir' : bindir,
339 'systemd unit directory' : systemd_system_unit_dir
340 }, section : 'Directories')
341
Vivekanand Veeracholan54d13552021-06-14 19:16:36 -0700342configure_file(input : 'bmcweb.socket.in',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530343 output : 'bmcweb.socket',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530344 install_dir: systemd_system_unit_dir,
Vivekanand Veeracholan54d13552021-06-14 19:16:36 -0700345 configuration: conf_data,
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530346 install : true)
347
348configure_file(input : 'bmcweb.service.in',
349 output : 'bmcweb.service',
350 install_dir: systemd_system_unit_dir,
351 configuration: conf_data,
352 install : true)
353
354# Copy pam-webserver to etc/pam.d
355configure_file(input : 'pam-webserver',
356 output : 'webserver',
357 copy : true,
358 install_dir: '/etc/pam.d',
359 install : true)
360
361install_subdir('static', install_dir : 'share/www', strip_directory : true)
362
Ed Tanous02f1cd92021-10-27 12:09:06 -0700363# Source files
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530364
Ed Tanous02f1cd92021-10-27 12:09:06 -0700365srcfiles_bmcweb = [
366 'redfish-core/src/error_messages.cpp',
367 'redfish-core/src/utils/json_utils.cpp',
368 'src/boost_url.cpp',
369 'src/boost_beast.cpp',
370 'src/boost_asio.cpp',
371 'src/boost_asio_ssl.cpp',
372]
373
374# Generate the bmcweb executable
375executable(
376 'bmcweb',
377 srcfiles_bmcweb + ['src/webserver_main.cpp'],
378 include_directories : incdir,
379 dependencies: bmcweb_dependencies,
380 link_args: '-Wl,--gc-sections',
381 install: true,
382 install_dir:bindir
383)
384
385srcfiles_unittest = [
386 'include/ut/dbus_utility_test.cpp',
387 'include/ut/http_utility_test.cpp',
388 'include/ut/human_sort_test.cpp',
389 'redfish-core/ut/privileges_test.cpp',
390 'redfish-core/ut/lock_test.cpp',
391 'redfish-core/ut/configfile_test.cpp',
392 'redfish-core/ut/time_utils_test.cpp',
393 'redfish-core/ut/stl_utils_test.cpp',
394 'redfish-core/ut/hex_utils_test.cpp',
Ed Tanous333b5302021-11-17 00:11:28 +0000395 'http/ut/utility_test.cpp'
Ed Tanous02f1cd92021-10-27 12:09:06 -0700396]
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530397
398if(get_option('tests').enabled())
Ed Tanous02f1cd92021-10-27 12:09:06 -0700399 # generate the test executable
400 ut_bin = executable(
401 'bmcweb_unit_test',
402 srcfiles_unittest + srcfiles_bmcweb,
403 include_directories : incdir,
404 install_dir: bindir,
405 dependencies: bmcweb_dependencies + [
406 gtest,
407 gmock,
408 ]
409 )
410 test('bmcweb_unit_test', ut_bin)
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530411endif