@@ -2717,9 +2717,53 @@ if not fdt.found() and fdt_required.length() > 0
error('fdt not available but required by targets ' + ', '.join(fdt_required))
endif
+ubpf = not_found
+ubpf_opt = 'disabled'
+if have_system
+ ubpf_opt = get_option('ubpf')
+ if ubpf_opt in ['enabled', 'auto', 'system']
+ have_internal = fs.exists(meson.current_source_dir() / 'ubpf/vm/Makefile')
+ ubpf = dependency('ubpf', kwargs: static_kwargs,
+ method: 'pkg-config',
+ required: ubpf_opt == 'system' or
+ ubpf_opt == 'enabled' and not have_internal)
+ if ubpf.found()
+ ubpf_opt = 'system'
+ elif have_internal
+ ubpf_opt = 'internal'
+ else
+ ubpf_opt = 'disabled'
+ endif
+ endif
+ if ubpf_opt == 'internal'
+ ubpf_data = configuration_data()
+
+ ubpf_files = files(
+ 'ubpf/vm/ubpf_jit_x86_64.c',
+ 'ubpf/vm/ubpf_vm.c',
+ 'ubpf/vm/ubpf_loader.c',
+ )
+
+ ubpf_cargs = [
+ '-Wno-error', '-w',
+ '-include', 'ubpf-defs.h'
+ ]
+
+ configure_file(output: 'ubpf-defs.h', configuration: ubpf_data)
+ ubpf_inc = include_directories('ubpf/vm', 'ubpf/vm/inc')
+ libubpf = static_library('ubpf',
+ sources: ubpf_files,
+ c_args: ubpf_cargs,
+ include_directories: ubpf_inc)
+ ubpf = declare_dependency(link_with: libubpf,
+ include_directories: ubpf_inc)
+ endif
+endif
+
config_host_data.set('CONFIG_CAPSTONE', capstone.found())
config_host_data.set('CONFIG_FDT', fdt.found())
config_host_data.set('CONFIG_SLIRP', slirp.found())
+config_host_data.set('CONFIG_UBPF', ubpf.found())
#####################
# Generated sources #
@@ -3046,6 +3090,8 @@ subdir('softmmu')
common_ss.add(capstone)
specific_ss.add(files('cpu.c', 'disas.c', 'gdbstub.c'), capstone)
+common_ss.add(ubpf)
+
# Work around a gcc bug/misfeature wherein constant propagation looks
# through an alias:
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99696
@@ -3911,6 +3957,7 @@ summary_info += {'libudev': libudev}
# Dummy dependency, keep .found()
summary_info += {'FUSE lseek': fuse_lseek.found()}
summary_info += {'selinux': selinux}
+summary_info += {'ubpf support': ubpf_opt == 'internal' ? ubpf_opt : ubpf}
summary(summary_info, bool_yn: true, section: 'Dependencies')
if not supported_cpus.contains(cpu)
@@ -262,6 +262,9 @@ option('slirp', type: 'combo', value: 'auto',
option('fdt', type: 'combo', value: 'auto',
choices: ['disabled', 'enabled', 'auto', 'system', 'internal'],
description: 'Whether and how to find the libfdt library')
+option('ubpf', type: 'combo', value: 'auto',
+ choices: ['disabled', 'enabled', 'auto', 'system', 'internal'],
+ description: 'Whether and how to find the ubpf library')
option('selinux', type: 'feature', value: 'auto',
description: 'SELinux support in qemu-nbd')
@@ -72,6 +72,9 @@ char
capstone
~ (/qemu)?(/capstone/.*)
+ubpf
+ ~ (/qemu)?(/ubpf/vm/.*)
+
crypto
~ (/qemu)?((/include)?/crypto/.*|/hw/.*/crypto.*)
@@ -37,6 +37,8 @@ meson_options_help() {
printf "%s\n" ' getrandom()'
printf "%s\n" ' --enable-slirp[=CHOICE] Whether and how to find the slirp library'
printf "%s\n" ' (choices: auto/disabled/enabled/internal/system)'
+ printf "%s\n" ' --enable-ubpf[=CHOICE] Whether and how to find the ubpf library'
+ printf "%s\n" ' (choices: auto/disabled/enabled/internal/system)'
printf "%s\n" ' --enable-strip Strip targets on install'
printf "%s\n" ' --enable-tcg-interpreter TCG with bytecode interpreter (slow)'
printf "%s\n" ' --enable-trace-backends=CHOICES'
@@ -379,6 +381,9 @@ _meson_option_parse() {
--enable-slirp=*) quote_sh "-Dslirp=$2" ;;
--enable-slirp-smbd) printf "%s" -Dslirp_smbd=enabled ;;
--disable-slirp-smbd) printf "%s" -Dslirp_smbd=disabled ;;
+ --enable-ubpf) printf "%s" -Dubpf=enabled ;;
+ --disable-ubpf) printf "%s" -Dubpf=disabled ;;
+ --enable-ubpf=*) quote_sh "-Dubpf=$2" ;;
--enable-smartcard) printf "%s" -Dsmartcard=enabled ;;
--disable-smartcard) printf "%s" -Dsmartcard=disabled ;;
--enable-snappy) printf "%s" -Dsnappy=enabled ;;
Make meson to build iovisor/ubpf code in Qemu. Signed-off-by: Zhang Chen <chen.zhang@intel.com> --- meson.build | 47 +++++++++++++++++++++++++++++ meson_options.txt | 3 ++ scripts/coverity-scan/COMPONENTS.md | 3 ++ scripts/meson-buildoptions.sh | 5 +++ 4 files changed, 58 insertions(+)