blob: bdfa36eb0cd9f3b7b7d6be0864000bf89da2bac4 [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',
75 'pam' : '-DWEBSERVER_ENABLE_PAM',
76 'redfish' : '-DBMCWEB_ENABLE_REDFISH',
77 'redfish-bmc-journal' : '-DBMCWEB_ENABLE_REDFISH_BMC_JOURNAL',
78 'redfish-cpu-log' : '-DBMCWEB_ENABLE_REDFISH_CPU_LOG',
79 'redfish-dbus-log' : '-DBMCWEB_ENABLE_REDFISH_DBUS_LOG_ENTRIES',
Spencer Kub7028eb2021-10-26 15:27:35 +080080 'redfish-host-logger' : '-DBMCWEB_ENABLE_REDFISH_HOST_LOGGER',
Manojkiran Eda2d74fbc2021-10-28 12:39:49 +053081 'redfish-dump-log' : '-DBMCWEB_ENABLE_REDFISH_DUMP_LOG',
82 'redfish-provisioning-feature' : '-DBMCWEB_ENABLE_REDFISH_PROVISIONING_FEATURE',
83 'rest' : '-DBMCWEB_ENABLE_DBUS_REST',
84 'redfish-allow-deprecated-power-thermal' : '-DBMCWEB_ALLOW_DEPRECATED_POWER_THERMAL',
85 'redfish-new-powersubsystem-thermalsubsystem' : '-DBMCWEB_NEW_POWERSUBSYSTEM_THERMALSUBSYSTEM',
86 'session-auth' : '-DBMCWEB_ENABLE_SESSION_AUTHENTICATION',
87 'static-hosting' : '-DBMCWEB_ENABLE_STATIC_HOSTING',
88 #'vm-nbdproxy' : '-DBMCWEB_ENABLE_VM_NBDPROXY',
89 'vm-websocket' : '-DBMCWEB_ENABLE_VM_WEBSOCKET',
90 'xtoken-auth' : '-DBMCWEB_ENABLE_XTOKEN_AUTHENTICATION',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +053091}
92
93# Get the options status and build a project summary to show which flags are
94# being enabled during the configuration time.
95
96foreach option_key,option_value : feature_map
97 if(get_option(option_key).enabled())
98 if(option_key == 'mutual-tls-auth' or option_key == 'insecure-disable-ssl')
99 if(get_option('insecure-disable-ssl').disabled() or get_option('mutual-tls-auth').disabled())
100 add_project_arguments(option_value,language:'cpp')
101 summary(option_key,option_value, section : 'Enabled Features')
102 endif
103 else
104 summary(option_key,option_value, section : 'Enabled Features')
105 add_project_arguments(option_value,language:'cpp')
106 endif
107 else
108 if(option_key == 'insecure-disable-ssl')
109 summary('ssl','-DBMCWEB_ENABLE_SSL', section : 'Enabled Features')
110 add_project_arguments('-DBMCWEB_ENABLE_SSL', language : 'cpp')
111 endif
112 endif
113endforeach
114
115if(get_option('tests').enabled())
116 summary('unittest','NA', section : 'Enabled Features')
117endif
118
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530119# Add compiler arguments
120
121# -Wpedantic, -Wextra comes by default with warning level
122add_project_arguments(
123 cxx.get_supported_arguments([
124 '-Wold-style-cast',
125 '-Wcast-align',
126 '-Wunused',
127 '-Woverloaded-virtual',
128 '-Wconversion',
129 '-Wsign-conversion',
130 '-Wno-attributes',
131 ]),
132 language: 'cpp'
133)
134
135if (cxx.get_id() == 'clang' and cxx.version().version_compare('>9.0'))
136add_project_arguments(
137 cxx.get_supported_arguments([
138 '-Weverything',
139 '-Wno-c++98-compat',
140 '-Wno-c++98-compat-pedantic',
141 '-Wno-global-constructors',
142 '-Wno-exit-time-destructors',
143 '-Wno-shadow',
144 '-Wno-used-but-marked-unused',
145 '-Wno-documentation-unknown-command',
146 '-Wno-weak-vtables',
147 '-Wno-documentation',
148 '-Wno-padded',
149 '-Wunused-parameter',
150 '-Wcovered-switch-default',
151 '-Wcomma',
152 '-Wextra-semi',
153 '-Wzero-as-null-pointer-constant',
154 '-Wswitch-enum',
155 '-Wnull-dereference',
156 '-Wdouble-promotion',
Ed Tanousd32c4fa2021-09-14 13:16:51 -0700157 '-Wno-newline-eof',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530158 '-Wformat=2',
159 ]),
160 language:'cpp')
161endif
162
163# if compiler is gnu-gcc , and version is > 8.0 then we add few more
164# compiler arguments , we know that will pass
165
166if (cxx.get_id() == 'gcc' and cxx.version().version_compare('>8.0'))
167
168 ## remove once bmcweb/issues/147 is fixed
169 add_global_link_arguments('-Wno-stringop-overflow',language:['c','cpp'])
170 add_project_arguments('-Wno-stringop-overflow',language:['c','cpp'])
171
172 add_project_arguments(
173 cxx.get_supported_arguments([
174 '-Wduplicated-cond',
175 '-Wduplicated-branches',
176 '-Wlogical-op',
177 '-Wunused-parameter',
178 '-Wnull-dereference',
179 '-Wdouble-promotion',
180 '-Wformat=2',
181 ]),
182 language:'cpp')
Ed Tanousc66403c2021-09-22 15:28:57 -0700183endif
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530184
Ed Tanousc66403c2021-09-22 15:28:57 -0700185if (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
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530189
Ed Tanousc66403c2021-09-22 15:28:57 -0700190 add_project_arguments(
191 cxx.get_supported_arguments([
192 '-fno-fat-lto-objects',
193 '-fvisibility=hidden',
194 '-fvisibility-inlines-hidden'
195 ]),
196 language: 'cpp')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530197
Ed Tanousc66403c2021-09-22 15:28:57 -0700198 if cxx.has_link_argument('-Wl,--exclude-libs,ALL')
199 add_project_link_arguments('-Wl,--exclude-libs,ALL', language: 'cpp')
George Liue8204932021-02-01 14:42:49 +0800200 endif
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530201 endif
202endif
203
Ed Tanousc66403c2021-09-22 15:28:57 -0700204if( get_option('bmcweb-logging').enabled() or \
205 get_option('buildtype').startswith('debug'))
206 add_project_arguments([
207 '-DBMCWEB_ENABLE_LOGGING',
208 '-DBMCWEB_ENABLE_DEBUG'
209 ],
210 language : 'cpp')
211
212 summary({'debug' :'-DBMCWEB_ENABLE_DEBUG',
213 'logging' : '-DBMCWEB_ENABLE_LOGGING',
Ed Tanousc66403c2021-09-22 15:28:57 -0700214
Ed Tanousc66403c2021-09-22 15:28:57 -0700215 },section : 'Enabled Features')
216endif
217
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530218# Set Compiler Security flags
219
220security_flags = [
Ed Tanouscf2f9322021-09-22 15:34:41 -0700221 '-fstack-protector-strong',
222 '-fPIE',
223 '-fPIC',
224 '-D_FORTIFY_SOURCE=2',
225 '-Wformat',
226 '-Wformat-security'
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530227]
228
229## Add security flags for builds of type 'release','debugoptimized' and 'minsize'
230
231if not (get_option('buildtype') == 'plain' or get_option('buildtype').startswith('debug'))
232 add_project_arguments(
233 cxx.get_supported_arguments([
234 security_flags
235 ]),
236 language: 'cpp')
237endif
238
239# Boost dependency configuration
240
241add_project_arguments(
242cxx.get_supported_arguments([
Ed Tanouscf2f9322021-09-22 15:34:41 -0700243 '-DBOOST_ASIO_USE_TS_EXECUTOR_AS_DEFAULT',
244 '-DBOOST_ASIO_DISABLE_THREADS',
245 '-DBOOST_BEAST_USE_STD_STRING_VIEW',
Ed Tanous2107fe12021-10-09 16:10:52 -0700246 '-DBOOST_BEAST_SEPARATE_COMPILATION',
247 '-DBOOST_ASIO_SEPARATE_COMPILATION',
Ed Tanouscf2f9322021-09-22 15:34:41 -0700248 '-DBOOST_ERROR_CODE_HEADER_ONLY',
249 '-DBOOST_SYSTEM_NO_DEPRECATED',
250 '-DBOOST_ASIO_NO_DEPRECATED',
251 '-DBOOST_ALL_NO_LIB',
252 '-DBOOST_NO_RTTI',
253 '-DBOOST_NO_TYPEID',
254 '-DBOOST_COROUTINES_NO_DEPRECATION_WARNING',
255 '-DBOOST_URL_STANDALONE',
256 '-DBOOST_URL_HEADER_ONLY',
257 '-DBOOST_ALLOW_DEPRECATED_HEADERS',
258 '-DJSON_NOEXCEPTION'
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530259]),
260language : 'cpp')
261
262# Find the dependency modules, if not found use meson wrap to get them
263# automatically during the configure step
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800264bmcweb_dependencies = []
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530265
266pam = cxx.find_library('pam', required: get_option('pam'))
267atomic = cxx.find_library('atomic', required: true)
268openssl = dependency('openssl', required : true)
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800269bmcweb_dependencies += [pam, atomic, openssl]
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530270
Ed Tanous7bb985e2021-09-02 14:31:40 -0700271sdbusplus = dependency('sdbusplus', required : false, include_type: 'system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530272if not sdbusplus.found()
273 sdbusplus_proj = subproject('sdbusplus', required: true)
274 sdbusplus = sdbusplus_proj.get_variable('sdbusplus_dep')
275 sdbusplus = sdbusplus.as_system('system')
276endif
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800277bmcweb_dependencies += sdbusplus
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530278
279if get_option('rest').enabled()
Patrick Williams565c0912021-10-12 20:22:45 -0500280 tinyxml = dependency('tinyxml2',
281 default_options: ['tests=false'],
282 include_type: 'system',
283 )
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800284 bmcweb_dependencies += tinyxml
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530285endif
286
287systemd = dependency('systemd')
288zlib = dependency('zlib')
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800289bmcweb_dependencies += [systemd, zlib]
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530290
291if cxx.has_header('nlohmann/json.hpp')
292 nlohmann_json = declare_dependency()
293else
Josh Lehan259df352021-10-07 15:20:02 -0700294 nlohmann_json_proj = subproject('nlohmann', required: true)
295 nlohmann_json = nlohmann_json_proj.get_variable('nlohmann_json_dep')
Ed Tanousb00dcc22021-02-23 12:52:50 -0800296 nlohmann_json = nlohmann_json.as_system('system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530297endif
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800298bmcweb_dependencies += nlohmann_json
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530299
Ed Tanous9c7b76c2021-10-25 12:06:39 -0700300boost = dependency('boost',version : '>=1.77.0', required : false, include_type: 'system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530301if not boost.found()
302 subproject('boost', required: false)
Ed Tanous9c7b76c2021-10-25 12:06:39 -0700303 boost_inc = include_directories('subprojects/boost_1_77_0/', is_system:true)
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530304 boost = declare_dependency(include_directories : boost_inc)
Ed Tanousb00dcc22021-02-23 12:52:50 -0800305 boost = boost.as_system('system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530306endif
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800307bmcweb_dependencies += boost
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530308
309if cxx.has_header('boost/url/url_view.hpp')
310 boost_url = declare_dependency()
311else
312 subproject('boost-url', required: false)
313 boost_url_inc = include_directories('subprojects/boost-url/include', is_system:true)
314 boost_url= declare_dependency(include_directories : boost_url_inc)
Ed Tanousb00dcc22021-02-23 12:52:50 -0800315 boost_url = boost_url.as_system('system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530316endif
Jason M. Billsceb8ddc2020-11-23 14:38:39 -0800317bmcweb_dependencies += boost_url
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530318
319if get_option('tests').enabled()
320 gtest = dependency('gtest', main: true,disabler: true, required : false)
321 gmock = dependency('gmock', required : false)
322 if not gtest.found() and get_option('tests').enabled()
323 gtest_proj = subproject('gtest', required: true)
324 gtest = gtest_proj.get_variable('gtest_main_dep')
325 gmock = gtest_proj.get_variable('gmock_dep')
326 endif
Ed Tanousb00dcc22021-02-23 12:52:50 -0800327 gtest = gtest.as_system('system')
328 gmock = gmock.as_system('system')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530329endif
330
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530331# Gather the Configuration data
332
333conf_data = configuration_data()
Ed Tanous0260d9d2021-02-07 19:31:07 +0000334conf_data.set('BMCWEB_HTTP_REQ_BODY_LIMIT_MB', get_option('http-body-limit'))
335xss_enabled = get_option('insecure-disable-xss')
Ed Tanousfeaf1502021-02-23 08:53:50 -0800336conf_data.set10('BMCWEB_INSECURE_DISABLE_XSS_PREVENTION', xss_enabled.enabled())
Ed Tanous0260d9d2021-02-07 19:31:07 +0000337conf_data.set('MESON_INSTALL_PREFIX', get_option('prefix'))
Vivekanand Veeracholan54d13552021-06-14 19:16:36 -0700338conf_data.set('HTTPS_PORT', get_option('https_port'))
Ed Tanous75312982021-02-11 14:26:02 -0800339configure_file(input: 'bmcweb_config.h.in',
340 output: 'bmcweb_config.h',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530341 configuration: conf_data)
342
343# Configure and install systemd unit files
344
Patrick Williams6a779932021-10-12 20:08:44 -0500345systemd_system_unit_dir = systemd.get_variable(pkgconfig: 'systemdsystemunitdir')
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530346
347bindir = get_option('prefix') + '/' +get_option('bindir')
348
349summary({
350 'prefix' : get_option('prefix'),
351 'bindir' : bindir,
352 'systemd unit directory' : systemd_system_unit_dir
353 }, section : 'Directories')
354
Vivekanand Veeracholan54d13552021-06-14 19:16:36 -0700355configure_file(input : 'bmcweb.socket.in',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530356 output : 'bmcweb.socket',
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530357 install_dir: systemd_system_unit_dir,
Vivekanand Veeracholan54d13552021-06-14 19:16:36 -0700358 configuration: conf_data,
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530359 install : true)
360
361configure_file(input : 'bmcweb.service.in',
362 output : 'bmcweb.service',
363 install_dir: systemd_system_unit_dir,
364 configuration: conf_data,
365 install : true)
366
367# Copy pam-webserver to etc/pam.d
368configure_file(input : 'pam-webserver',
369 output : 'webserver',
370 copy : true,
371 install_dir: '/etc/pam.d',
372 install : true)
373
374install_subdir('static', install_dir : 'share/www', strip_directory : true)
375
Ed Tanous02f1cd92021-10-27 12:09:06 -0700376# Source files
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530377
Ed Tanous02f1cd92021-10-27 12:09:06 -0700378srcfiles_bmcweb = [
379 'redfish-core/src/error_messages.cpp',
380 'redfish-core/src/utils/json_utils.cpp',
381 'src/boost_url.cpp',
382 'src/boost_beast.cpp',
383 'src/boost_asio.cpp',
384 'src/boost_asio_ssl.cpp',
385]
386
387# Generate the bmcweb executable
388executable(
389 'bmcweb',
390 srcfiles_bmcweb + ['src/webserver_main.cpp'],
391 include_directories : incdir,
392 dependencies: bmcweb_dependencies,
393 link_args: '-Wl,--gc-sections',
394 install: true,
395 install_dir:bindir
396)
397
398srcfiles_unittest = [
399 'include/ut/dbus_utility_test.cpp',
400 'include/ut/http_utility_test.cpp',
401 'include/ut/human_sort_test.cpp',
402 'redfish-core/ut/privileges_test.cpp',
403 'redfish-core/ut/lock_test.cpp',
404 'redfish-core/ut/configfile_test.cpp',
405 'redfish-core/ut/time_utils_test.cpp',
406 'redfish-core/ut/stl_utils_test.cpp',
407 'redfish-core/ut/hex_utils_test.cpp',
Ed Tanous333b5302021-11-17 00:11:28 +0000408 'http/ut/utility_test.cpp'
Ed Tanous02f1cd92021-10-27 12:09:06 -0700409]
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530410
411if(get_option('tests').enabled())
Ed Tanous02f1cd92021-10-27 12:09:06 -0700412 # generate the test executable
413 ut_bin = executable(
414 'bmcweb_unit_test',
415 srcfiles_unittest + srcfiles_bmcweb,
416 include_directories : incdir,
417 install_dir: bindir,
418 dependencies: bmcweb_dependencies + [
419 gtest,
420 gmock,
421 ]
422 )
423 test('bmcweb_unit_test', ut_bin)
Manojkiran Edaaf6298d2020-05-27 08:51:32 +0530424endif