1project('phosphor-bmc-code-mgmt', 'cpp',
2    default_options: [
3        'buildtype=debugoptimized',
4        'cpp_std=c++20',
5        'warning_level=3',
6        'werror=true'
7    ],
8    meson_version: '>= 0.57.0',
9    license: 'Apache-2.0',
10    version: '1.0')
11
12add_project_arguments(
13    '-DBOOST_SYSTEM_NO_DEPRECATED',
14    '-DBOOST_ERROR_CODE_HEADER_ONLY',
15    '-DBOOST_NO_RTTI',
16    '-DBOOST_NO_TYPEID',
17    '-DBOOST_ALL_NO_LIB',
18    '-DBOOST_ASIO_DISABLE_THREADS',
19    '-DBOOST_ASIO_NO_DEPRECATED',
20    language: 'cpp',
21)
22
23cpp = meson.get_compiler('cpp')
24
25conf = configuration_data()
26
27# DBus information
28conf.set_quoted('BMC_INVENTORY_INTERFACE', 'xyz.openbmc_project.Inventory.Item.Bmc')
29conf.set_quoted('BUSNAME_UPDATER', 'xyz.openbmc_project.Software.BMC.Updater')
30conf.set_quoted('DOWNLOAD_BUSNAME', 'xyz.openbmc_project.Software.Download')
31conf.set_quoted('FILEPATH_IFACE', 'xyz.openbmc_project.Common.FilePath')
32conf.set_quoted('INVENTORY_PATH', '/xyz/openbmc_project/inventory/')
33conf.set_quoted('MAPPER_BUSNAME', 'xyz.openbmc_project.ObjectMapper')
34conf.set_quoted('MAPPER_INTERFACE', 'xyz.openbmc_project.ObjectMapper')
35conf.set_quoted('MAPPER_PATH', '/xyz/openbmc_project/object_mapper')
36conf.set_quoted('SOFTWARE_OBJPATH', '/xyz/openbmc_project/software')
37conf.set_quoted('SYSTEMD_BUSNAME', 'org.freedesktop.systemd1')
38conf.set_quoted('SYSTEMD_PATH', '/org/freedesktop/systemd1')
39conf.set_quoted('SYSTEMD_INTERFACE', 'org.freedesktop.systemd1.Manager')
40conf.set_quoted('VERSION_BUSNAME', 'xyz.openbmc_project.Software.Version')
41conf.set_quoted('VERSION_IFACE', 'xyz.openbmc_project.Software.Version')
42conf.set_quoted('EXTENDED_VERSION_IFACE', 'xyz.openbmc_project.Software.ExtendedVersion')
43
44# Names of the forward and reverse associations
45conf.set_quoted('ACTIVATION_FWD_ASSOCIATION', 'inventory')
46conf.set_quoted('ACTIVATION_REV_ASSOCIATION', 'activation')
47conf.set_quoted('ACTIVE_FWD_ASSOCIATION', 'active')
48conf.set_quoted('ACTIVE_REV_ASSOCIATION', 'software_version')
49conf.set_quoted('FUNCTIONAL_FWD_ASSOCIATION', 'functional')
50conf.set_quoted('FUNCTIONAL_REV_ASSOCIATION', 'software_version')
51conf.set_quoted('UPDATEABLE_FWD_ASSOCIATION', 'updateable')
52conf.set_quoted('UPDATEABLE_REV_ASSOCIATION', 'software_version')
53
54# Filesystem files and directories
55# The path of the alt rwfs overlay
56conf.set_quoted('ALT_RWFS', '/media/alt/var/persist')
57# The prefix path for the versioned read-only bmc partitions
58conf.set_quoted('BMC_ROFS_PREFIX', get_option('media-dir') + '/rofs-')
59# The name of the BMC table of contents file
60conf.set_quoted('OS_RELEASE_FILE', '/etc/os-release')
61# The dir where activation data is stored in files
62conf.set_quoted('PERSIST_DIR', '/var/lib/phosphor-bmc-code-mgmt/')
63
64# Supported BMC layout types
65conf.set('STATIC_LAYOUT', get_option('bmc-layout').contains('static'))
66conf.set('UBIFS_LAYOUT', get_option('bmc-layout').contains('ubi'))
67conf.set('MMC_LAYOUT', get_option('bmc-layout').contains('mmc'))
68
69# Configurable features
70conf.set('HOST_BIOS_UPGRADE', get_option('host-bios-upgrade').enabled())
71conf.set('WANT_SIGNATURE_VERIFY', \
72    get_option('verify-signature').enabled() or \
73    get_option('verify-full-signature').enabled())
74conf.set('WANT_SIGNATURE_FULL_VERIFY', get_option('verify-full-signature').enabled())
75
76# Configurable variables
77conf.set('ACTIVE_BMC_MAX_ALLOWED', get_option('active-bmc-max-allowed'))
78conf.set_quoted('HASH_FILE_NAME', get_option('hash-file-name'))
79conf.set_quoted('IMG_UPLOAD_DIR', get_option('img-upload-dir'))
80conf.set_quoted('MANIFEST_FILE_NAME', get_option('manifest-file-name'))
81conf.set_quoted('MEDIA_DIR', get_option('media-dir'))
82optional_array = get_option('optional-images')
83optional_images = ''
84foreach optiona_image : optional_array
85    optional_images = ' '.join([optional_images, optiona_image])
86endforeach
87conf.set_quoted('OPTIONAL_IMAGES', optional_images)
88conf.set_quoted('PUBLICKEY_FILE_NAME', get_option('publickey-file-name'))
89conf.set_quoted('SIGNATURE_FILE_EXT', get_option('signature-file-ext'))
90conf.set_quoted('SIGNED_IMAGE_CONF_PATH', get_option('signed-image-conf-path'))
91conf.set_quoted('SYNC_LIST_DIR_PATH', get_option('sync-list-dir-path'))
92conf.set_quoted('SYNC_LIST_FILE_NAME', get_option('sync-list-file-name'))
93conf.set_quoted('BMC_MSL', get_option('bmc-msl'))
94conf.set_quoted('REGEX_BMC_MSL', get_option('regex-bmc-msl'))
95
96if get_option('host-bios-upgrade').enabled()
97    conf.set_quoted('BIOS_OBJPATH', get_option('bios-object-path'))
98endif
99
100if get_option('bmc-static-dual-image').enabled()
101  conf.set('BMC_STATIC_DUAL_IMAGE', get_option('bmc-static-dual-image').enabled())
102  conf.set_quoted('ALT_ROFS_DIR', get_option('alt-rofs-dir'))
103endif
104
105configure_file(output: 'config.h', configuration: conf)
106
107sdbusplus_dep = dependency('sdbusplus', required: false)
108sdbusplus_proj = dependency('', required: false)
109if not sdbusplus_dep.found() or sdbusplus_dep.type_name() == 'internal'
110    sdbusplus_proj = subproject('sdbusplus')
111endif
112if not sdbusplus_dep.found()
113    sdbusplus_dep = sdbusplus_proj.get_variable('sdbusplus_dep')
114endif
115
116if sdbusplus_proj.found()
117    sdbusplusplus_prog = sdbusplus_proj.get_variable('sdbusplusplus_prog')
118    sdbuspp_gen_meson_prog = sdbusplus_proj.get_variable(
119        'sdbuspp_gen_meson_prog')
120else
121    sdbusplusplus_prog = find_program('sdbus++', native: true)
122    sdbuspp_gen_meson_prog = find_program('sdbus++-gen-meson', native: true)
123endif
124
125cereal_dep = dependency('cereal', required: false)
126has_cereal = cpp.has_header_symbol(
127    'cereal/cereal.hpp',
128    'cereal::specialize',
129    dependencies: cereal_dep,
130    required: false)
131if not has_cereal
132    cereal_opts = import('cmake').subproject_options()
133    cereal_opts.add_cmake_defines({'BUILD_TESTS': 'OFF'})
134    cereal_proj = import('cmake').subproject(
135        'cereal',
136        options: cereal_opts,
137        required: false)
138    assert(cereal_proj.found(), 'cereal is required')
139    cereal_dep = cereal_proj.dependency('cereal')
140endif
141
142deps = [
143    dependency(
144        'phosphor-dbus-interfaces',
145        fallback: ['phosphor-dbus-interfaces', 'phosphor_dbus_interfaces_dep'],
146    ),
147    dependency(
148        'phosphor-logging',
149        fallback: ['phosphor-logging', 'phosphor_logging_dep'],
150    ),
151    sdbusplus_dep,
152    cereal_dep,
153]
154
155ssl = dependency('openssl')
156
157systemd = dependency('systemd')
158systemd_system_unit_dir = systemd.get_variable(pkgconfig : 'systemdsystemunitdir')
159
160unit_files = [
161    'obmc-flash-bmc-setenv@.service.in',
162    'reboot-guard-disable.service.in',
163    'reboot-guard-enable.service.in',
164    'force-reboot.service.in',
165    'usr-local.mount.in',
166    'xyz.openbmc_project.Software.BMC.Updater.service.in',
167    'xyz.openbmc_project.Software.Download.service.in',
168    'xyz.openbmc_project.Software.Sync.service.in',
169    'xyz.openbmc_project.Software.Version.service.in'
170]
171
172subdir('xyz/openbmc_project/Software/Image')
173
174image_updater_sources = files(
175    'activation.cpp',
176    'images.cpp',
177    'item_updater.cpp',
178    'item_updater_main.cpp',
179    'serialize.cpp',
180    'version.cpp',
181    'utils.cpp',
182    'msl_verify.cpp'
183)
184
185if get_option('bmc-layout').contains('static')
186    image_updater_sources += files(
187        'static/flash.cpp',
188        'static/item_updater_helper.cpp'
189    )
190elif get_option('bmc-layout').contains('ubi')
191    image_updater_sources += files(
192        'ubi/flash.cpp',
193        'ubi/item_updater_helper.cpp'
194    )
195
196    unit_files += [
197        'ubi/obmc-flash-bmc-cleanup.service.in',
198        'ubi/obmc-flash-bmc-mirroruboot.service.in',
199        'ubi/obmc-flash-bmc-ubiremount.service.in',
200        'ubi/obmc-flash-bmc-ubiro@.service.in',
201        'ubi/obmc-flash-bmc-ubiro-remove@.service.in',
202        'ubi/obmc-flash-bmc-ubirw.service.in',
203        'ubi/obmc-flash-bmc-ubirw-remove.service.in',
204        'ubi/obmc-flash-bmc-updateubootvars@.service.in'
205    ]
206elif get_option('bmc-layout').contains('mmc')
207    image_updater_sources += files(
208        'mmc/flash.cpp',
209        'mmc/item_updater_helper.cpp'
210    )
211
212    unit_files += [
213        'mmc/obmc-flash-mmc@.service.in',
214        'mmc/obmc-flash-mmc-mount.service.in',
215        'mmc/obmc-flash-mmc-remove@.service.in',
216        'mmc/obmc-flash-mmc-setprimary@.service.in',
217        'mmc/obmc-flash-mmc-umount.service.in',
218    ]
219endif
220
221if get_option('host-bios-upgrade').enabled()
222    unit_files += 'obmc-flash-host-bios@.service.in'
223endif
224
225if get_option('bmc-static-dual-image').enabled()
226    unit_files += 'static/obmc-flash-bmc-static-mount-alt.service.in'
227endif
228
229if get_option('sync-bmc-files').enabled()
230    executable(
231        'phosphor-sync-software-manager',
232        'sync_manager.cpp',
233        'sync_manager_main.cpp',
234        'sync_watch.cpp',
235        dependencies: deps,
236        install: true
237    )
238
239    install_data('synclist',
240        install_dir:  get_option('sysconfdir')
241    )
242endif
243
244if (get_option('verify-signature').enabled() or \
245    get_option('verify-full-signature').enabled())
246    image_updater_sources += files(
247        'utils.cpp',
248        'image_verify.cpp',
249        'openssl_alloc.cpp'
250    )
251endif
252
253executable(
254    'phosphor-download-manager',
255    'download_manager.cpp',
256    'download_manager_main.cpp',
257    dependencies: deps,
258    install: true
259)
260
261executable(
262    'phosphor-image-updater',
263    image_error_cpp,
264    image_error_hpp,
265    image_updater_sources,
266    dependencies: [deps, ssl],
267    install: true
268)
269
270executable(
271    'phosphor-version-software-manager',
272    image_error_cpp,
273    image_error_hpp,
274    'image_manager.cpp',
275    'image_manager_main.cpp',
276    'version.cpp',
277    'watch.cpp',
278    dependencies: [deps, ssl],
279    install: true
280)
281
282install_data('obmc-flash-bmc',
283    install_mode: 'rwxr-xr-x',
284    install_dir: get_option('bindir')
285)
286
287install_data('detect-slot-aspeed',
288    install_mode: 'rwxr-xr-x',
289    install_dir: get_option('bindir')
290)
291
292install_data('software.conf',
293    install_dir: '/usr/lib/tmpfiles.d/'
294)
295
296foreach u : unit_files
297    configure_file(
298        input: u,
299        output: '@BASENAME@',
300        configuration: conf,
301        install: true,
302        install_dir: systemd_system_unit_dir,
303    )
304endforeach
305
306# If test coverage of source files within the root directory are wanted,
307# need to define and build the tests from here
308build_tests = get_option('tests')
309if not build_tests.disabled()
310    oe_sdk = get_option('oe-sdk')
311    if oe_sdk.enabled()
312        # Setup OE SYSROOT
313        OECORE_TARGET_SYSROOT = run_command('sh', '-c', 'echo $OECORE_TARGET_SYSROOT').stdout().strip()
314        if OECORE_TARGET_SYSROOT == ''
315            error('Unable to get $OECORE_TARGET_SYSROOT, check your environment.')
316        endif
317        message('OE_SYSROOT: ' + OECORE_TARGET_SYSROOT)
318        rpath = ':'.join([OECORE_TARGET_SYSROOT + '/lib', OECORE_TARGET_SYSROOT + '/usr/lib'])
319        ld_so = run_command('sh', '-c', 'find ' + OECORE_TARGET_SYSROOT + '/lib/ld-*.so | sort -r -n | head -n1').stdout().strip()
320        dynamic_linker = ['-Wl,-dynamic-linker,' + ld_so]
321    else
322        dynamic_linker = []
323    endif
324
325    gtest = dependency('gtest', main: true, disabler: true, required: build_tests)
326    include_srcs = declare_dependency(sources: [
327        'utils.cpp',
328        'image_verify.cpp',
329        'images.cpp',
330        'version.cpp']
331    )
332
333    test('utest',
334        executable(
335            'utest',
336            './test/utest.cpp',
337            link_args: dynamic_linker,
338            build_rpath: get_option('oe-sdk').enabled() ? rpath : '',
339            dependencies: [deps, gtest, include_srcs, ssl]
340        )
341)
342endif
343
344if get_option('usb-code-update').enabled()
345    subdir('usb')
346endif
347