xref: /qemu/meson.build (revision cff1ec67509cacc2ea30d19ba61fa0ab0772e119)
1project('qemu', ['c'], meson_version: '>=1.5.0',
2        default_options: ['warning_level=1', 'c_std=gnu11', 'cpp_std=gnu++11', 'b_colorout=auto',
3                          'b_staticpic=false', 'stdsplit=false', 'optimization=2', 'b_pie=true'],
4        version: files('VERSION'))
5
6meson.add_devenv({ 'MESON_BUILD_ROOT' : meson.project_build_root() })
7
8add_test_setup('quick', exclude_suites: ['slow', 'thorough'], is_default: true,
9               env: ['RUST_BACKTRACE=1'])
10add_test_setup('slow', exclude_suites: ['thorough'],
11               env: ['G_TEST_SLOW=1', 'SPEED=slow', 'RUST_BACKTRACE=1'])
12add_test_setup('thorough',
13               env: ['G_TEST_SLOW=1', 'SPEED=thorough', 'RUST_BACKTRACE=1'])
14
15meson.add_postconf_script(find_program('scripts/symlink-install-tree.py'))
16
17####################
18# Global variables #
19####################
20
21not_found = dependency('', required: false)
22keyval = import('keyval')
23rust = import('rust')
24ss = import('sourceset')
25fs = import('fs')
26
27host_os = host_machine.system()
28config_host = keyval.load(meson.current_build_dir() / 'config-host.mak')
29
30# Temporary directory used for files created while
31# configure runs. Since it is in the build directory
32# we can safely blow away any previous version of it
33# (and we need not jump through hoops to try to delete
34# it when configure exits.)
35tmpdir = meson.current_build_dir() / 'meson-private/temp'
36
37if get_option('qemu_suffix').startswith('/')
38  error('qemu_suffix cannot start with a /')
39endif
40
41qemu_confdir = get_option('sysconfdir') / get_option('qemu_suffix')
42qemu_datadir = get_option('datadir') / get_option('qemu_suffix')
43qemu_docdir = get_option('docdir') / get_option('qemu_suffix')
44qemu_moddir = get_option('libdir') / get_option('qemu_suffix')
45
46qemu_desktopdir = get_option('datadir') / 'applications'
47qemu_icondir = get_option('datadir') / 'icons'
48
49genh = []
50qapi_trace_events = []
51
52bsd_oses = ['gnu/kfreebsd', 'freebsd', 'netbsd', 'openbsd', 'dragonfly', 'darwin']
53supported_oses = ['windows', 'freebsd', 'netbsd', 'openbsd', 'darwin', 'sunos', 'linux']
54supported_cpus = ['ppc', 'ppc64', 's390x', 'riscv32', 'riscv64', 'x86', 'x86_64',
55  'arm', 'aarch64', 'loongarch64', 'mips', 'mips64', 'sparc64']
56
57cpu = host_machine.cpu_family()
58
59target_dirs = config_host['TARGET_DIRS'].split()
60
61# type of binaries to build
62have_linux_user = false
63have_bsd_user = false
64have_system = false
65foreach target : target_dirs
66  have_linux_user = have_linux_user or target.endswith('linux-user')
67  have_bsd_user = have_bsd_user or target.endswith('bsd-user')
68  have_system = have_system or target.endswith('-softmmu')
69endforeach
70have_user = have_linux_user or have_bsd_user
71
72############
73# Programs #
74############
75
76sh = find_program('sh')
77python = import('python').find_installation()
78
79cc = meson.get_compiler('c')
80all_languages = ['c']
81if host_os == 'windows' and add_languages('cpp', required: false, native: false)
82  all_languages += ['cpp']
83  cxx = meson.get_compiler('cpp')
84endif
85if host_os == 'darwin' and \
86   add_languages('objc', required: true, native: false)
87  all_languages += ['objc']
88  objc = meson.get_compiler('objc')
89endif
90
91have_rust = add_languages('rust', native: false,
92    required: get_option('rust').disable_auto_if(not have_system))
93have_rust = have_rust and add_languages('rust', native: true,
94    required: get_option('rust').disable_auto_if(not have_system))
95if have_rust
96  rustc = meson.get_compiler('rust')
97  if rustc.version().version_compare('<1.63.0')
98    if get_option('rust').enabled()
99      error('rustc version ' + rustc.version() + ' is unsupported. Please upgrade to at least 1.63.0')
100    else
101      warning('rustc version ' + rustc.version() + ' is unsupported, disabling Rust compilation.')
102      message('Please upgrade to at least 1.63.0 to use Rust.')
103      have_rust = false
104    endif
105  endif
106endif
107
108if have_rust
109  bindgen = find_program('bindgen', required: get_option('rust'))
110  if not bindgen.found() or bindgen.version().version_compare('<0.60.0')
111    if get_option('rust').enabled()
112      error('bindgen version ' + bindgen.version() + ' is unsupported. You can install a new version with "cargo install bindgen-cli"')
113    else
114      if bindgen.found()
115        warning('bindgen version ' + bindgen.version() + ' is unsupported, disabling Rust compilation.')
116      else
117        warning('bindgen not found, disabling Rust compilation.')
118      endif
119      message('To use Rust you can install a new version with "cargo install bindgen-cli"')
120      have_rust = false
121    endif
122  endif
123endif
124
125if have_rust
126  rustc_args = [find_program('scripts/rust/rustc_args.py'),
127    '--rustc-version', rustc.version(),
128    '--workspace', meson.project_source_root() / 'rust']
129  if get_option('strict_rust_lints')
130    rustc_args += ['--strict-lints']
131  endif
132
133  rustfmt = find_program('rustfmt', required: false)
134
135  rustc_lint_args = run_command(rustc_args, '--lints',
136     capture: true, check: true).stdout().strip().splitlines()
137
138  # Apart from procedural macros, our Rust executables will often link
139  # with C code, so include all the libraries that C code needs.  This
140  # is safe; https://github.com/rust-lang/rust/pull/54675 says that
141  # passing -nodefaultlibs to the linker "was more ideological to
142  # start with than anything".
143  add_project_arguments(rustc_lint_args +
144      ['--cfg', 'MESON', '-C', 'default-linker-libraries'],
145      native: false, language: 'rust')
146  add_project_arguments(rustc_lint_args + ['--cfg', 'MESON'],
147      native: true, language: 'rust')
148endif
149
150dtrace = not_found
151stap = not_found
152if 'dtrace' in get_option('trace_backends')
153  dtrace = find_program('dtrace', required: true)
154  stap = find_program('stap', required: false)
155  if stap.found()
156    # Workaround to avoid dtrace(1) producing a file with 'hidden' symbol
157    # visibility. Define STAP_SDT_V2 to produce 'default' symbol visibility
158    # instead. QEMU --enable-modules depends on this because the SystemTap
159    # semaphores are linked into the main binary and not the module's shared
160    # object.
161    add_global_arguments('-DSTAP_SDT_V2',
162                         native: false, language: all_languages)
163  endif
164endif
165
166if get_option('iasl') == ''
167  iasl = find_program('iasl', required: false)
168else
169  iasl = find_program(get_option('iasl'), required: true)
170endif
171
172edk2_targets = [ 'arm-softmmu', 'aarch64-softmmu', 'i386-softmmu', 'x86_64-softmmu', 'riscv64-softmmu', 'loongarch64-softmmu' ]
173unpack_edk2_blobs = false
174foreach target : edk2_targets
175  if target in target_dirs
176    bzip2 = find_program('bzip2', required: get_option('install_blobs'))
177    unpack_edk2_blobs = bzip2.found()
178    break
179  endif
180endforeach
181
182#####################
183# Option validation #
184#####################
185
186# Fuzzing
187if get_option('fuzzing') and get_option('fuzzing_engine') == '' and \
188    not cc.links('''
189          #include <stdint.h>
190          #include <sys/types.h>
191          int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);
192          int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { return 0; }
193        ''',
194        args: ['-Werror', '-fsanitize=fuzzer'])
195  error('Your compiler does not support -fsanitize=fuzzer')
196endif
197
198# Tracing backends
199if 'ftrace' in get_option('trace_backends') and host_os != 'linux'
200  error('ftrace is supported only on Linux')
201endif
202if 'syslog' in get_option('trace_backends') and not cc.compiles('''
203    #include <syslog.h>
204    int main(void) {
205        openlog("qemu", LOG_PID, LOG_DAEMON);
206        syslog(LOG_INFO, "configure");
207        return 0;
208    }''')
209  error('syslog is not supported on this system')
210endif
211
212# Miscellaneous Linux-only features
213get_option('mpath') \
214  .require(host_os == 'linux', error_message: 'Multipath is supported only on Linux')
215
216multiprocess_allowed = get_option('multiprocess') \
217  .require(host_os == 'linux', error_message: 'Multiprocess QEMU is supported only on Linux') \
218  .allowed()
219
220vfio_user_server_allowed = get_option('vfio_user_server') \
221  .require(host_os == 'linux', error_message: 'vfio-user server is supported only on Linux') \
222  .allowed()
223
224have_tpm = get_option('tpm') \
225  .require(host_os != 'windows', error_message: 'TPM emulation only available on POSIX systems') \
226  .allowed()
227
228# vhost
229have_vhost_user = get_option('vhost_user') \
230  .disable_auto_if(host_os != 'linux') \
231  .require(host_os != 'windows',
232           error_message: 'vhost-user is not available on Windows').allowed()
233have_vhost_vdpa = get_option('vhost_vdpa') \
234  .require(host_os == 'linux',
235           error_message: 'vhost-vdpa is only available on Linux').allowed()
236have_vhost_kernel = get_option('vhost_kernel') \
237  .require(host_os == 'linux',
238           error_message: 'vhost-kernel is only available on Linux').allowed()
239have_vhost_user_crypto = get_option('vhost_crypto') \
240  .require(have_vhost_user,
241           error_message: 'vhost-crypto requires vhost-user to be enabled').allowed()
242
243have_vhost = have_vhost_user or have_vhost_vdpa or have_vhost_kernel
244
245have_vhost_net_user = have_vhost_user and get_option('vhost_net').allowed()
246have_vhost_net_vdpa = have_vhost_vdpa and get_option('vhost_net').allowed()
247have_vhost_net_kernel = have_vhost_kernel and get_option('vhost_net').allowed()
248have_vhost_net = have_vhost_net_kernel or have_vhost_net_user or have_vhost_net_vdpa
249
250have_tools = get_option('tools') \
251  .disable_auto_if(not have_system) \
252  .allowed()
253have_ga = get_option('guest_agent') \
254  .disable_auto_if(not have_system and not have_tools) \
255  .require(host_os in ['sunos', 'linux', 'windows', 'freebsd', 'netbsd', 'openbsd'],
256           error_message: 'unsupported OS for QEMU guest agent') \
257  .allowed()
258have_block = have_system or have_tools
259
260enable_modules = get_option('modules') \
261  .require(host_os != 'windows',
262           error_message: 'Modules are not available for Windows') \
263  .require(not get_option('prefer_static'),
264           error_message: 'Modules are incompatible with static linking') \
265  .allowed()
266
267#######################################
268# Variables for host and accelerators #
269#######################################
270
271if cpu not in supported_cpus
272  host_arch = 'unknown'
273elif cpu == 'x86'
274  host_arch = 'i386'
275elif cpu == 'mips64'
276  host_arch = 'mips'
277elif cpu in ['riscv32', 'riscv64']
278  host_arch = 'riscv'
279else
280  host_arch = cpu
281endif
282
283if cpu == 'x86'
284  kvm_targets = ['i386-softmmu']
285elif cpu == 'x86_64'
286  kvm_targets = ['i386-softmmu', 'x86_64-softmmu']
287elif cpu == 'aarch64'
288  kvm_targets = ['aarch64-softmmu']
289elif cpu == 's390x'
290  kvm_targets = ['s390x-softmmu']
291elif cpu == 'ppc'
292  kvm_targets = ['ppc-softmmu']
293elif cpu == 'ppc64'
294  kvm_targets = ['ppc-softmmu', 'ppc64-softmmu']
295elif cpu == 'mips'
296  kvm_targets = ['mips-softmmu', 'mipsel-softmmu']
297elif cpu == 'mips64'
298  kvm_targets = ['mips-softmmu', 'mipsel-softmmu', 'mips64-softmmu', 'mips64el-softmmu']
299elif cpu == 'riscv32'
300  kvm_targets = ['riscv32-softmmu']
301elif cpu == 'riscv64'
302  kvm_targets = ['riscv64-softmmu']
303elif cpu == 'loongarch64'
304  kvm_targets = ['loongarch64-softmmu']
305else
306  kvm_targets = []
307endif
308accelerator_targets = { 'CONFIG_KVM': kvm_targets }
309
310if cpu == 'x86'
311  xen_targets = ['i386-softmmu']
312elif cpu == 'x86_64'
313  xen_targets = ['i386-softmmu', 'x86_64-softmmu']
314elif cpu == 'arm'
315  # i386 emulator provides xenpv machine type for multiple architectures
316  xen_targets = ['i386-softmmu']
317elif cpu == 'aarch64'
318  # i386 emulator provides xenpv machine type for multiple architectures
319  xen_targets = ['i386-softmmu', 'x86_64-softmmu', 'aarch64-softmmu']
320else
321  xen_targets = []
322endif
323accelerator_targets += { 'CONFIG_XEN': xen_targets }
324
325if cpu == 'aarch64'
326  accelerator_targets += {
327    'CONFIG_HVF': ['aarch64-softmmu']
328  }
329elif cpu == 'x86_64'
330  accelerator_targets += {
331    'CONFIG_HVF': ['x86_64-softmmu'],
332    'CONFIG_NVMM': ['i386-softmmu', 'x86_64-softmmu'],
333    'CONFIG_WHPX': ['i386-softmmu', 'x86_64-softmmu'],
334  }
335endif
336
337##################
338# Compiler flags #
339##################
340
341foreach lang : all_languages
342  compiler = meson.get_compiler(lang)
343  if compiler.get_id() == 'gcc' and compiler.version().version_compare('>=7.4')
344    # ok
345  elif compiler.get_id() == 'clang' and compiler.compiles('''
346      #ifdef __apple_build_version__
347      # if __clang_major__ < 15 || (__clang_major__ == 15 && __clang_minor__ < 0)
348      #  error You need at least XCode Clang v15.0 to compile QEMU
349      # endif
350      #else
351      # if __clang_major__ < 10 || (__clang_major__ == 10 && __clang_minor__ < 0)
352      #  error You need at least Clang v10.0 to compile QEMU
353      # endif
354      #endif''')
355    # ok
356  else
357    error('You either need GCC v7.4 or Clang v10.0 (or XCode Clang v15.0) to compile QEMU')
358  endif
359endforeach
360
361# default flags for all hosts
362# We use -fwrapv to tell the compiler that we require a C dialect where
363# left shift of signed integers is well defined and has the expected
364# 2s-complement style results. (Both clang and gcc agree that it
365# provides these semantics.)
366
367qemu_common_flags = [
368  '-D_GNU_SOURCE', '-D_FILE_OFFSET_BITS=64', '-D_LARGEFILE_SOURCE',
369  '-fno-strict-aliasing', '-fno-common', '-fwrapv' ]
370qemu_cflags = []
371qemu_ldflags = []
372
373if host_os == 'darwin'
374  # Disable attempts to use ObjectiveC features in os/object.h since they
375  # won't work when we're compiling with gcc as a C compiler.
376  if compiler.get_id() == 'gcc'
377    qemu_common_flags += '-DOS_OBJECT_USE_OBJC=0'
378  endif
379elif host_os == 'sunos'
380  # needed for CMSG_ macros in sys/socket.h
381  qemu_common_flags += '-D_XOPEN_SOURCE=600'
382  # needed for TIOCWIN* defines in termios.h
383  qemu_common_flags += '-D__EXTENSIONS__'
384elif host_os == 'haiku'
385  qemu_common_flags += ['-DB_USE_POSITIVE_POSIX_ERRORS', '-D_BSD_SOURCE', '-fPIC']
386elif host_os == 'windows'
387  # plugins use delaylib, and clang needs to be used with lld to make it work.
388  if compiler.get_id() == 'clang' and compiler.get_linker_id() != 'ld.lld'
389    error('On windows, you need to use lld with clang - use msys2 clang64/clangarm64 env')
390  endif
391endif
392
393# Choose instruction set (currently x86-only)
394
395qemu_isa_flags = []
396
397# __sync_fetch_and_and requires at least -march=i486. Many toolchains
398# use i686 as default anyway, but for those that don't, an explicit
399# specification is necessary
400if host_arch == 'i386' and not cc.links('''
401  static int sfaa(int *ptr)
402  {
403    return __sync_fetch_and_and(ptr, 0);
404  }
405
406  int main(void)
407  {
408    int val = 42;
409    val = __sync_val_compare_and_swap(&val, 0, 1);
410    sfaa(&val);
411    return val;
412  }''')
413  qemu_isa_flags += ['-march=i486']
414endif
415
416# Pick x86-64 baseline version
417if host_arch in ['i386', 'x86_64']
418  if get_option('x86_version') == '0' and host_arch == 'x86_64'
419    error('x86_64-v1 required for x86-64 hosts')
420  endif
421
422  # add flags for individual instruction set extensions
423  if get_option('x86_version') >= '1'
424    if host_arch == 'i386'
425      qemu_common_flags = ['-mfpmath=sse'] + qemu_common_flags
426    else
427      # present on basically all processors but technically not part of
428      # x86-64-v1, so only include -mneeded for x86-64 version 2 and above
429      qemu_isa_flags += ['-mcx16']
430    endif
431  endif
432  if get_option('x86_version') >= '2'
433    qemu_isa_flags += ['-mpopcnt']
434    qemu_isa_flags += cc.get_supported_arguments('-mneeded')
435  endif
436  if get_option('x86_version') >= '3'
437    qemu_isa_flags += ['-mmovbe', '-mabm', '-mbmi', '-mbmi2', '-mfma', '-mf16c']
438  endif
439
440  # add required vector instruction set (each level implies those below)
441  if get_option('x86_version') == '1'
442    qemu_isa_flags += ['-msse2']
443  elif get_option('x86_version') == '2'
444    qemu_isa_flags += ['-msse4.2']
445  elif get_option('x86_version') == '3'
446    qemu_isa_flags += ['-mavx2']
447  elif get_option('x86_version') == '4'
448    qemu_isa_flags += ['-mavx512f', '-mavx512bw', '-mavx512cd', '-mavx512dq', '-mavx512vl']
449  endif
450endif
451
452qemu_common_flags = qemu_isa_flags + qemu_common_flags
453
454if get_option('prefer_static')
455  qemu_ldflags += get_option('b_pie') ? '-static-pie' : '-static'
456endif
457
458# Meson currently only handles pie as a boolean for now, so if the user
459# has explicitly disabled PIE we need to extend our cflags.
460#
461# -no-pie is supposedly a linker flag that has no effect on the compiler
462# command line, but some distros, that didn't quite know what they were
463# doing, made local changes to gcc's specs file that turned it into
464# a compiler command-line flag.
465#
466# What about linker flags?  For a static build, no PIE is implied by -static
467# which we added above (and if it's not because of the same specs patching,
468# there's nothing we can do: compilation will fail, report a bug to your
469# distro and do not use --disable-pie in the meanwhile).  For dynamic linking,
470# instead, we can't add -no-pie because it overrides -shared: the linker then
471# tries to build an executable instead of a shared library and fails.  So
472# don't add -no-pie anywhere and cross fingers. :(
473if not get_option('b_pie')
474  qemu_common_flags += cc.get_supported_arguments('-fno-pie', '-no-pie')
475endif
476
477if not get_option('stack_protector').disabled()
478  stack_protector_probe = '''
479    int main(int argc, char *argv[])
480    {
481      char arr[64], *p = arr, *c = argv[argc - 1];
482      while (*c) {
483          *p++ = *c++;
484      }
485      return 0;
486    }'''
487  have_stack_protector = false
488  foreach arg : ['-fstack-protector-strong', '-fstack-protector-all']
489    # We need to check both a compile and a link, since some compiler
490    # setups fail only on a .c->.o compile and some only at link time
491    if cc.compiles(stack_protector_probe, args: ['-Werror', arg]) and \
492       cc.links(stack_protector_probe, args: ['-Werror', arg])
493      have_stack_protector = true
494      qemu_cflags += arg
495      qemu_ldflags += arg
496      break
497    endif
498  endforeach
499  get_option('stack_protector') \
500    .require(have_stack_protector, error_message: 'Stack protector not supported')
501endif
502
503coroutine_backend = get_option('coroutine_backend')
504ucontext_probe = '''
505  #include <ucontext.h>
506  #ifdef __stub_makecontext
507  #error Ignoring glibc stub makecontext which will always fail
508  #endif
509  int main(void) { makecontext(0, 0, 0); return 0; }'''
510
511# On Windows the only valid backend is the Windows specific one.
512# For POSIX prefer ucontext, but it's not always possible. The fallback
513# is sigcontext.
514supported_backends = []
515if host_os == 'windows'
516  supported_backends += ['windows']
517else
518  if host_os != 'darwin' and cc.links(ucontext_probe)
519    supported_backends += ['ucontext']
520  endif
521  supported_backends += ['sigaltstack']
522endif
523
524if coroutine_backend == 'auto'
525  coroutine_backend = supported_backends[0]
526elif coroutine_backend not in supported_backends
527  error('"@0@" backend requested but not available.  Available backends: @1@' \
528        .format(coroutine_backend, ', '.join(supported_backends)))
529endif
530
531# Compiles if SafeStack *not* enabled
532safe_stack_probe = '''
533  int main(void)
534  {
535  #if defined(__has_feature)
536  #if __has_feature(safe_stack)
537  #error SafeStack Enabled
538  #endif
539  #endif
540      return 0;
541  }'''
542if get_option('safe_stack') != not cc.compiles(safe_stack_probe)
543  safe_stack_arg = get_option('safe_stack') ? '-fsanitize=safe-stack' : '-fno-sanitize=safe-stack'
544  if get_option('safe_stack') != not cc.compiles(safe_stack_probe, args: safe_stack_arg)
545    error(get_option('safe_stack') \
546          ? 'SafeStack not supported by your compiler' \
547          : 'Cannot disable SafeStack')
548  endif
549  qemu_cflags += safe_stack_arg
550  qemu_ldflags += safe_stack_arg
551endif
552if get_option('safe_stack') and coroutine_backend != 'ucontext'
553  error('SafeStack is only supported with the ucontext coroutine backend')
554endif
555
556if get_option('asan')
557  if cc.has_argument('-fsanitize=address')
558    qemu_cflags = ['-fsanitize=address'] + qemu_cflags
559    qemu_ldflags = ['-fsanitize=address'] + qemu_ldflags
560  else
561    error('Your compiler does not support -fsanitize=address')
562  endif
563endif
564
565if get_option('ubsan')
566  # Detect static linking issue with ubsan:
567  # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84285
568  if cc.links('int main(int argc, char **argv) { return argc + 1; }',
569              args: [qemu_ldflags, '-fsanitize=undefined'])
570    qemu_cflags += ['-fsanitize=undefined']
571    qemu_ldflags += ['-fsanitize=undefined']
572
573    # Suppress undefined behaviour from function call to mismatched type.
574    # In addition, tcg prologue does not emit function type prefix
575    # required by function call sanitizer.
576    if cc.has_argument('-fno-sanitize=function')
577      qemu_cflags += ['-fno-sanitize=function']
578    endif
579  else
580    error('Your compiler does not support -fsanitize=undefined')
581  endif
582endif
583
584# Thread sanitizer is, for now, much noisier than the other sanitizers;
585# keep it separate until that is not the case.
586if get_option('tsan')
587  if get_option('asan') or get_option('ubsan')
588    error('TSAN is not supported with other sanitizers')
589  endif
590  if not cc.has_function('__tsan_create_fiber',
591                         args: '-fsanitize=thread',
592                         prefix: '#include <sanitizer/tsan_interface.h>')
593    error('Cannot enable TSAN due to missing fiber annotation interface')
594  endif
595  tsan_warn_suppress = []
596  # gcc (>=11) will report constructions not supported by tsan:
597  # "error: ‘atomic_thread_fence’ is not supported with ‘-fsanitize=thread’"
598  # https://gcc.gnu.org/gcc-11/changes.html
599  # However, clang does not support this warning and this triggers an error.
600  if cc.has_argument('-Wno-tsan')
601    tsan_warn_suppress = ['-Wno-tsan']
602  endif
603  qemu_cflags = ['-fsanitize=thread'] + tsan_warn_suppress + qemu_cflags
604  qemu_ldflags = ['-fsanitize=thread'] + qemu_ldflags
605endif
606
607# Detect support for PT_GNU_RELRO + DT_BIND_NOW.
608# The combination is known as "full relro", because .got.plt is read-only too.
609qemu_ldflags += cc.get_supported_link_arguments('-Wl,-z,relro', '-Wl,-z,now')
610
611if host_os == 'windows'
612  qemu_ldflags += cc.get_supported_link_arguments('-Wl,--no-seh', '-Wl,--nxcompat')
613  qemu_ldflags += cc.get_supported_link_arguments('-Wl,--dynamicbase', '-Wl,--high-entropy-va')
614endif
615
616if get_option('fuzzing')
617  # Specify a filter to only instrument code that is directly related to
618  # virtual-devices.
619  configure_file(output: 'instrumentation-filter',
620                 input: 'scripts/oss-fuzz/instrumentation-filter-template',
621                 copy: true)
622
623  if cc.compiles('int main () { return 0; }',
624                  name: '-fsanitize-coverage-allowlist=/dev/null',
625                 args: ['-fsanitize-coverage-allowlist=/dev/null',
626                        '-fsanitize-coverage=trace-pc'] )
627    qemu_common_flags += ['-fsanitize-coverage-allowlist=instrumentation-filter']
628  endif
629
630  if get_option('fuzzing_engine') == ''
631    # Add CFLAGS to tell clang to add fuzzer-related instrumentation to all the
632    # compiled code.  To build non-fuzzer binaries with --enable-fuzzing, link
633    # everything with fsanitize=fuzzer-no-link. Otherwise, the linker will be
634    # unable to bind the fuzzer-related callbacks added by instrumentation.
635    qemu_common_flags += ['-fsanitize=fuzzer-no-link']
636    qemu_ldflags += ['-fsanitize=fuzzer-no-link']
637    # For the actual fuzzer binaries, we need to link against the libfuzzer
638    # library. They need to be configurable, to support OSS-Fuzz
639    fuzz_exe_ldflags = ['-fsanitize=fuzzer']
640  else
641    # LIB_FUZZING_ENGINE was set; assume we are running on OSS-Fuzz, and
642    # the needed CFLAGS have already been provided
643    fuzz_exe_ldflags = get_option('fuzzing_engine').split()
644  endif
645endif
646
647if get_option('cfi')
648  cfi_flags=[]
649  # Check for dependency on LTO
650  if not get_option('b_lto')
651    error('Selected Control-Flow Integrity but LTO is disabled')
652  endif
653  if enable_modules
654    error('Selected Control-Flow Integrity is not compatible with modules')
655  endif
656  # Check for cfi flags. CFI requires LTO so we can't use
657  # get_supported_arguments, but need a more complex "compiles" which allows
658  # custom arguments
659  if cc.compiles('int main () { return 0; }', name: '-fsanitize=cfi-icall',
660                 args: ['-flto', '-fsanitize=cfi-icall'] )
661    cfi_flags += '-fsanitize=cfi-icall'
662  else
663    error('-fsanitize=cfi-icall is not supported by the compiler')
664  endif
665  if cc.compiles('int main () { return 0; }',
666                 name: '-fsanitize-cfi-icall-generalize-pointers',
667                 args: ['-flto', '-fsanitize=cfi-icall',
668                        '-fsanitize-cfi-icall-generalize-pointers'] )
669    cfi_flags += '-fsanitize-cfi-icall-generalize-pointers'
670  else
671    error('-fsanitize-cfi-icall-generalize-pointers is not supported by the compiler')
672  endif
673  if get_option('cfi_debug')
674    if cc.compiles('int main () { return 0; }',
675                   name: '-fno-sanitize-trap=cfi-icall',
676                   args: ['-flto', '-fsanitize=cfi-icall',
677                          '-fno-sanitize-trap=cfi-icall'] )
678      cfi_flags += '-fno-sanitize-trap=cfi-icall'
679    else
680      error('-fno-sanitize-trap=cfi-icall is not supported by the compiler')
681    endif
682  endif
683  add_global_arguments(cfi_flags, native: false, language: all_languages)
684  add_global_link_arguments(cfi_flags, native: false, language: all_languages)
685endif
686
687# Check further flags that make QEMU more robust against malicious parties
688
689hardening_flags = [
690    # Initialize all stack variables to zero. This makes
691    # it harder to take advantage of uninitialized stack
692    # data to drive exploits
693    '-ftrivial-auto-var-init=zero',
694]
695
696# Zero out registers used during a function call
697# upon its return. This makes it harder to assemble
698# ROP gadgets into something usable
699#
700# NB: Clang 17 is broken and SEGVs
701# https://github.com/llvm/llvm-project/issues/75168
702#
703# NB2: This clashes with the "retguard" extension of OpenBSD's Clang
704# https://gitlab.com/qemu-project/qemu/-/issues/2278
705if host_os != 'openbsd' and \
706   cc.compiles('extern struct { void (*cb)(void); } s; void f(void) { s.cb(); }',
707               name: '-fzero-call-used-regs=used-gpr',
708               args: ['-O2', '-fzero-call-used-regs=used-gpr'])
709    hardening_flags += '-fzero-call-used-regs=used-gpr'
710endif
711
712qemu_common_flags += cc.get_supported_arguments(hardening_flags)
713
714add_global_arguments(qemu_common_flags, native: false, language: all_languages)
715add_global_link_arguments(qemu_ldflags, native: false, language: all_languages)
716
717# Collect warning flags we want to set, sorted alphabetically
718warn_flags = [
719  # First enable interesting warnings
720  '-Wempty-body',
721  '-Wendif-labels',
722  '-Wexpansion-to-defined',
723  '-Wformat-security',
724  '-Wformat-y2k',
725  '-Wignored-qualifiers',
726  '-Wimplicit-fallthrough=2',
727  '-Winit-self',
728  '-Wmissing-format-attribute',
729  '-Wmissing-prototypes',
730  '-Wnested-externs',
731  '-Wold-style-declaration',
732  '-Wold-style-definition',
733  '-Wredundant-decls',
734  '-Wshadow=local',
735  '-Wstrict-prototypes',
736  '-Wtype-limits',
737  '-Wundef',
738  '-Wvla',
739  '-Wwrite-strings',
740
741  # Then disable some undesirable warnings
742  '-Wno-gnu-variable-sized-type-not-at-end',
743  '-Wno-initializer-overrides',
744  '-Wno-missing-include-dirs',
745  '-Wno-psabi',
746  '-Wno-shift-negative-value',
747  '-Wno-string-plus-int',
748  '-Wno-tautological-type-limit-compare',
749  '-Wno-typedef-redefinition',
750]
751
752if host_os != 'darwin'
753  tsa_has_cleanup = cc.compiles('''
754    struct __attribute__((capability("mutex"))) mutex {};
755    void lock(struct mutex *m) __attribute__((acquire_capability(m)));
756    void unlock(struct mutex *m) __attribute__((release_capability(m)));
757
758    void test(void) {
759      struct mutex __attribute__((cleanup(unlock))) m;
760      lock(&m);
761    }
762  ''', args: ['-Wthread-safety', '-Werror'])
763  if tsa_has_cleanup
764    warn_flags += ['-Wthread-safety']
765  endif
766endif
767
768# Set up C++ compiler flags
769qemu_cxxflags = []
770if 'cpp' in all_languages
771  qemu_cxxflags = ['-D__STDC_LIMIT_MACROS', '-D__STDC_CONSTANT_MACROS', '-D__STDC_FORMAT_MACROS'] + qemu_cflags
772endif
773
774add_project_arguments(qemu_cflags, native: false, language: 'c')
775add_project_arguments(cc.get_supported_arguments(warn_flags), native: false, language: 'c')
776if 'cpp' in all_languages
777  add_project_arguments(qemu_cxxflags, native: false, language: 'cpp')
778  add_project_arguments(cxx.get_supported_arguments(warn_flags), native: false, language: 'cpp')
779endif
780if 'objc' in all_languages
781  # Note sanitizer flags are not applied to Objective-C sources!
782  add_project_arguments(objc.get_supported_arguments(warn_flags), native: false, language: 'objc')
783endif
784if host_os == 'linux'
785  add_project_arguments('-isystem', meson.current_source_dir() / 'linux-headers',
786                        '-isystem', 'linux-headers',
787                        language: all_languages)
788endif
789
790add_project_arguments('-iquote', '.',
791                      '-iquote', meson.current_source_dir(),
792                      '-iquote', meson.current_source_dir() / 'include',
793                      language: all_languages)
794
795# If a host-specific include directory exists, list that first...
796host_include = meson.current_source_dir() / 'host/include/'
797if fs.is_dir(host_include / host_arch)
798  add_project_arguments('-iquote', host_include / host_arch,
799                        language: all_languages)
800endif
801# ... followed by the generic fallback.
802add_project_arguments('-iquote', host_include / 'generic',
803                      language: all_languages)
804
805sparse = find_program('cgcc', required: get_option('sparse'))
806if sparse.found()
807  run_target('sparse',
808             command: [find_program('scripts/check_sparse.py'),
809                       'compile_commands.json', sparse.full_path(), '-Wbitwise',
810                       '-Wno-transparent-union', '-Wno-old-initializer',
811                       '-Wno-non-pointer-null'])
812endif
813
814#####################################
815# Host-specific libraries and flags #
816#####################################
817
818libm = cc.find_library('m', required: false)
819threads = dependency('threads')
820util = cc.find_library('util', required: false)
821winmm = []
822socket = []
823version_res = []
824coref = []
825iokit = []
826pvg = not_found
827emulator_link_args = []
828midl = not_found
829widl = not_found
830pathcch = not_found
831host_dsosuf = '.so'
832if host_os == 'windows'
833  midl = find_program('midl', required: false)
834  widl = find_program('widl', required: false)
835  pathcch = cc.find_library('pathcch')
836  socket = cc.find_library('ws2_32')
837  winmm = cc.find_library('winmm')
838
839  win = import('windows')
840  version_res = win.compile_resources('version.rc',
841                                      depend_files: files('pc-bios/qemu-nsis.ico'),
842                                      include_directories: include_directories('.'))
843  host_dsosuf = '.dll'
844elif host_os == 'darwin'
845  coref = dependency('appleframeworks', modules: 'CoreFoundation')
846  iokit = dependency('appleframeworks', modules: 'IOKit', required: false)
847  host_dsosuf = '.dylib'
848  pvg = dependency('appleframeworks', modules: ['ParavirtualizedGraphics', 'Metal'],
849                   required: get_option('pvg'))
850elif host_os == 'sunos'
851  socket = [cc.find_library('socket'),
852            cc.find_library('nsl'),
853            cc.find_library('resolv')]
854elif host_os == 'haiku'
855  socket = [cc.find_library('posix_error_mapper'),
856            cc.find_library('network'),
857            cc.find_library('bsd')]
858elif host_os == 'openbsd'
859  if get_option('tcg').allowed() and target_dirs.length() > 0
860    # Disable OpenBSD W^X if available
861    emulator_link_args = cc.get_supported_link_arguments('-Wl,-z,wxneeded')
862  endif
863endif
864
865###############################################
866# Host-specific configuration of accelerators #
867###############################################
868
869accelerators = []
870if get_option('kvm').allowed() and host_os == 'linux'
871  accelerators += 'CONFIG_KVM'
872endif
873if get_option('whpx').allowed() and host_os == 'windows'
874  if get_option('whpx').enabled() and host_machine.cpu() != 'x86_64'
875    error('WHPX requires 64-bit host')
876  elif cc.has_header('winhvplatform.h', required: get_option('whpx')) and \
877       cc.has_header('winhvemulation.h', required: get_option('whpx'))
878    accelerators += 'CONFIG_WHPX'
879  endif
880endif
881
882hvf = not_found
883if get_option('hvf').allowed()
884  hvf = dependency('appleframeworks', modules: 'Hypervisor',
885                   required: get_option('hvf'))
886  if hvf.found()
887    accelerators += 'CONFIG_HVF'
888  endif
889endif
890
891nvmm = not_found
892if host_os == 'netbsd'
893  nvmm = cc.find_library('nvmm', required: get_option('nvmm'))
894  if nvmm.found()
895    accelerators += 'CONFIG_NVMM'
896  endif
897endif
898
899tcg_arch = host_arch
900if get_option('tcg').allowed()
901  if host_arch == 'unknown'
902    if not get_option('tcg_interpreter')
903      error('Unsupported CPU @0@, try --enable-tcg-interpreter'.format(cpu))
904    endif
905  elif get_option('tcg_interpreter')
906    warning('Use of the TCG interpreter is not recommended on this host')
907    warning('architecture. There is a native TCG execution backend available')
908    warning('which provides substantially better performance and reliability.')
909    warning('It is strongly recommended to remove the --enable-tcg-interpreter')
910    warning('configuration option on this architecture to use the native')
911    warning('backend.')
912  endif
913  if get_option('tcg_interpreter')
914    tcg_arch = 'tci'
915  elif host_arch == 'x86_64'
916    tcg_arch = 'i386'
917  elif host_arch == 'ppc64'
918    tcg_arch = 'ppc'
919  endif
920  add_project_arguments('-iquote', meson.current_source_dir() / 'tcg' / tcg_arch,
921                        language: all_languages)
922
923  accelerators += 'CONFIG_TCG'
924endif
925
926if 'CONFIG_KVM' not in accelerators and get_option('kvm').enabled()
927  error('KVM not available on this platform')
928endif
929if 'CONFIG_HVF' not in accelerators and get_option('hvf').enabled()
930  error('HVF not available on this platform')
931endif
932if 'CONFIG_NVMM' not in accelerators and get_option('nvmm').enabled()
933  error('NVMM not available on this platform')
934endif
935if 'CONFIG_WHPX' not in accelerators and get_option('whpx').enabled()
936  error('WHPX not available on this platform')
937endif
938
939xen = not_found
940if get_option('xen').enabled() or (get_option('xen').auto() and have_system)
941  xencontrol = dependency('xencontrol', required: false,
942                          method: 'pkg-config')
943  if xencontrol.found()
944    xen_pc = declare_dependency(version: xencontrol.version(),
945      dependencies: [
946        xencontrol,
947        # disabler: true makes xen_pc.found() return false if any is not found
948        dependency('xenstore', required: false,
949                   method: 'pkg-config',
950                   disabler: true),
951        dependency('xenforeignmemory', required: false,
952                   method: 'pkg-config',
953                   disabler: true),
954        dependency('xengnttab', required: false,
955                   method: 'pkg-config',
956                   disabler: true),
957        dependency('xenevtchn', required: false,
958                   method: 'pkg-config',
959                   disabler: true),
960        dependency('xendevicemodel', required: false,
961                   method: 'pkg-config',
962                   disabler: true),
963        # optional, no "disabler: true"
964        dependency('xentoolcore', required: false,
965                   method: 'pkg-config')])
966    if xen_pc.found()
967      xen = xen_pc
968    endif
969  endif
970  if not xen.found()
971    xen_tests = [ '4.11.0', '4.10.0', '4.9.0', '4.8.0', '4.7.1' ]
972    xen_libs = {
973      '4.11.0': [ 'xenstore', 'xenctrl', 'xendevicemodel', 'xenforeignmemory', 'xengnttab', 'xenevtchn', 'xentoolcore' ],
974      '4.10.0': [ 'xenstore', 'xenctrl', 'xendevicemodel', 'xenforeignmemory', 'xengnttab', 'xenevtchn', 'xentoolcore' ],
975      '4.9.0': [ 'xenstore', 'xenctrl', 'xendevicemodel', 'xenforeignmemory', 'xengnttab', 'xenevtchn' ],
976      '4.8.0': [ 'xenstore', 'xenctrl', 'xenforeignmemory', 'xengnttab', 'xenevtchn' ],
977      '4.7.1': [ 'xenstore', 'xenctrl', 'xenforeignmemory', 'xengnttab', 'xenevtchn' ],
978    }
979    xen_deps = {}
980    foreach ver: xen_tests
981      # cache the various library tests to avoid polluting the logs
982      xen_test_deps = []
983      foreach l: xen_libs[ver]
984        if l not in xen_deps
985          xen_deps += { l: cc.find_library(l, required: false) }
986        endif
987        xen_test_deps += xen_deps[l]
988      endforeach
989
990      # Use -D to pick just one of the test programs in scripts/xen-detect.c
991      xen_version = ver.split('.')
992      xen_ctrl_version = xen_version[0] + \
993        ('0' + xen_version[1]).substring(-2) + \
994        ('0' + xen_version[2]).substring(-2)
995      if cc.links(files('scripts/xen-detect.c'),
996                  args: '-DCONFIG_XEN_CTRL_INTERFACE_VERSION=' + xen_ctrl_version,
997                  dependencies: xen_test_deps)
998        xen = declare_dependency(version: ver, dependencies: xen_test_deps)
999        break
1000      endif
1001    endforeach
1002  endif
1003  if xen.found()
1004    accelerators += 'CONFIG_XEN'
1005  elif get_option('xen').enabled()
1006    error('could not compile and link Xen test program')
1007  endif
1008endif
1009have_xen_pci_passthrough = get_option('xen_pci_passthrough') \
1010  .require(xen.found(),
1011           error_message: 'Xen PCI passthrough requested but Xen not enabled') \
1012  .require(host_os == 'linux',
1013           error_message: 'Xen PCI passthrough not available on this platform') \
1014  .require(cpu == 'x86'  or cpu == 'x86_64',
1015           error_message: 'Xen PCI passthrough not available on this platform') \
1016  .allowed()
1017
1018################
1019# Dependencies #
1020################
1021
1022# When bumping glib minimum version, please check also whether to increase
1023# the _WIN32_WINNT setting in osdep.h according to the value from glib.
1024# You should also check if any of the glib.version() checks
1025# below can also be removed.
1026glib_req_ver = '>=2.66.0'
1027glib_pc = dependency('glib-2.0', version: glib_req_ver, required: true,
1028                    method: 'pkg-config')
1029glib_cflags = []
1030if enable_modules
1031  gmodule = dependency('gmodule-export-2.0', version: glib_req_ver, required: true,
1032                       method: 'pkg-config')
1033elif get_option('plugins')
1034  gmodule = dependency('gmodule-no-export-2.0', version: glib_req_ver, required: true,
1035                       method: 'pkg-config')
1036else
1037  gmodule = not_found
1038endif
1039
1040# This workaround is required due to a bug in pkg-config file for glib as it
1041# doesn't define GLIB_STATIC_COMPILATION for pkg-config --static
1042if host_os == 'windows' and get_option('prefer_static')
1043  glib_cflags += ['-DGLIB_STATIC_COMPILATION']
1044endif
1045
1046# Sanity check that the current size_t matches the
1047# size that glib thinks it should be. This catches
1048# problems on multi-arch where people try to build
1049# 32-bit QEMU while pointing at 64-bit glib headers
1050
1051if not cc.compiles('''
1052  #include <glib.h>
1053  #include <unistd.h>
1054
1055  #define QEMU_BUILD_BUG_ON(x) \
1056  typedef char qemu_build_bug_on[(x)?-1:1] __attribute__((unused));
1057
1058  int main(void) {
1059     QEMU_BUILD_BUG_ON(sizeof(size_t) != GLIB_SIZEOF_SIZE_T);
1060     return 0;
1061  }''', dependencies: glib_pc, args: glib_cflags)
1062  error('''sizeof(size_t) doesn't match GLIB_SIZEOF_SIZE_T.
1063        You probably need to set PKG_CONFIG_LIBDIR" to point
1064        to the right pkg-config files for your build target.''')
1065endif
1066
1067glib = declare_dependency(dependencies: [glib_pc, gmodule],
1068                          compile_args: glib_cflags,
1069                          version: glib_pc.version())
1070
1071# Check whether glib has gslice, which we have to avoid for correctness.
1072# TODO: remove this check and the corresponding workaround (qtree) when
1073# the minimum supported glib is >= 2.75.3
1074glib_has_gslice = glib.version().version_compare('<2.75.3')
1075# Check whether glib has the aligned_alloc family of functions.
1076# <https://docs.gtk.org/glib/func.aligned_alloc.html>
1077glib_has_aligned_alloc = glib.version().version_compare('>=2.72.0')
1078
1079# override glib dep to include the above refinements
1080meson.override_dependency('glib-2.0', glib)
1081
1082# The path to glib.h is added to all compilation commands.
1083add_project_dependencies(glib.partial_dependency(compile_args: true, includes: true),
1084                         native: false, language: all_languages)
1085
1086gio = not_found
1087gdbus_codegen = not_found
1088gdbus_codegen_error = '@0@ requires gdbus-codegen, please install libgio'
1089if not get_option('gio').auto() or have_system
1090  gio = dependency('gio-2.0', required: get_option('gio'),
1091                   method: 'pkg-config')
1092  if gio.found() and not cc.links('''
1093    #include <gio/gio.h>
1094    int main(void)
1095    {
1096      g_dbus_proxy_new_sync(0, 0, 0, 0, 0, 0, 0, 0);
1097      return 0;
1098    }''', dependencies: [glib, gio])
1099    if get_option('gio').enabled()
1100      error('The installed libgio is broken for static linking')
1101    endif
1102    gio = not_found
1103  endif
1104  if gio.found()
1105    gdbus_codegen = find_program('gdbus-codegen',
1106                                 required: get_option('gio'))
1107    gio_unix = dependency('gio-unix-2.0', required: get_option('gio'),
1108                          method: 'pkg-config')
1109    gio = declare_dependency(dependencies: [gio, gio_unix],
1110                             version: gio.version())
1111  endif
1112endif
1113if gdbus_codegen.found() and get_option('cfi')
1114  gdbus_codegen = not_found
1115  gdbus_codegen_error = '@0@ uses gdbus-codegen, which does not support control flow integrity'
1116endif
1117
1118xml_pp = find_program('scripts/xml-preprocess.py')
1119
1120lttng = not_found
1121if 'ust' in get_option('trace_backends')
1122  lttng = dependency('lttng-ust', required: true, version: '>= 2.1',
1123                     method: 'pkg-config')
1124endif
1125pixman = not_found
1126if not get_option('pixman').auto() or have_system or have_tools
1127  pixman = dependency('pixman-1', required: get_option('pixman'), version:'>=0.21.8',
1128                      method: 'pkg-config')
1129endif
1130
1131zlib = dependency('zlib', required: true)
1132
1133libaio = not_found
1134if not get_option('linux_aio').auto() or have_block
1135  libaio = cc.find_library('aio', has_headers: ['libaio.h'],
1136                           required: get_option('linux_aio'))
1137endif
1138
1139linux_io_uring_test = '''
1140  #include <liburing.h>
1141  #include <linux/errqueue.h>
1142
1143  int main(void) { return 0; }'''
1144
1145linux_io_uring = not_found
1146if not get_option('linux_io_uring').auto() or have_block
1147  linux_io_uring = dependency('liburing', version: '>=0.3',
1148                              required: get_option('linux_io_uring'),
1149                              method: 'pkg-config')
1150  if not cc.links(linux_io_uring_test)
1151    linux_io_uring = not_found
1152  endif
1153endif
1154
1155libnfs = not_found
1156if not get_option('libnfs').auto() or have_block
1157  libnfs = dependency('libnfs', version: ['>=1.9.3', '<6.0.0'],
1158                      required: get_option('libnfs'),
1159                      method: 'pkg-config')
1160endif
1161
1162libattr_test = '''
1163  #include <stddef.h>
1164  #include <sys/types.h>
1165  #ifdef CONFIG_LIBATTR
1166  #include <attr/xattr.h>
1167  #else
1168  #include <sys/xattr.h>
1169  #endif
1170  int main(void) { getxattr(NULL, NULL, NULL, 0); setxattr(NULL, NULL, NULL, 0, 0); return 0; }'''
1171
1172libattr = not_found
1173have_old_libattr = false
1174if get_option('attr').allowed()
1175  if cc.links(libattr_test)
1176    libattr = declare_dependency()
1177  else
1178    libattr = cc.find_library('attr', has_headers: ['attr/xattr.h'],
1179                              required: get_option('attr'))
1180    if libattr.found() and not \
1181      cc.links(libattr_test, dependencies: libattr, args: '-DCONFIG_LIBATTR')
1182      libattr = not_found
1183      if get_option('attr').enabled()
1184        error('could not link libattr')
1185      else
1186        warning('could not link libattr, disabling')
1187      endif
1188    else
1189      have_old_libattr = libattr.found()
1190    endif
1191  endif
1192endif
1193
1194cocoa = dependency('appleframeworks',
1195                   modules: ['Cocoa', 'CoreVideo', 'QuartzCore'],
1196                   required: get_option('cocoa'))
1197
1198vmnet = dependency('appleframeworks', modules: 'vmnet', required: get_option('vmnet'))
1199if vmnet.found() and not cc.has_header_symbol('vmnet/vmnet.h',
1200                                              'VMNET_BRIDGED_MODE',
1201                                              dependencies: vmnet)
1202  vmnet = not_found
1203  if get_option('vmnet').enabled()
1204    error('vmnet.framework API is outdated')
1205  else
1206    warning('vmnet.framework API is outdated, disabling')
1207  endif
1208endif
1209
1210seccomp = not_found
1211seccomp_has_sysrawrc = false
1212if not get_option('seccomp').auto() or have_system or have_tools
1213  seccomp = dependency('libseccomp', version: '>=2.3.0',
1214                       required: get_option('seccomp'),
1215                       method: 'pkg-config')
1216  if seccomp.found()
1217    seccomp_has_sysrawrc = cc.has_header_symbol('seccomp.h',
1218                                                'SCMP_FLTATR_API_SYSRAWRC',
1219                                                dependencies: seccomp)
1220  endif
1221endif
1222
1223libcap_ng = not_found
1224if not get_option('cap_ng').auto() or have_system or have_tools
1225  libcap_ng = cc.find_library('cap-ng', has_headers: ['cap-ng.h'],
1226                              required: get_option('cap_ng'))
1227endif
1228if libcap_ng.found() and not cc.links('''
1229   #include <cap-ng.h>
1230   int main(void)
1231   {
1232     capng_capability_to_name(CAPNG_EFFECTIVE);
1233     return 0;
1234   }''', dependencies: libcap_ng)
1235  libcap_ng = not_found
1236  if get_option('cap_ng').enabled()
1237    error('could not link libcap-ng')
1238  else
1239    warning('could not link libcap-ng, disabling')
1240  endif
1241endif
1242
1243if get_option('xkbcommon').auto() and not have_system and not have_tools
1244  xkbcommon = not_found
1245else
1246  xkbcommon = dependency('xkbcommon', required: get_option('xkbcommon'),
1247                         method: 'pkg-config')
1248endif
1249
1250slirp = not_found
1251if not get_option('slirp').auto() or have_system
1252  slirp = dependency('slirp', required: get_option('slirp'),
1253                     method: 'pkg-config')
1254  # slirp < 4.7 is incompatible with CFI support in QEMU.  This is because
1255  # it passes function pointers within libslirp as callbacks for timers.
1256  # When using a system-wide shared libslirp, the type information for the
1257  # callback is missing and the timer call produces a false positive with CFI.
1258  # Do not use the "version" keyword argument to produce a better error.
1259  # with control-flow integrity.
1260  if get_option('cfi') and slirp.found() and slirp.version().version_compare('<4.7')
1261    if get_option('slirp').enabled()
1262      error('Control-Flow Integrity requires libslirp 4.7.')
1263    else
1264      warning('Cannot use libslirp since Control-Flow Integrity requires libslirp >= 4.7.')
1265      slirp = not_found
1266    endif
1267  endif
1268endif
1269
1270vde = not_found
1271if not get_option('vde').auto() or have_system or have_tools
1272  vde = cc.find_library('vdeplug', has_headers: ['libvdeplug.h'],
1273                           required: get_option('vde'))
1274endif
1275if vde.found() and not cc.links('''
1276   #include <libvdeplug.h>
1277   int main(void)
1278   {
1279     struct vde_open_args a = {0, 0, 0};
1280     char s[] = "";
1281     vde_open(s, s, &a);
1282     return 0;
1283   }''', dependencies: vde)
1284  vde = not_found
1285  if get_option('cap_ng').enabled()
1286    error('could not link libvdeplug')
1287  else
1288    warning('could not link libvdeplug, disabling')
1289  endif
1290endif
1291
1292pulse = not_found
1293if not get_option('pa').auto() or (host_os == 'linux' and have_system)
1294  pulse = dependency('libpulse', required: get_option('pa'),
1295                     method: 'pkg-config')
1296endif
1297alsa = not_found
1298if not get_option('alsa').auto() or (host_os == 'linux' and have_system)
1299  alsa = dependency('alsa', required: get_option('alsa'),
1300                    method: 'pkg-config')
1301endif
1302jack = not_found
1303if not get_option('jack').auto() or have_system
1304  jack = dependency('jack', required: get_option('jack'),
1305                    method: 'pkg-config')
1306endif
1307pipewire = not_found
1308if not get_option('pipewire').auto() or (host_os == 'linux' and have_system)
1309  pipewire = dependency('libpipewire-0.3', version: '>=0.3.60',
1310                    required: get_option('pipewire'),
1311                    method: 'pkg-config')
1312endif
1313sndio = not_found
1314if not get_option('sndio').auto() or have_system
1315  sndio = dependency('sndio', required: get_option('sndio'),
1316                    method: 'pkg-config')
1317endif
1318
1319spice_protocol = not_found
1320if not get_option('spice_protocol').auto() or have_system
1321  spice_protocol = dependency('spice-protocol', version: '>=0.14.0',
1322                              required: get_option('spice_protocol'),
1323                              method: 'pkg-config')
1324endif
1325spice = not_found
1326if get_option('spice') \
1327             .disable_auto_if(not have_system) \
1328             .require(pixman.found(),
1329                      error_message: 'cannot enable SPICE if pixman is not available') \
1330             .allowed()
1331  spice = dependency('spice-server', version: '>=0.14.0',
1332                     required: get_option('spice'),
1333                     method: 'pkg-config')
1334endif
1335spice_headers = spice.partial_dependency(compile_args: true, includes: true)
1336
1337rt = cc.find_library('rt', required: false)
1338
1339libiscsi = not_found
1340if not get_option('libiscsi').auto() or have_block
1341  libiscsi = dependency('libiscsi', version: '>=1.9.0',
1342                         required: get_option('libiscsi'),
1343                         method: 'pkg-config')
1344endif
1345zstd = not_found
1346if not get_option('zstd').auto() or have_block
1347  zstd = dependency('libzstd', version: '>=1.4.0',
1348                    required: get_option('zstd'),
1349                    method: 'pkg-config')
1350endif
1351qpl = not_found
1352if not get_option('qpl').auto() or have_system
1353  qpl = dependency('qpl', version: '>=1.5.0',
1354                    required: get_option('qpl'),
1355                    method: 'pkg-config')
1356endif
1357uadk = not_found
1358if not get_option('uadk').auto() or have_system
1359  libwd = dependency('libwd', version: '>=2.6',
1360                      required: get_option('uadk'),
1361                      method: 'pkg-config')
1362  libwd_comp = dependency('libwd_comp', version: '>=2.6',
1363                           required: get_option('uadk'),
1364                           method: 'pkg-config')
1365  if libwd.found() and libwd_comp.found()
1366     uadk = declare_dependency(dependencies: [libwd, libwd_comp])
1367  endif
1368endif
1369
1370qatzip = not_found
1371if not get_option('qatzip').auto() or have_system
1372  qatzip = dependency('qatzip', version: '>=1.1.2',
1373                      required: get_option('qatzip'),
1374                      method: 'pkg-config')
1375endif
1376
1377virgl = not_found
1378
1379have_vhost_user_gpu = have_tools and host_os == 'linux' and pixman.found()
1380if not get_option('virglrenderer').auto() or have_system or have_vhost_user_gpu
1381  virgl = dependency('virglrenderer',
1382                     method: 'pkg-config',
1383                     required: get_option('virglrenderer'))
1384endif
1385rutabaga = not_found
1386if not get_option('rutabaga_gfx').auto() or have_system or have_vhost_user_gpu
1387  rutabaga = dependency('rutabaga_gfx_ffi',
1388                         method: 'pkg-config',
1389                         required: get_option('rutabaga_gfx'))
1390endif
1391blkio = not_found
1392if not get_option('blkio').auto() or have_block
1393  blkio = dependency('blkio',
1394                     method: 'pkg-config',
1395                     required: get_option('blkio'))
1396endif
1397curl = not_found
1398if not get_option('curl').auto() or have_block
1399  curl = dependency('libcurl', version: '>=7.29.0',
1400                    method: 'pkg-config',
1401                    required: get_option('curl'))
1402endif
1403libudev = not_found
1404if host_os == 'linux' and (have_system or have_tools)
1405  libudev = dependency('libudev',
1406                       method: 'pkg-config',
1407                       required: get_option('libudev'))
1408endif
1409
1410mpathlibs = [libudev]
1411mpathpersist = not_found
1412if host_os == 'linux' and have_tools and get_option('mpath').allowed()
1413  mpath_test_source = '''
1414    #include <libudev.h>
1415    #include <mpath_persist.h>
1416    unsigned mpath_mx_alloc_len = 1024;
1417    int logsink;
1418    static struct config *multipath_conf;
1419    extern struct udev *udev;
1420    extern struct config *get_multipath_config(void);
1421    extern void put_multipath_config(struct config *conf);
1422    struct udev *udev;
1423    struct config *get_multipath_config(void) { return multipath_conf; }
1424    void put_multipath_config(struct config *conf) { }
1425    int main(void) {
1426        udev = udev_new();
1427        multipath_conf = mpath_lib_init();
1428        return 0;
1429    }'''
1430  libmpathpersist = cc.find_library('mpathpersist',
1431                                    required: get_option('mpath'))
1432  if libmpathpersist.found()
1433    mpathlibs += libmpathpersist
1434    if get_option('prefer_static')
1435      mpathlibs += cc.find_library('devmapper',
1436                                     required: get_option('mpath'))
1437    endif
1438    mpathlibs += cc.find_library('multipath',
1439                                 required: get_option('mpath'))
1440    foreach lib: mpathlibs
1441      if not lib.found()
1442        mpathlibs = []
1443        break
1444      endif
1445    endforeach
1446    if mpathlibs.length() == 0
1447      msg = 'Dependencies missing for libmpathpersist'
1448    elif cc.links(mpath_test_source, dependencies: mpathlibs)
1449      mpathpersist = declare_dependency(dependencies: mpathlibs)
1450    else
1451      msg = 'Cannot detect libmpathpersist API'
1452    endif
1453    if not mpathpersist.found()
1454      if get_option('mpath').enabled()
1455        error(msg)
1456      else
1457        warning(msg + ', disabling')
1458      endif
1459    endif
1460  endif
1461endif
1462
1463iconv = not_found
1464curses = not_found
1465if have_system and get_option('curses').allowed()
1466  curses_test = '''
1467    #ifdef __APPLE__
1468    #define _XOPEN_SOURCE_EXTENDED 1
1469    #endif
1470    #include <locale.h>
1471    #include <curses.h>
1472    #include <wchar.h>
1473    int main(void) {
1474      wchar_t wch = L'w';
1475      setlocale(LC_ALL, "");
1476      resize_term(0, 0);
1477      addwstr(L"wide chars\n");
1478      addnwstr(&wch, 1);
1479      add_wch(WACS_DEGREE);
1480      return 0;
1481    }'''
1482
1483  curses_dep_list = host_os == 'windows' ? ['ncurses', 'ncursesw'] : ['ncursesw']
1484  curses = dependency(curses_dep_list,
1485                      required: false,
1486                      method: 'pkg-config')
1487  msg = get_option('curses').enabled() ? 'curses library not found' : ''
1488  curses_compile_args = ['-DNCURSES_WIDECHAR=1']
1489  if curses.found()
1490    if cc.links(curses_test, args: curses_compile_args, dependencies: [curses])
1491      curses = declare_dependency(compile_args: curses_compile_args, dependencies: [curses],
1492                                  version: curses.version())
1493    else
1494      msg = 'curses package not usable'
1495      curses = not_found
1496    endif
1497  endif
1498  if not curses.found()
1499    has_curses_h = cc.has_header('curses.h', args: curses_compile_args)
1500    if host_os != 'windows' and not has_curses_h
1501      message('Trying with /usr/include/ncursesw')
1502      curses_compile_args += ['-I/usr/include/ncursesw']
1503      has_curses_h = cc.has_header('curses.h', args: curses_compile_args)
1504    endif
1505    if has_curses_h
1506      curses_libname_list = (host_os == 'windows' ? ['pdcurses'] : ['ncursesw', 'cursesw'])
1507      foreach curses_libname : curses_libname_list
1508        libcurses = cc.find_library(curses_libname,
1509                                    required: false)
1510        if libcurses.found()
1511          if cc.links(curses_test, args: curses_compile_args, dependencies: libcurses)
1512            curses = declare_dependency(compile_args: curses_compile_args,
1513                                        dependencies: [libcurses])
1514            break
1515          else
1516            msg = 'curses library not usable'
1517          endif
1518        endif
1519      endforeach
1520    endif
1521  endif
1522  if get_option('iconv').allowed()
1523    foreach link_args : [ ['-liconv'], [] ]
1524      # Programs will be linked with glib and this will bring in libiconv on FreeBSD.
1525      # We need to use libiconv if available because mixing libiconv's headers with
1526      # the system libc does not work.
1527      # However, without adding glib to the dependencies -L/usr/local/lib will not be
1528      # included in the command line and libiconv will not be found.
1529      if cc.links('''
1530        #include <iconv.h>
1531        int main(void) {
1532          iconv_t conv = iconv_open("WCHAR_T", "UCS-2");
1533          return conv != (iconv_t) -1;
1534        }''', args: link_args, dependencies: glib)
1535        iconv = declare_dependency(link_args: link_args, dependencies: glib)
1536        break
1537      endif
1538    endforeach
1539  endif
1540  if curses.found() and not iconv.found()
1541    if get_option('iconv').enabled()
1542      error('iconv not available')
1543    endif
1544    msg = 'iconv required for curses UI but not available'
1545    curses = not_found
1546  endif
1547  if not curses.found() and msg != ''
1548    if get_option('curses').enabled()
1549      error(msg)
1550    else
1551      warning(msg + ', disabling')
1552    endif
1553  endif
1554endif
1555
1556brlapi = not_found
1557if not get_option('brlapi').auto() or have_system
1558  brlapi = cc.find_library('brlapi', has_headers: ['brlapi.h'],
1559                         required: get_option('brlapi'))
1560  if brlapi.found() and not cc.links('''
1561     #include <brlapi.h>
1562     #include <stddef.h>
1563     int main(void) { return brlapi__openConnection (NULL, NULL, NULL); }''', dependencies: brlapi)
1564    brlapi = not_found
1565    if get_option('brlapi').enabled()
1566      error('could not link brlapi')
1567    else
1568      warning('could not link brlapi, disabling')
1569    endif
1570  endif
1571endif
1572
1573sdl = not_found
1574if not get_option('sdl').auto() or have_system
1575  sdl = dependency('sdl2', required: get_option('sdl'))
1576  sdl_image = not_found
1577endif
1578if sdl.found()
1579  # Some versions of SDL have problems with -Wundef
1580  if not cc.compiles('''
1581                     #include <SDL.h>
1582                     #include <SDL_syswm.h>
1583                     int main(int argc, char *argv[]) { return 0; }
1584                     ''', dependencies: sdl, args: '-Werror=undef')
1585    sdl = declare_dependency(compile_args: '-Wno-undef',
1586                             dependencies: sdl,
1587                             version: sdl.version())
1588  endif
1589  sdl_image = dependency('SDL2_image', required: get_option('sdl_image'),
1590                         method: 'pkg-config')
1591else
1592  if get_option('sdl_image').enabled()
1593    error('sdl-image required, but SDL was @0@'.format(
1594          get_option('sdl').disabled() ? 'disabled' : 'not found'))
1595  endif
1596  sdl_image = not_found
1597endif
1598
1599rbd = not_found
1600if not get_option('rbd').auto() or have_block
1601  librados = cc.find_library('rados', required: get_option('rbd'))
1602  librbd = cc.find_library('rbd', has_headers: ['rbd/librbd.h'],
1603                           required: get_option('rbd'))
1604  if librados.found() and librbd.found()
1605    if cc.links('''
1606      #include <stdio.h>
1607      #include <rbd/librbd.h>
1608      int main(void) {
1609        rados_t cluster;
1610        rados_create(&cluster, NULL);
1611        #if LIBRBD_VERSION_CODE < LIBRBD_VERSION(1, 12, 0)
1612        #error
1613        #endif
1614        return 0;
1615      }''', dependencies: [librbd, librados])
1616      rbd = declare_dependency(dependencies: [librbd, librados])
1617    elif get_option('rbd').enabled()
1618      error('librbd >= 1.12.0 required')
1619    else
1620      warning('librbd >= 1.12.0 not found, disabling')
1621    endif
1622  endif
1623endif
1624
1625glusterfs = not_found
1626glusterfs_ftruncate_has_stat = false
1627glusterfs_iocb_has_stat = false
1628if not get_option('glusterfs').auto() or have_block
1629  glusterfs = dependency('glusterfs-api', version: '>=3',
1630                         required: get_option('glusterfs'),
1631                         method: 'pkg-config')
1632  if glusterfs.found()
1633    glusterfs_ftruncate_has_stat = cc.links('''
1634      #include <glusterfs/api/glfs.h>
1635
1636      int
1637      main(void)
1638      {
1639          /* new glfs_ftruncate() passes two additional args */
1640          return glfs_ftruncate(NULL, 0, NULL, NULL);
1641      }
1642    ''', dependencies: glusterfs)
1643    glusterfs_iocb_has_stat = cc.links('''
1644      #include <glusterfs/api/glfs.h>
1645
1646      /* new glfs_io_cbk() passes two additional glfs_stat structs */
1647      static void
1648      glusterfs_iocb(glfs_fd_t *fd, ssize_t ret, struct glfs_stat *prestat, struct glfs_stat *poststat, void *data)
1649      {}
1650
1651      int
1652      main(void)
1653      {
1654          glfs_io_cbk iocb = &glusterfs_iocb;
1655          iocb(NULL, 0 , NULL, NULL, NULL);
1656          return 0;
1657      }
1658    ''', dependencies: glusterfs)
1659  endif
1660endif
1661
1662hv_balloon = false
1663if get_option('hv_balloon').allowed() and have_system
1664  if cc.links('''
1665    #include <string.h>
1666    #include <gmodule.h>
1667    int main(void) {
1668        GTree *tree;
1669
1670        tree = g_tree_new((GCompareFunc)strcmp);
1671        (void)g_tree_node_first(tree);
1672        g_tree_destroy(tree);
1673        return 0;
1674    }
1675  ''', dependencies: glib)
1676    hv_balloon = true
1677  else
1678    if get_option('hv_balloon').enabled()
1679      error('could not enable hv-balloon, update your glib')
1680    else
1681      warning('could not find glib support for hv-balloon, disabling')
1682    endif
1683  endif
1684endif
1685
1686libssh = not_found
1687if not get_option('libssh').auto() or have_block
1688  libssh = dependency('libssh', version: '>=0.8.7',
1689                    method: 'pkg-config',
1690                    required: get_option('libssh'))
1691endif
1692
1693libbzip2 = not_found
1694if not get_option('bzip2').auto() or have_block
1695  libbzip2 = cc.find_library('bz2', has_headers: ['bzlib.h'],
1696                             required: get_option('bzip2'))
1697  if libbzip2.found() and not cc.links('''
1698     #include <bzlib.h>
1699     int main(void) { BZ2_bzlibVersion(); return 0; }''', dependencies: libbzip2)
1700    libbzip2 = not_found
1701    if get_option('bzip2').enabled()
1702      error('could not link libbzip2')
1703    else
1704      warning('could not link libbzip2, disabling')
1705    endif
1706  endif
1707endif
1708
1709liblzfse = not_found
1710if not get_option('lzfse').auto() or have_block
1711  liblzfse = cc.find_library('lzfse', has_headers: ['lzfse.h'],
1712                             required: get_option('lzfse'))
1713endif
1714if liblzfse.found() and not cc.links('''
1715   #include <lzfse.h>
1716   int main(void) { lzfse_decode_scratch_size(); return 0; }''', dependencies: liblzfse)
1717  liblzfse = not_found
1718  if get_option('lzfse').enabled()
1719    error('could not link liblzfse')
1720  else
1721    warning('could not link liblzfse, disabling')
1722  endif
1723endif
1724
1725oss = not_found
1726if get_option('oss').allowed() and have_system
1727  if not cc.has_header('sys/soundcard.h')
1728    # not found
1729  elif host_os == 'netbsd'
1730    oss = cc.find_library('ossaudio', required: get_option('oss'))
1731  else
1732    oss = declare_dependency()
1733  endif
1734
1735  if not oss.found()
1736    if get_option('oss').enabled()
1737      error('OSS not found')
1738    endif
1739  endif
1740endif
1741dsound = not_found
1742if not get_option('dsound').auto() or (host_os == 'windows' and have_system)
1743  if cc.has_header('dsound.h')
1744    dsound = declare_dependency(link_args: ['-lole32', '-ldxguid'])
1745  endif
1746
1747  if not dsound.found()
1748    if get_option('dsound').enabled()
1749      error('DirectSound not found')
1750    endif
1751  endif
1752endif
1753
1754coreaudio = not_found
1755if not get_option('coreaudio').auto() or (host_os == 'darwin' and have_system)
1756  coreaudio = dependency('appleframeworks', modules: 'CoreAudio',
1757                         required: get_option('coreaudio'))
1758endif
1759
1760opengl = not_found
1761if not get_option('opengl').auto() or have_system or have_vhost_user_gpu
1762  epoxy = dependency('epoxy', method: 'pkg-config',
1763                      required: get_option('opengl'))
1764  if cc.has_header('epoxy/egl.h', dependencies: epoxy)
1765    opengl = epoxy
1766  elif get_option('opengl').enabled()
1767    error('epoxy/egl.h not found')
1768  endif
1769endif
1770gbm = not_found
1771if (have_system or have_tools) and (virgl.found() or opengl.found())
1772  gbm = dependency('gbm', method: 'pkg-config', required: false)
1773endif
1774have_vhost_user_gpu = have_vhost_user_gpu and virgl.found() and opengl.found() and gbm.found()
1775
1776libcbor = not_found
1777if not get_option('libcbor').auto() or have_system
1778  libcbor = dependency('libcbor', version: '>=0.7.0',
1779                       required: get_option('libcbor'))
1780endif
1781
1782gnutls = not_found
1783gnutls_crypto = not_found
1784if get_option('gnutls').enabled() or (get_option('gnutls').auto() and have_system)
1785  # For general TLS support our min gnutls matches
1786  # that implied by our platform support matrix
1787  #
1788  # For the crypto backends, we look for a newer
1789  # gnutls:
1790  #
1791  #   Version 3.6.8  is needed to get XTS
1792  #   Version 3.6.13 is needed to get PBKDF
1793  #   Version 3.6.14 is needed to get HW accelerated XTS
1794  #
1795  # If newer enough gnutls isn't available, we can
1796  # still use a different crypto backend to satisfy
1797  # the platform support requirements
1798  gnutls_crypto = dependency('gnutls', version: '>=3.6.14',
1799                             method: 'pkg-config',
1800                             required: false)
1801  if gnutls_crypto.found()
1802    gnutls = gnutls_crypto
1803  else
1804    # Our min version if all we need is TLS
1805    gnutls = dependency('gnutls', version: '>=3.5.18',
1806                        method: 'pkg-config',
1807                        required: get_option('gnutls'))
1808  endif
1809endif
1810
1811# We prefer use of gnutls for crypto, unless the options
1812# explicitly asked for nettle or gcrypt.
1813#
1814# If gnutls isn't available for crypto, then we'll prefer
1815# gcrypt over nettle for performance reasons.
1816gcrypt = not_found
1817nettle = not_found
1818hogweed = not_found
1819crypto_sm4 = not_found
1820crypto_sm3 = not_found
1821xts = 'none'
1822
1823if get_option('nettle').enabled() and get_option('gcrypt').enabled()
1824  error('Only one of gcrypt & nettle can be enabled')
1825endif
1826
1827# Explicit nettle/gcrypt request, so ignore gnutls for crypto
1828if get_option('nettle').enabled() or get_option('gcrypt').enabled()
1829  gnutls_crypto = not_found
1830endif
1831
1832if not gnutls_crypto.found()
1833  if (not get_option('gcrypt').auto() or have_system) and not get_option('nettle').enabled()
1834    gcrypt = dependency('libgcrypt', version: '>=1.8',
1835                        required: get_option('gcrypt'))
1836    # Debian has removed -lgpg-error from libgcrypt-config
1837    # as it "spreads unnecessary dependencies" which in
1838    # turn breaks static builds...
1839    if gcrypt.found() and get_option('prefer_static')
1840      gcrypt = declare_dependency(dependencies:
1841        [gcrypt,
1842         cc.find_library('gpg-error', required: true)],
1843        version: gcrypt.version())
1844    endif
1845    crypto_sm4 = gcrypt
1846    # SM4 ALG is available in libgcrypt >= 1.9
1847    if gcrypt.found() and not cc.links('''
1848      #include <gcrypt.h>
1849      int main(void) {
1850        gcry_cipher_hd_t handler;
1851        gcry_cipher_open(&handler, GCRY_CIPHER_SM4, GCRY_CIPHER_MODE_ECB, 0);
1852        return 0;
1853      }''', dependencies: gcrypt)
1854      crypto_sm4 = not_found
1855    endif
1856    crypto_sm3 = gcrypt
1857    # SM3 ALG is available in libgcrypt >= 1.9
1858    if gcrypt.found() and not cc.links('''
1859      #include <gcrypt.h>
1860      int main(void) {
1861        gcry_md_hd_t handler;
1862        gcry_md_open(&handler, GCRY_MD_SM3, 0);
1863        return 0;
1864      }''', dependencies: gcrypt)
1865      crypto_sm3 = not_found
1866    endif
1867  endif
1868  if (not get_option('nettle').auto() or have_system) and not gcrypt.found()
1869    nettle = dependency('nettle', version: '>=3.4',
1870                        method: 'pkg-config',
1871                        required: get_option('nettle'))
1872    if nettle.found() and not cc.has_header('nettle/xts.h', dependencies: nettle)
1873      xts = 'private'
1874    endif
1875    crypto_sm4 = nettle
1876    # SM4 ALG is available in nettle >= 3.9
1877    if nettle.found() and not cc.links('''
1878      #include <nettle/sm4.h>
1879      int main(void) {
1880        struct sm4_ctx ctx;
1881        unsigned char key[16] = {0};
1882        sm4_set_encrypt_key(&ctx, key);
1883        return 0;
1884      }''', dependencies: nettle)
1885      crypto_sm4 = not_found
1886    endif
1887    crypto_sm3 = nettle
1888    # SM3 ALG is available in nettle >= 3.8
1889    if nettle.found() and not cc.links('''
1890      #include <nettle/sm3.h>
1891      #include <nettle/hmac.h>
1892      int main(void) {
1893      struct sm3_ctx ctx;
1894      struct hmac_sm3_ctx hmac_ctx;
1895      unsigned char data[64] = {0};
1896      unsigned char output[32];
1897
1898      // SM3 hash function test
1899      sm3_init(&ctx);
1900      sm3_update(&ctx, 64, data);
1901      sm3_digest(&ctx, 32, data);
1902
1903      // HMAC-SM3 test
1904      hmac_sm3_set_key(&hmac_ctx, 32, data);
1905      hmac_sm3_update(&hmac_ctx, 64, data);
1906      hmac_sm3_digest(&hmac_ctx, 32, output);
1907
1908      return 0;
1909      }''', dependencies: nettle)
1910      crypto_sm3 = not_found
1911    endif
1912  endif
1913endif
1914
1915capstone = not_found
1916if not get_option('capstone').auto() or have_system or have_user
1917  capstone = dependency('capstone', version: '>=3.0.5',
1918                        method: 'pkg-config',
1919                        required: get_option('capstone'))
1920
1921  # Some versions of capstone have broken pkg-config file
1922  # that reports a wrong -I path, causing the #include to
1923  # fail later. If the system has such a broken version
1924  # do not use it.
1925  if capstone.found() and not cc.compiles('#include <capstone.h>',
1926                                          dependencies: [capstone])
1927    capstone = not_found
1928    if get_option('capstone').enabled()
1929      error('capstone requested, but it does not appear to work')
1930    endif
1931  endif
1932endif
1933
1934gmp = dependency('gmp', required: false, method: 'pkg-config')
1935if nettle.found() and gmp.found()
1936  hogweed = dependency('hogweed', version: '>=3.4',
1937                       method: 'pkg-config',
1938                       required: get_option('nettle'))
1939endif
1940
1941
1942gtk = not_found
1943gtkx11 = not_found
1944vte = not_found
1945have_gtk_clipboard = get_option('gtk_clipboard').enabled()
1946
1947if get_option('gtk') \
1948             .disable_auto_if(not have_system) \
1949             .require(pixman.found(),
1950                      error_message: 'cannot enable GTK if pixman is not available') \
1951             .allowed()
1952  gtk = dependency('gtk+-3.0', version: '>=3.22.0',
1953                   method: 'pkg-config',
1954                   required: get_option('gtk'))
1955  if gtk.found()
1956    gtkx11 = dependency('gtk+-x11-3.0', version: '>=3.22.0',
1957                        method: 'pkg-config',
1958                        required: false)
1959    gtk = declare_dependency(dependencies: [gtk, gtkx11],
1960                             version: gtk.version())
1961
1962    if not get_option('vte').auto() or have_system
1963      vte = dependency('vte-2.91',
1964                       method: 'pkg-config',
1965                       required: get_option('vte'))
1966    endif
1967  elif have_gtk_clipboard
1968    error('GTK clipboard requested, but GTK not found')
1969  endif
1970endif
1971
1972x11 = not_found
1973if gtkx11.found()
1974  x11 = dependency('x11', method: 'pkg-config', required: gtkx11.found())
1975endif
1976png = not_found
1977if get_option('png').allowed() and have_system
1978   png = dependency('libpng', version: '>=1.6.34', required: get_option('png'),
1979                    method: 'pkg-config')
1980endif
1981vnc = not_found
1982jpeg = not_found
1983sasl = not_found
1984if get_option('vnc') \
1985             .disable_auto_if(not have_system) \
1986             .require(pixman.found(),
1987                      error_message: 'cannot enable VNC if pixman is not available') \
1988             .allowed()
1989  vnc = declare_dependency() # dummy dependency
1990  jpeg = dependency('libjpeg', required: get_option('vnc_jpeg'),
1991                    method: 'pkg-config')
1992  sasl = cc.find_library('sasl2', has_headers: ['sasl/sasl.h'],
1993                         required: get_option('vnc_sasl'))
1994  if sasl.found()
1995    sasl = declare_dependency(dependencies: sasl,
1996                              compile_args: '-DSTRUCT_IOVEC_DEFINED')
1997  endif
1998endif
1999
2000pam = not_found
2001if not get_option('auth_pam').auto() or have_system
2002  pam = cc.find_library('pam', has_headers: ['security/pam_appl.h'],
2003                        required: get_option('auth_pam'))
2004endif
2005if pam.found() and not cc.links('''
2006   #include <stddef.h>
2007   #include <security/pam_appl.h>
2008   int main(void) {
2009     const char *service_name = "qemu";
2010     const char *user = "frank";
2011     const struct pam_conv pam_conv = { 0 };
2012     pam_handle_t *pamh = NULL;
2013     pam_start(service_name, user, &pam_conv, &pamh);
2014     return 0;
2015   }''', dependencies: pam)
2016  pam = not_found
2017  if get_option('auth_pam').enabled()
2018    error('could not link libpam')
2019  else
2020    warning('could not link libpam, disabling')
2021  endif
2022endif
2023
2024snappy = not_found
2025if not get_option('snappy').auto() or have_system
2026  snappy = cc.find_library('snappy', has_headers: ['snappy-c.h'],
2027                           required: get_option('snappy'))
2028endif
2029if snappy.found() and not cc.links('''
2030   #include <snappy-c.h>
2031   int main(void) { snappy_max_compressed_length(4096); return 0; }''', dependencies: snappy)
2032  snappy = not_found
2033  if get_option('snappy').enabled()
2034    error('could not link libsnappy')
2035  else
2036    warning('could not link libsnappy, disabling')
2037  endif
2038endif
2039
2040lzo = not_found
2041if not get_option('lzo').auto() or have_system
2042  lzo = cc.find_library('lzo2', has_headers: ['lzo/lzo1x.h'],
2043                        required: get_option('lzo'))
2044endif
2045if lzo.found() and not cc.links('''
2046   #include <lzo/lzo1x.h>
2047   int main(void) { lzo_version(); return 0; }''', dependencies: lzo)
2048  lzo = not_found
2049  if get_option('lzo').enabled()
2050    error('could not link liblzo2')
2051  else
2052    warning('could not link liblzo2, disabling')
2053  endif
2054endif
2055
2056numa = not_found
2057if not get_option('numa').auto() or have_system or have_tools
2058  numa = cc.find_library('numa', has_headers: ['numa.h'],
2059                              required: get_option('numa'))
2060endif
2061if numa.found() and not cc.links('''
2062   #include <numa.h>
2063   int main(void) { return numa_available(); }
2064   ''', dependencies: numa)
2065  numa = not_found
2066  if get_option('numa').enabled()
2067    error('could not link numa')
2068  else
2069    warning('could not link numa, disabling')
2070  endif
2071endif
2072
2073fdt = not_found
2074fdt_opt = get_option('fdt')
2075if fdt_opt == 'enabled' and get_option('wrap_mode') == 'nodownload'
2076  fdt_opt = 'system'
2077endif
2078if fdt_opt in ['enabled', 'system'] or (fdt_opt == 'auto' and have_system)
2079  fdt = cc.find_library('fdt', required: fdt_opt == 'system')
2080  if fdt.found() and cc.links('''
2081     #include <libfdt.h>
2082     #include <libfdt_env.h>
2083     int main(void) { fdt_find_max_phandle(NULL, NULL); return 0; }''',
2084       dependencies: fdt)
2085    fdt_opt = 'system'
2086  elif fdt_opt != 'system'
2087    fdt_opt = get_option('wrap_mode') == 'nodownload' ? 'disabled' : 'internal'
2088    fdt = not_found
2089  else
2090    error('system libfdt is too old (1.5.1 or newer required)')
2091  endif
2092endif
2093if fdt_opt == 'internal'
2094  assert(not fdt.found())
2095  libfdt_proj = subproject('dtc', required: true,
2096                           default_options: ['tools=false',  'yaml=disabled',
2097                                             'python=disabled', 'default_library=static'])
2098  fdt = libfdt_proj.get_variable('libfdt_dep')
2099endif
2100
2101rdma = not_found
2102if not get_option('rdma').auto() or have_system
2103  rdma_libs = [cc.find_library('rdmacm', has_headers: ['rdma/rdma_cma.h'],
2104                               required: get_option('rdma')),
2105               cc.find_library('ibverbs', required: get_option('rdma'))]
2106  rdma = declare_dependency(dependencies: rdma_libs)
2107  foreach lib: rdma_libs
2108    if not lib.found()
2109      rdma = not_found
2110    endif
2111  endforeach
2112endif
2113
2114cacard = not_found
2115if not get_option('smartcard').auto() or have_system
2116  cacard = dependency('libcacard', required: get_option('smartcard'),
2117                      version: '>=2.5.1', method: 'pkg-config')
2118endif
2119u2f = not_found
2120if not get_option('u2f').auto() or have_system
2121  u2f = dependency('u2f-emu', required: get_option('u2f'),
2122                   method: 'pkg-config')
2123endif
2124canokey = not_found
2125if not get_option('canokey').auto() or have_system
2126  canokey = dependency('canokey-qemu', required: get_option('canokey'),
2127                   method: 'pkg-config')
2128endif
2129usbredir = not_found
2130if not get_option('usb_redir').auto() or have_system
2131  usbredir = dependency('libusbredirparser-0.5', required: get_option('usb_redir'),
2132                        version: '>=0.6', method: 'pkg-config')
2133endif
2134libusb = not_found
2135if not get_option('libusb').auto() or have_system
2136  libusb = dependency('libusb-1.0', required: get_option('libusb'),
2137                      version: '>=1.0.13', method: 'pkg-config')
2138endif
2139
2140libpmem = not_found
2141if not get_option('libpmem').auto() or have_system
2142  libpmem = dependency('libpmem', required: get_option('libpmem'),
2143                       method: 'pkg-config')
2144endif
2145libdaxctl = not_found
2146if not get_option('libdaxctl').auto() or have_system
2147  libdaxctl = dependency('libdaxctl', required: get_option('libdaxctl'),
2148                         version: '>=57', method: 'pkg-config')
2149endif
2150tasn1 = not_found
2151if gnutls.found()
2152  tasn1 = dependency('libtasn1',
2153                     required: false,
2154                     method: 'pkg-config')
2155endif
2156keyutils = not_found
2157if not get_option('libkeyutils').auto() or have_block
2158  keyutils = dependency('libkeyutils', required: get_option('libkeyutils'),
2159                        method: 'pkg-config')
2160endif
2161
2162has_gettid = cc.has_function('gettid')
2163
2164# libselinux
2165selinux = dependency('libselinux',
2166                     required: get_option('selinux'),
2167                     method: 'pkg-config')
2168
2169# Malloc tests
2170
2171malloc = []
2172if get_option('malloc') == 'system'
2173  has_malloc_trim = \
2174    get_option('malloc_trim').allowed() and \
2175    cc.has_function('malloc_trim', prefix: '#include <malloc.h>')
2176else
2177  has_malloc_trim = false
2178  malloc = cc.find_library(get_option('malloc'), required: true)
2179endif
2180if not has_malloc_trim and get_option('malloc_trim').enabled()
2181  if get_option('malloc') == 'system'
2182    error('malloc_trim not available on this platform.')
2183  else
2184    error('malloc_trim not available with non-libc memory allocator')
2185  endif
2186endif
2187
2188osdep_prefix = '''
2189  #ifndef _GNU_SOURCE
2190  #define _GNU_SOURCE
2191  #endif
2192
2193  #include <stddef.h>
2194  #include <sys/types.h>
2195
2196  #include <string.h>
2197  #include <limits.h>
2198  /* Put unistd.h before time.h as that triggers localtime_r/gmtime_r
2199   * function availability on recentish Mingw-w64 platforms. */
2200  #include <unistd.h>
2201  #include <time.h>
2202  #include <errno.h>
2203  #include <fcntl.h>
2204'''
2205
2206have_vhost_user_blk_server = get_option('vhost_user_blk_server') \
2207  .require(host_os == 'linux',
2208           error_message: 'vhost_user_blk_server requires linux') \
2209  .require(have_vhost_user,
2210           error_message: 'vhost_user_blk_server requires vhost-user support') \
2211  .disable_auto_if(not have_tools and not have_system) \
2212  .allowed()
2213
2214if get_option('fuse').disabled() and get_option('fuse_lseek').enabled()
2215  error('Cannot enable fuse-lseek while fuse is disabled')
2216endif
2217
2218fuse = dependency('fuse3', required: get_option('fuse'),
2219                  version: '>=3.1', method: 'pkg-config')
2220
2221fuse_lseek = not_found
2222if get_option('fuse_lseek').allowed()
2223  if fuse.version().version_compare('>=3.8')
2224    # Dummy dependency
2225    fuse_lseek = declare_dependency()
2226  elif get_option('fuse_lseek').enabled()
2227    if fuse.found()
2228      error('fuse-lseek requires libfuse >=3.8, found ' + fuse.version())
2229    else
2230      error('fuse-lseek requires libfuse, which was not found')
2231    endif
2232  endif
2233endif
2234
2235have_libvduse = (host_os == 'linux')
2236if get_option('libvduse').enabled()
2237    if host_os != 'linux'
2238        error('libvduse requires linux')
2239    endif
2240elif get_option('libvduse').disabled()
2241    have_libvduse = false
2242endif
2243
2244have_vduse_blk_export = (have_libvduse and host_os == 'linux')
2245if get_option('vduse_blk_export').enabled()
2246    if host_os != 'linux'
2247        error('vduse_blk_export requires linux')
2248    elif not have_libvduse
2249        error('vduse_blk_export requires libvduse support')
2250    endif
2251elif get_option('vduse_blk_export').disabled()
2252    have_vduse_blk_export = false
2253endif
2254
2255# libbpf
2256bpf_version = '1.1.0'
2257libbpf = dependency('libbpf', version: '>=' + bpf_version, required: get_option('bpf'), method: 'pkg-config')
2258if libbpf.found() and not cc.links('''
2259   #include <bpf/libbpf.h>
2260   #include <linux/bpf.h>
2261   int main(void)
2262   {
2263     // check flag availability
2264     int flag = BPF_F_MMAPABLE;
2265     bpf_object__destroy_skeleton(NULL);
2266     return 0;
2267   }''', dependencies: libbpf)
2268  libbpf = not_found
2269  if get_option('bpf').enabled()
2270    error('libbpf skeleton/mmaping test failed')
2271  else
2272    warning('libbpf skeleton/mmaping test failed, disabling')
2273  endif
2274endif
2275
2276# libxdp
2277libxdp = not_found
2278if not get_option('af_xdp').auto() or have_system
2279    if libbpf.found()
2280        libxdp = dependency('libxdp', required: get_option('af_xdp'),
2281                            version: '>=1.4.0', method: 'pkg-config')
2282    else
2283        if get_option('af_xdp').enabled()
2284            error('libxdp requested, but libbpf is not available')
2285        endif
2286    endif
2287endif
2288
2289# libdw
2290libdw = not_found
2291if not get_option('libdw').auto() or \
2292        (not get_option('prefer_static') and (have_system or have_user))
2293    libdw = dependency('libdw',
2294                       method: 'pkg-config',
2295                       required: get_option('libdw'))
2296endif
2297
2298#################
2299# config-host.h #
2300#################
2301
2302config_host_data = configuration_data()
2303
2304config_host_data.set('CONFIG_HAVE_RUST', have_rust)
2305audio_drivers_selected = []
2306if have_system
2307  audio_drivers_available = {
2308    'alsa': alsa.found(),
2309    'coreaudio': coreaudio.found(),
2310    'dsound': dsound.found(),
2311    'jack': jack.found(),
2312    'oss': oss.found(),
2313    'pa': pulse.found(),
2314    'pipewire': pipewire.found(),
2315    'sdl': sdl.found(),
2316    'sndio': sndio.found(),
2317  }
2318  foreach k, v: audio_drivers_available
2319    config_host_data.set('CONFIG_AUDIO_' + k.to_upper(), v)
2320  endforeach
2321
2322  # Default to native drivers first, OSS second, SDL third
2323  audio_drivers_priority = \
2324    [ 'pa', 'coreaudio', 'dsound', 'sndio', 'oss' ] + \
2325    (host_os == 'linux' ? [] : [ 'sdl' ])
2326  audio_drivers_default = []
2327  foreach k: audio_drivers_priority
2328    if audio_drivers_available[k]
2329      audio_drivers_default += k
2330    endif
2331  endforeach
2332
2333  foreach k: get_option('audio_drv_list')
2334    if k == 'default'
2335      audio_drivers_selected += audio_drivers_default
2336    elif not audio_drivers_available[k]
2337      error('Audio driver "@0@" not available.'.format(k))
2338    else
2339      audio_drivers_selected += k
2340    endif
2341  endforeach
2342endif
2343config_host_data.set('CONFIG_AUDIO_DRIVERS',
2344                     '"' + '", "'.join(audio_drivers_selected) + '", ')
2345
2346have_host_block_device = (host_os != 'darwin' or
2347    cc.has_header('IOKit/storage/IOMedia.h'))
2348
2349dbus_display = get_option('dbus_display') \
2350  .require(gio.version().version_compare('>=2.64'),
2351           error_message: '-display dbus requires glib>=2.64') \
2352  .require(gdbus_codegen.found(),
2353           error_message: gdbus_codegen_error.format('-display dbus')) \
2354  .allowed()
2355
2356have_virtfs = get_option('virtfs') \
2357    .require(host_os == 'linux' or host_os == 'darwin',
2358             error_message: 'virtio-9p (virtfs) requires Linux or macOS') \
2359    .require(host_os == 'linux' or cc.has_function('pthread_fchdir_np'),
2360             error_message: 'virtio-9p (virtfs) on macOS requires the presence of pthread_fchdir_np') \
2361    .require(host_os == 'darwin' or libattr.found(),
2362             error_message: 'virtio-9p (virtfs) on Linux requires libattr-devel') \
2363    .disable_auto_if(not have_tools and not have_system) \
2364    .allowed()
2365
2366qga_fsfreeze = false
2367qga_fstrim = false
2368if host_os == 'linux'
2369    if cc.has_header_symbol('linux/fs.h', 'FIFREEZE')
2370        qga_fsfreeze = true
2371    endif
2372    if cc.has_header_symbol('linux/fs.h', 'FITRIM')
2373        qga_fstrim = true
2374    endif
2375elif host_os == 'freebsd' and cc.has_header_symbol('ufs/ffs/fs.h', 'UFSSUSPEND')
2376    qga_fsfreeze = true
2377endif
2378
2379if get_option('block_drv_ro_whitelist') == ''
2380  config_host_data.set('CONFIG_BDRV_RO_WHITELIST', '')
2381else
2382  config_host_data.set('CONFIG_BDRV_RO_WHITELIST',
2383        '"' + get_option('block_drv_ro_whitelist').replace(',', '", "') + '", ')
2384endif
2385if get_option('block_drv_rw_whitelist') == ''
2386  config_host_data.set('CONFIG_BDRV_RW_WHITELIST', '')
2387else
2388  config_host_data.set('CONFIG_BDRV_RW_WHITELIST',
2389        '"' + get_option('block_drv_rw_whitelist').replace(',', '", "') + '", ')
2390endif
2391
2392foreach k : get_option('trace_backends')
2393  config_host_data.set('CONFIG_TRACE_' + k.to_upper(), true)
2394endforeach
2395config_host_data.set_quoted('CONFIG_TRACE_FILE', get_option('trace_file'))
2396config_host_data.set_quoted('CONFIG_TLS_PRIORITY', get_option('tls_priority'))
2397if iasl.found()
2398  config_host_data.set_quoted('CONFIG_IASL', iasl.full_path())
2399endif
2400config_host_data.set_quoted('CONFIG_BINDIR', get_option('prefix') / get_option('bindir'))
2401config_host_data.set_quoted('CONFIG_PREFIX', get_option('prefix'))
2402config_host_data.set_quoted('CONFIG_QEMU_CONFDIR', get_option('prefix') / qemu_confdir)
2403config_host_data.set_quoted('CONFIG_QEMU_DATADIR', get_option('prefix') / qemu_datadir)
2404config_host_data.set_quoted('CONFIG_QEMU_DESKTOPDIR', get_option('prefix') / qemu_desktopdir)
2405
2406qemu_firmwarepath = ''
2407foreach k : get_option('qemu_firmwarepath')
2408  qemu_firmwarepath += '"' + get_option('prefix') / k + '", '
2409endforeach
2410config_host_data.set('CONFIG_QEMU_FIRMWAREPATH', qemu_firmwarepath)
2411
2412config_host_data.set_quoted('CONFIG_QEMU_HELPERDIR', get_option('prefix') / get_option('libexecdir'))
2413config_host_data.set_quoted('CONFIG_QEMU_ICONDIR', get_option('prefix') / qemu_icondir)
2414config_host_data.set_quoted('CONFIG_QEMU_LOCALEDIR', get_option('prefix') / get_option('localedir'))
2415config_host_data.set_quoted('CONFIG_QEMU_LOCALSTATEDIR', get_option('prefix') / get_option('localstatedir'))
2416config_host_data.set_quoted('CONFIG_QEMU_MODDIR', get_option('prefix') / qemu_moddir)
2417config_host_data.set_quoted('CONFIG_SYSCONFDIR', get_option('prefix') / get_option('sysconfdir'))
2418
2419if enable_modules
2420  config_host_data.set('CONFIG_STAMP', run_command(
2421      meson.current_source_dir() / 'scripts/qemu-stamp.py',
2422      meson.project_version(), get_option('pkgversion'), '--',
2423      meson.current_source_dir() / 'configure',
2424      capture: true, check: true).stdout().strip())
2425endif
2426
2427have_slirp_smbd = get_option('slirp_smbd') \
2428  .require(host_os != 'windows', error_message: 'Host smbd not supported on this platform.') \
2429  .allowed()
2430if have_slirp_smbd
2431  smbd_path = get_option('smbd')
2432  if smbd_path == ''
2433    smbd_path = (host_os == 'sunos' ? '/usr/sfw/sbin/smbd' : '/usr/sbin/smbd')
2434  endif
2435  config_host_data.set_quoted('CONFIG_SMBD_COMMAND', smbd_path)
2436endif
2437
2438config_host_data.set('HOST_' + host_arch.to_upper(), 1)
2439
2440kvm_targets_c = '""'
2441if get_option('kvm').allowed() and host_os == 'linux'
2442  kvm_targets_c = '"' + '" ,"'.join(kvm_targets) + '"'
2443endif
2444config_host_data.set('CONFIG_KVM_TARGETS', kvm_targets_c)
2445
2446if get_option('module_upgrades') and not enable_modules
2447  error('Cannot enable module-upgrades as modules are not enabled')
2448endif
2449config_host_data.set('CONFIG_MODULE_UPGRADES', get_option('module_upgrades'))
2450
2451config_host_data.set('CONFIG_ATTR', libattr.found())
2452config_host_data.set('CONFIG_BDRV_WHITELIST_TOOLS', get_option('block_drv_whitelist_in_tools'))
2453config_host_data.set('CONFIG_BRLAPI', brlapi.found())
2454config_host_data.set('CONFIG_BSD', host_os in bsd_oses)
2455config_host_data.set('CONFIG_FREEBSD', host_os == 'freebsd')
2456config_host_data.set('CONFIG_CAPSTONE', capstone.found())
2457config_host_data.set('CONFIG_COCOA', cocoa.found())
2458config_host_data.set('CONFIG_DARWIN', host_os == 'darwin')
2459config_host_data.set('CONFIG_FDT', fdt.found())
2460config_host_data.set('CONFIG_FUZZ', get_option('fuzzing'))
2461config_host_data.set('CONFIG_GCOV', get_option('b_coverage'))
2462config_host_data.set('CONFIG_LIBUDEV', libudev.found())
2463config_host_data.set('CONFIG_LINUX', host_os == 'linux')
2464config_host_data.set('CONFIG_POSIX', host_os != 'windows')
2465config_host_data.set('CONFIG_WIN32', host_os == 'windows')
2466config_host_data.set('CONFIG_LZO', lzo.found())
2467config_host_data.set('CONFIG_MPATH', mpathpersist.found())
2468config_host_data.set('CONFIG_BLKIO', blkio.found())
2469if blkio.found()
2470  config_host_data.set('CONFIG_BLKIO_VHOST_VDPA_FD',
2471                       blkio.version().version_compare('>=1.3.0'))
2472  config_host_data.set('CONFIG_BLKIO_WRITE_ZEROS_FUA',
2473                       blkio.version().version_compare('>=1.4.0'))
2474endif
2475config_host_data.set('CONFIG_CURL', curl.found())
2476config_host_data.set('CONFIG_CURSES', curses.found())
2477config_host_data.set('CONFIG_GBM', gbm.found())
2478config_host_data.set('CONFIG_GIO', gio.found())
2479config_host_data.set('CONFIG_GLUSTERFS', glusterfs.found())
2480if glusterfs.found()
2481  config_host_data.set('CONFIG_GLUSTERFS_XLATOR_OPT', glusterfs.version().version_compare('>=4'))
2482  config_host_data.set('CONFIG_GLUSTERFS_DISCARD', glusterfs.version().version_compare('>=5'))
2483  config_host_data.set('CONFIG_GLUSTERFS_FALLOCATE', glusterfs.version().version_compare('>=6'))
2484  config_host_data.set('CONFIG_GLUSTERFS_ZEROFILL', glusterfs.version().version_compare('>=6'))
2485  config_host_data.set('CONFIG_GLUSTERFS_FTRUNCATE_HAS_STAT', glusterfs_ftruncate_has_stat)
2486  config_host_data.set('CONFIG_GLUSTERFS_IOCB_HAS_STAT', glusterfs_iocb_has_stat)
2487endif
2488config_host_data.set('CONFIG_GTK', gtk.found())
2489config_host_data.set('CONFIG_VTE', vte.found())
2490config_host_data.set('CONFIG_GTK_CLIPBOARD', have_gtk_clipboard)
2491config_host_data.set('CONFIG_HEXAGON_IDEF_PARSER', get_option('hexagon_idef_parser'))
2492config_host_data.set('CONFIG_LIBATTR', have_old_libattr)
2493config_host_data.set('CONFIG_LIBCAP_NG', libcap_ng.found())
2494config_host_data.set('CONFIG_EBPF', libbpf.found())
2495config_host_data.set('CONFIG_AF_XDP', libxdp.found())
2496config_host_data.set('CONFIG_LIBDAXCTL', libdaxctl.found())
2497config_host_data.set('CONFIG_LIBISCSI', libiscsi.found())
2498config_host_data.set('CONFIG_LIBNFS', libnfs.found())
2499config_host_data.set('CONFIG_LIBSSH', libssh.found())
2500config_host_data.set('CONFIG_LINUX_AIO', libaio.found())
2501config_host_data.set('CONFIG_LINUX_IO_URING', linux_io_uring.found())
2502config_host_data.set('CONFIG_LIBPMEM', libpmem.found())
2503config_host_data.set('CONFIG_MODULES', enable_modules)
2504config_host_data.set('CONFIG_NUMA', numa.found())
2505if numa.found()
2506  config_host_data.set('HAVE_NUMA_HAS_PREFERRED_MANY',
2507                       cc.has_function('numa_has_preferred_many',
2508                                       dependencies: numa))
2509endif
2510config_host_data.set('CONFIG_OPENGL', opengl.found())
2511config_host_data.set('CONFIG_PLUGIN', get_option('plugins'))
2512config_host_data.set('CONFIG_RBD', rbd.found())
2513config_host_data.set('CONFIG_RDMA', rdma.found())
2514config_host_data.set('CONFIG_RELOCATABLE', get_option('relocatable'))
2515config_host_data.set('CONFIG_SAFESTACK', get_option('safe_stack'))
2516config_host_data.set('CONFIG_SDL', sdl.found())
2517config_host_data.set('CONFIG_SDL_IMAGE', sdl_image.found())
2518config_host_data.set('CONFIG_SECCOMP', seccomp.found())
2519if seccomp.found()
2520  config_host_data.set('CONFIG_SECCOMP_SYSRAWRC', seccomp_has_sysrawrc)
2521endif
2522config_host_data.set('CONFIG_PIXMAN', pixman.found())
2523config_host_data.set('CONFIG_SLIRP', slirp.found())
2524config_host_data.set('CONFIG_SNAPPY', snappy.found())
2525config_host_data.set('CONFIG_SOLARIS', host_os == 'sunos')
2526if get_option('tcg').allowed()
2527  config_host_data.set('CONFIG_TCG', 1)
2528  config_host_data.set('CONFIG_TCG_INTERPRETER', tcg_arch == 'tci')
2529endif
2530config_host_data.set('CONFIG_TPM', have_tpm)
2531config_host_data.set('CONFIG_TSAN', get_option('tsan'))
2532config_host_data.set('CONFIG_USB_LIBUSB', libusb.found())
2533config_host_data.set('CONFIG_VDE', vde.found())
2534config_host_data.set('CONFIG_VHOST', have_vhost)
2535config_host_data.set('CONFIG_VHOST_NET', have_vhost_net)
2536config_host_data.set('CONFIG_VHOST_NET_USER', have_vhost_net_user)
2537config_host_data.set('CONFIG_VHOST_NET_VDPA', have_vhost_net_vdpa)
2538config_host_data.set('CONFIG_VHOST_KERNEL', have_vhost_kernel)
2539config_host_data.set('CONFIG_VHOST_USER', have_vhost_user)
2540config_host_data.set('CONFIG_VHOST_CRYPTO', have_vhost_user_crypto)
2541config_host_data.set('CONFIG_VHOST_VDPA', have_vhost_vdpa)
2542config_host_data.set('CONFIG_VMNET', vmnet.found())
2543config_host_data.set('CONFIG_VHOST_USER_BLK_SERVER', have_vhost_user_blk_server)
2544config_host_data.set('CONFIG_VDUSE_BLK_EXPORT', have_vduse_blk_export)
2545config_host_data.set('CONFIG_PNG', png.found())
2546config_host_data.set('CONFIG_VNC', vnc.found())
2547config_host_data.set('CONFIG_VNC_JPEG', jpeg.found())
2548config_host_data.set('CONFIG_VNC_SASL', sasl.found())
2549if virgl.found()
2550  config_host_data.set('VIRGL_VERSION_MAJOR', virgl.version().split('.')[0])
2551endif
2552config_host_data.set('CONFIG_VIRTFS', have_virtfs)
2553config_host_data.set('CONFIG_VTE', vte.found())
2554config_host_data.set('CONFIG_XKBCOMMON', xkbcommon.found())
2555config_host_data.set('CONFIG_KEYUTILS', keyutils.found())
2556config_host_data.set('CONFIG_GETTID', has_gettid)
2557config_host_data.set('CONFIG_GNUTLS', gnutls.found())
2558config_host_data.set('CONFIG_GNUTLS_CRYPTO', gnutls_crypto.found())
2559config_host_data.set('CONFIG_TASN1', tasn1.found())
2560config_host_data.set('CONFIG_GCRYPT', gcrypt.found())
2561config_host_data.set('CONFIG_NETTLE', nettle.found())
2562config_host_data.set('CONFIG_CRYPTO_SM4', crypto_sm4.found())
2563config_host_data.set('CONFIG_CRYPTO_SM3', crypto_sm3.found())
2564config_host_data.set('CONFIG_HOGWEED', hogweed.found())
2565config_host_data.set('CONFIG_QEMU_PRIVATE_XTS', xts == 'private')
2566config_host_data.set('CONFIG_MALLOC_TRIM', has_malloc_trim)
2567config_host_data.set('CONFIG_ZSTD', zstd.found())
2568config_host_data.set('CONFIG_QPL', qpl.found())
2569config_host_data.set('CONFIG_UADK', uadk.found())
2570config_host_data.set('CONFIG_QATZIP', qatzip.found())
2571config_host_data.set('CONFIG_FUSE', fuse.found())
2572config_host_data.set('CONFIG_FUSE_LSEEK', fuse_lseek.found())
2573config_host_data.set('CONFIG_SPICE_PROTOCOL', spice_protocol.found())
2574if spice_protocol.found()
2575config_host_data.set('CONFIG_SPICE_PROTOCOL_MAJOR', spice_protocol.version().split('.')[0])
2576config_host_data.set('CONFIG_SPICE_PROTOCOL_MINOR', spice_protocol.version().split('.')[1])
2577config_host_data.set('CONFIG_SPICE_PROTOCOL_MICRO', spice_protocol.version().split('.')[2])
2578endif
2579config_host_data.set('CONFIG_SPICE', spice.found())
2580config_host_data.set('CONFIG_X11', x11.found())
2581config_host_data.set('CONFIG_DBUS_DISPLAY', dbus_display)
2582config_host_data.set('CONFIG_CFI', get_option('cfi'))
2583config_host_data.set('CONFIG_SELINUX', selinux.found())
2584config_host_data.set('CONFIG_XEN_BACKEND', xen.found())
2585config_host_data.set('CONFIG_LIBDW', libdw.found())
2586if xen.found()
2587  # protect from xen.version() having less than three components
2588  xen_version = xen.version().split('.') + ['0', '0']
2589  xen_ctrl_version = xen_version[0] + \
2590    ('0' + xen_version[1]).substring(-2) + \
2591    ('0' + xen_version[2]).substring(-2)
2592  config_host_data.set('CONFIG_XEN_CTRL_INTERFACE_VERSION', xen_ctrl_version)
2593endif
2594config_host_data.set('QEMU_VERSION', '"@0@"'.format(meson.project_version()))
2595config_host_data.set('QEMU_VERSION_MAJOR', meson.project_version().split('.')[0])
2596config_host_data.set('QEMU_VERSION_MINOR', meson.project_version().split('.')[1])
2597config_host_data.set('QEMU_VERSION_MICRO', meson.project_version().split('.')[2])
2598
2599config_host_data.set_quoted('CONFIG_HOST_DSOSUF', host_dsosuf)
2600config_host_data.set('HAVE_HOST_BLOCK_DEVICE', have_host_block_device)
2601
2602have_coroutine_pool = get_option('coroutine_pool')
2603if get_option('debug_stack_usage') and have_coroutine_pool
2604  message('Disabling coroutine pool to measure stack usage')
2605  have_coroutine_pool = false
2606endif
2607config_host_data.set('CONFIG_COROUTINE_POOL', have_coroutine_pool)
2608config_host_data.set('CONFIG_DEBUG_GRAPH_LOCK', get_option('debug_graph_lock'))
2609config_host_data.set('CONFIG_DEBUG_MUTEX', get_option('debug_mutex'))
2610config_host_data.set('CONFIG_DEBUG_STACK_USAGE', get_option('debug_stack_usage'))
2611config_host_data.set('CONFIG_DEBUG_TCG', get_option('debug_tcg'))
2612config_host_data.set('CONFIG_DEBUG_REMAP', get_option('debug_remap'))
2613config_host_data.set('CONFIG_QOM_CAST_DEBUG', get_option('qom_cast_debug'))
2614config_host_data.set('CONFIG_REPLICATION', get_option('replication').allowed())
2615config_host_data.set('CONFIG_FSFREEZE', qga_fsfreeze)
2616config_host_data.set('CONFIG_FSTRIM', qga_fstrim)
2617
2618# has_header
2619config_host_data.set('CONFIG_EPOLL', cc.has_header('sys/epoll.h'))
2620config_host_data.set('CONFIG_LINUX_MAGIC_H', cc.has_header('linux/magic.h'))
2621config_host_data.set('CONFIG_VALGRIND_H', cc.has_header('valgrind/valgrind.h'))
2622config_host_data.set('HAVE_BTRFS_H', cc.has_header('linux/btrfs.h'))
2623config_host_data.set('HAVE_DRM_H', cc.has_header('libdrm/drm.h'))
2624config_host_data.set('HAVE_OPENAT2_H', cc.has_header('linux/openat2.h'))
2625config_host_data.set('HAVE_PTY_H', cc.has_header('pty.h'))
2626config_host_data.set('HAVE_SYS_DISK_H', cc.has_header('sys/disk.h'))
2627config_host_data.set('HAVE_SYS_IOCCOM_H', cc.has_header('sys/ioccom.h'))
2628config_host_data.set('HAVE_SYS_KCOV_H', cc.has_header('sys/kcov.h'))
2629if host_os == 'windows'
2630  config_host_data.set('HAVE_AFUNIX_H', cc.has_header('afunix.h'))
2631endif
2632
2633# has_function
2634config_host_data.set('CONFIG_CLOSE_RANGE', cc.has_function('close_range'))
2635config_host_data.set('CONFIG_ACCEPT4', cc.has_function('accept4'))
2636config_host_data.set('CONFIG_CLOCK_ADJTIME', cc.has_function('clock_adjtime'))
2637config_host_data.set('CONFIG_DUP3', cc.has_function('dup3'))
2638config_host_data.set('CONFIG_FALLOCATE', cc.has_function('fallocate'))
2639config_host_data.set('CONFIG_POSIX_FALLOCATE', cc.has_function('posix_fallocate'))
2640config_host_data.set('CONFIG_SCHED_GETCPU', cc.has_function('sched_getcpu', prefix: '#include <sched.h>'))
2641# Note that we need to specify prefix: here to avoid incorrectly
2642# thinking that Windows has posix_memalign()
2643config_host_data.set('CONFIG_POSIX_MEMALIGN', cc.has_function('posix_memalign', prefix: '#include <stdlib.h>'))
2644config_host_data.set('CONFIG_ALIGNED_MALLOC', cc.has_function('_aligned_malloc'))
2645config_host_data.set('CONFIG_VALLOC', cc.has_function('valloc'))
2646config_host_data.set('CONFIG_MEMALIGN', cc.has_function('memalign'))
2647config_host_data.set('CONFIG_PPOLL', cc.has_function('ppoll'))
2648config_host_data.set('CONFIG_PREADV', cc.has_function('preadv', prefix: '#include <sys/uio.h>'))
2649config_host_data.set('CONFIG_PTHREAD_FCHDIR_NP', cc.has_function('pthread_fchdir_np'))
2650config_host_data.set('CONFIG_SENDFILE', cc.has_function('sendfile'))
2651config_host_data.set('CONFIG_SETNS', cc.has_function('setns') and cc.has_function('unshare'))
2652config_host_data.set('CONFIG_SYNCFS', cc.has_function('syncfs'))
2653config_host_data.set('CONFIG_SYNC_FILE_RANGE', cc.has_function('sync_file_range'))
2654config_host_data.set('CONFIG_TIMERFD', cc.has_function('timerfd_create'))
2655config_host_data.set('CONFIG_GETLOADAVG', cc.has_function('getloadavg'))
2656config_host_data.set('HAVE_COPY_FILE_RANGE', cc.has_function('copy_file_range'))
2657config_host_data.set('HAVE_GETIFADDRS', cc.has_function('getifaddrs'))
2658config_host_data.set('HAVE_GLIB_WITH_SLICE_ALLOCATOR', glib_has_gslice)
2659config_host_data.set('HAVE_GLIB_WITH_ALIGNED_ALLOC', glib_has_aligned_alloc)
2660config_host_data.set('HAVE_OPENPTY', cc.has_function('openpty', dependencies: util))
2661config_host_data.set('HAVE_STRCHRNUL', cc.has_function('strchrnul', prefix: osdep_prefix))
2662config_host_data.set('HAVE_SYSTEM_FUNCTION', cc.has_function('system', prefix: '#include <stdlib.h>'))
2663if rbd.found()
2664  config_host_data.set('HAVE_RBD_NAMESPACE_EXISTS',
2665                       cc.has_function('rbd_namespace_exists',
2666                                       dependencies: rbd,
2667                                       prefix: '#include <rbd/librbd.h>'))
2668endif
2669if rdma.found()
2670  config_host_data.set('HAVE_IBV_ADVISE_MR',
2671                       cc.has_function('ibv_advise_mr',
2672                                       dependencies: rdma,
2673                                       prefix: '#include <infiniband/verbs.h>'))
2674endif
2675
2676have_asan_fiber = false
2677if get_option('asan') and \
2678   not cc.has_function('__sanitizer_start_switch_fiber',
2679                         args: '-fsanitize=address',
2680                         prefix: '#include <sanitizer/asan_interface.h>')
2681  warning('Missing ASAN due to missing fiber annotation interface')
2682  warning('Without code annotation, the report may be inferior.')
2683else
2684  have_asan_fiber = true
2685endif
2686config_host_data.set('CONFIG_ASAN_IFACE_FIBER', have_asan_fiber)
2687
2688have_inotify_init = cc.has_header_symbol('sys/inotify.h', 'inotify_init')
2689have_inotify_init1 = cc.has_header_symbol('sys/inotify.h', 'inotify_init1')
2690inotify = not_found
2691if (have_inotify_init or have_inotify_init1) and host_os == 'freebsd'
2692  # libinotify-kqueue
2693  inotify = cc.find_library('inotify')
2694  if have_inotify_init
2695    have_inotify_init = inotify.found()
2696  endif
2697  if have_inotify_init1
2698    have_inotify_init1 = inotify.found()
2699  endif
2700endif
2701config_host_data.set('CONFIG_INOTIFY', have_inotify_init)
2702config_host_data.set('CONFIG_INOTIFY1', have_inotify_init1)
2703
2704# has_header_symbol
2705config_host_data.set('CONFIG_BLKZONED',
2706                     cc.has_header_symbol('linux/blkzoned.h', 'BLKOPENZONE'))
2707config_host_data.set('CONFIG_EPOLL_CREATE1',
2708                     cc.has_header_symbol('sys/epoll.h', 'epoll_create1'))
2709config_host_data.set('CONFIG_FALLOCATE_PUNCH_HOLE',
2710                     cc.has_header_symbol('linux/falloc.h', 'FALLOC_FL_PUNCH_HOLE') and
2711                     cc.has_header_symbol('linux/falloc.h', 'FALLOC_FL_KEEP_SIZE'))
2712config_host_data.set('CONFIG_FALLOCATE_ZERO_RANGE',
2713                     cc.has_header_symbol('linux/falloc.h', 'FALLOC_FL_ZERO_RANGE'))
2714config_host_data.set('CONFIG_FIEMAP',
2715                     cc.has_header('linux/fiemap.h') and
2716                     cc.has_header_symbol('linux/fs.h', 'FS_IOC_FIEMAP'))
2717config_host_data.set('CONFIG_GETCPU',
2718                     cc.has_header_symbol('sched.h', 'getcpu', prefix: osdep_prefix))
2719config_host_data.set('CONFIG_GETRANDOM',
2720                     cc.has_function('getrandom') and
2721                     cc.has_header_symbol('sys/random.h', 'GRND_NONBLOCK'))
2722config_host_data.set('CONFIG_PRCTL_PR_SET_TIMERSLACK',
2723                     cc.has_header_symbol('sys/prctl.h', 'PR_SET_TIMERSLACK'))
2724config_host_data.set('CONFIG_RTNETLINK',
2725                     cc.has_header_symbol('linux/rtnetlink.h', 'IFLA_PROTO_DOWN'))
2726config_host_data.set('CONFIG_SYSMACROS',
2727                     cc.has_header_symbol('sys/sysmacros.h', 'makedev'))
2728config_host_data.set('HAVE_OPTRESET',
2729                     cc.has_header_symbol('getopt.h', 'optreset'))
2730config_host_data.set('HAVE_IPPROTO_MPTCP',
2731                     cc.has_header_symbol('netinet/in.h', 'IPPROTO_MPTCP'))
2732if libaio.found()
2733  config_host_data.set('HAVE_IO_PREP_PWRITEV2',
2734                       cc.has_header_symbol('libaio.h', 'io_prep_pwritev2'))
2735endif
2736if linux_io_uring.found()
2737  config_host_data.set('HAVE_IO_URING_PREP_WRITEV2',
2738                       cc.has_header_symbol('liburing.h', 'io_uring_prep_writev2'))
2739endif
2740
2741# has_member
2742config_host_data.set('HAVE_SIGEV_NOTIFY_THREAD_ID',
2743                     cc.has_member('struct sigevent', 'sigev_notify_thread_id',
2744                                   prefix: '#include <signal.h>'))
2745config_host_data.set('HAVE_STRUCT_STAT_ST_ATIM',
2746                     cc.has_member('struct stat', 'st_atim',
2747                                   prefix: '#include <sys/stat.h>'))
2748config_host_data.set('HAVE_BLK_ZONE_REP_CAPACITY',
2749                     cc.has_member('struct blk_zone', 'capacity',
2750                                   prefix: '#include <linux/blkzoned.h>'))
2751
2752# has_type
2753config_host_data.set('CONFIG_IOVEC',
2754                     cc.has_type('struct iovec',
2755                                 prefix: '#include <sys/uio.h>'))
2756config_host_data.set('HAVE_UTMPX',
2757                     cc.has_type('struct utmpx',
2758                                 prefix: '#include <utmpx.h>'))
2759
2760config_host_data.set('CONFIG_EVENTFD', cc.links('''
2761  #include <sys/eventfd.h>
2762  int main(void) { return eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC); }'''))
2763config_host_data.set('CONFIG_FDATASYNC', cc.links(osdep_prefix + '''
2764  int main(void) {
2765  #if defined(_POSIX_SYNCHRONIZED_IO) && _POSIX_SYNCHRONIZED_IO > 0
2766  return fdatasync(0);
2767  #else
2768  #error Not supported
2769  #endif
2770  }'''))
2771
2772has_madvise = cc.links(osdep_prefix + '''
2773  #include <sys/mman.h>
2774  int main(void) { return madvise(NULL, 0, MADV_DONTNEED); }''')
2775missing_madvise_proto = false
2776if has_madvise
2777  # Some platforms (illumos and Solaris before Solaris 11) provide madvise()
2778  # but forget to prototype it. In this case, has_madvise will be true (the
2779  # test program links despite a compile warning). To detect the
2780  # missing-prototype case, we try again with a definitely-bogus prototype.
2781  # This will only compile if the system headers don't provide the prototype;
2782  # otherwise the conflicting prototypes will cause a compiler error.
2783  missing_madvise_proto = cc.links(osdep_prefix + '''>
2784    #include <sys/mman.h>
2785    extern int madvise(int);
2786    int main(void) { return madvise(0); }''')
2787endif
2788config_host_data.set('CONFIG_MADVISE', has_madvise)
2789config_host_data.set('HAVE_MADVISE_WITHOUT_PROTOTYPE', missing_madvise_proto)
2790
2791config_host_data.set('CONFIG_MEMFD', cc.links(osdep_prefix + '''
2792  #include <sys/mman.h>
2793  int main(void) { return memfd_create("foo", MFD_ALLOW_SEALING); }'''))
2794config_host_data.set('CONFIG_OPEN_BY_HANDLE', cc.links(osdep_prefix + '''
2795  #if !defined(AT_EMPTY_PATH)
2796  # error missing definition
2797  #else
2798  int main(void) { struct file_handle fh; return open_by_handle_at(0, &fh, 0); }
2799  #endif'''))
2800
2801# On Darwin posix_madvise() has the same return semantics as plain madvise(),
2802# i.e. errno is set and -1 is returned. That's not really how POSIX defines the
2803# function. On the flip side, it has madvise() which is preferred anyways.
2804if host_os != 'darwin'
2805  config_host_data.set('CONFIG_POSIX_MADVISE', cc.links(osdep_prefix + '''
2806    #include <sys/mman.h>
2807    int main(void) { return posix_madvise(NULL, 0, POSIX_MADV_DONTNEED); }'''))
2808endif
2809
2810config_host_data.set('CONFIG_PTHREAD_SETNAME_NP_W_TID', cc.links(osdep_prefix + '''
2811  #include <pthread.h>
2812
2813  static void *f(void *p) { return NULL; }
2814  int main(void)
2815  {
2816    pthread_t thread;
2817    pthread_create(&thread, 0, f, 0);
2818    pthread_setname_np(thread, "QEMU");
2819    return 0;
2820  }''', dependencies: threads))
2821config_host_data.set('CONFIG_PTHREAD_SETNAME_NP_WO_TID', cc.links(osdep_prefix + '''
2822  #include <pthread.h>
2823
2824  static void *f(void *p) { pthread_setname_np("QEMU"); return NULL; }
2825  int main(void)
2826  {
2827    pthread_t thread;
2828    pthread_create(&thread, 0, f, 0);
2829    return 0;
2830  }''', dependencies: threads))
2831config_host_data.set('CONFIG_PTHREAD_SET_NAME_NP', cc.links(osdep_prefix + '''
2832  #include <pthread.h>
2833  #include <pthread_np.h>
2834
2835  static void *f(void *p) { return NULL; }
2836  int main(void)
2837  {
2838    pthread_t thread;
2839    pthread_create(&thread, 0, f, 0);
2840    pthread_set_name_np(thread, "QEMU");
2841    return 0;
2842  }''', dependencies: threads))
2843config_host_data.set('CONFIG_PTHREAD_CONDATTR_SETCLOCK', cc.links(osdep_prefix + '''
2844  #include <pthread.h>
2845
2846  int main(void)
2847  {
2848    pthread_condattr_t attr
2849    pthread_condattr_init(&attr);
2850    pthread_condattr_setclock(&attr, CLOCK_MONOTONIC);
2851    return 0;
2852  }''', dependencies: threads))
2853config_host_data.set('CONFIG_PTHREAD_AFFINITY_NP', cc.links(osdep_prefix + '''
2854  #include <pthread.h>
2855
2856  static void *f(void *p) { return NULL; }
2857  int main(void)
2858  {
2859    int setsize = CPU_ALLOC_SIZE(64);
2860    pthread_t thread;
2861    cpu_set_t *cpuset;
2862    pthread_create(&thread, 0, f, 0);
2863    cpuset = CPU_ALLOC(64);
2864    CPU_ZERO_S(setsize, cpuset);
2865    pthread_setaffinity_np(thread, setsize, cpuset);
2866    pthread_getaffinity_np(thread, setsize, cpuset);
2867    CPU_FREE(cpuset);
2868    return 0;
2869  }''', dependencies: threads))
2870config_host_data.set('CONFIG_SIGNALFD', cc.links(osdep_prefix + '''
2871  #include <sys/signalfd.h>
2872  int main(void) { return signalfd(-1, NULL, SFD_CLOEXEC); }'''))
2873config_host_data.set('CONFIG_SPLICE', cc.links(osdep_prefix + '''
2874  int main(void)
2875  {
2876    int len, fd = 0;
2877    len = tee(STDIN_FILENO, STDOUT_FILENO, INT_MAX, SPLICE_F_NONBLOCK);
2878    splice(STDIN_FILENO, NULL, fd, NULL, len, SPLICE_F_MOVE);
2879    return 0;
2880  }'''))
2881
2882config_host_data.set('HAVE_MLOCKALL', cc.links(osdep_prefix + '''
2883  #include <sys/mman.h>
2884  int main(void) {
2885    return mlockall(MCL_FUTURE);
2886  }'''))
2887
2888config_host_data.set('HAVE_MLOCK_ONFAULT', cc.links(osdep_prefix + '''
2889  #include <sys/mman.h>
2890  int main(void) {
2891      return mlockall(MCL_FUTURE | MCL_ONFAULT);
2892  }'''))
2893
2894have_l2tpv3 = false
2895if get_option('l2tpv3').allowed() and have_system
2896  have_l2tpv3 = cc.has_type('struct mmsghdr',
2897    prefix: osdep_prefix + '''
2898      #include <sys/socket.h>
2899      #include <linux/ip.h>''')
2900endif
2901config_host_data.set('CONFIG_L2TPV3', have_l2tpv3)
2902
2903have_netmap = false
2904if get_option('netmap').allowed() and have_system
2905  have_netmap = cc.compiles('''
2906    #include <inttypes.h>
2907    #include <net/if.h>
2908    #include <net/netmap.h>
2909    #include <net/netmap_user.h>
2910    #if (NETMAP_API < 11) || (NETMAP_API > 15)
2911    #error
2912    #endif
2913    int main(void) { return 0; }''')
2914  if not have_netmap and get_option('netmap').enabled()
2915    error('Netmap headers not available')
2916  endif
2917endif
2918config_host_data.set('CONFIG_NETMAP', have_netmap)
2919
2920# Work around a system header bug with some kernel/XFS header
2921# versions where they both try to define 'struct fsxattr':
2922# xfs headers will not try to redefine structs from linux headers
2923# if this macro is set.
2924config_host_data.set('HAVE_FSXATTR', cc.links('''
2925  #include <linux/fs.h>
2926  struct fsxattr foo;
2927  int main(void) {
2928    return 0;
2929  }'''))
2930
2931# Some versions of Mac OS X incorrectly define SIZE_MAX
2932config_host_data.set('HAVE_BROKEN_SIZE_MAX', not cc.compiles('''
2933    #include <stdint.h>
2934    #include <stdio.h>
2935    int main(void) {
2936        return printf("%zu", SIZE_MAX);
2937    }''', args: ['-Werror']))
2938
2939# See if 64-bit atomic operations are supported.
2940# Note that without __atomic builtins, we can only
2941# assume atomic loads/stores max at pointer size.
2942config_host_data.set('CONFIG_ATOMIC64', cc.links('''
2943  #include <stdint.h>
2944  int main(void)
2945  {
2946    uint64_t x = 0, y = 0;
2947    y = __atomic_load_n(&x, __ATOMIC_RELAXED);
2948    __atomic_store_n(&x, y, __ATOMIC_RELAXED);
2949    __atomic_compare_exchange_n(&x, &y, x, 0, __ATOMIC_RELAXED, __ATOMIC_RELAXED);
2950    __atomic_exchange_n(&x, y, __ATOMIC_RELAXED);
2951    __atomic_fetch_add(&x, y, __ATOMIC_RELAXED);
2952    return 0;
2953  }''', args: qemu_isa_flags))
2954
2955has_int128_type = cc.compiles('''
2956  __int128_t a;
2957  __uint128_t b;
2958  int main(void) { b = a; }''')
2959config_host_data.set('CONFIG_INT128_TYPE', has_int128_type)
2960
2961has_int128 = has_int128_type and cc.links('''
2962  __int128_t a;
2963  __uint128_t b;
2964  int main (void) {
2965    a = a + b;
2966    b = a * b;
2967    a = a * a;
2968    return 0;
2969  }''')
2970config_host_data.set('CONFIG_INT128', has_int128)
2971
2972if has_int128_type
2973  # "do we have 128-bit atomics which are handled inline and specifically not
2974  # via libatomic". The reason we can't use libatomic is documented in the
2975  # comment starting "GCC is a house divided" in include/qemu/atomic128.h.
2976  # We only care about these operations on 16-byte aligned pointers, so
2977  # force 16-byte alignment of the pointer, which may be greater than
2978  # __alignof(unsigned __int128) for the host.
2979  atomic_test_128 = '''
2980    int main(int ac, char **av) {
2981      __uint128_t *p = __builtin_assume_aligned(av[ac - 1], 16);
2982      p[1] = __atomic_load_n(&p[0], __ATOMIC_RELAXED);
2983      __atomic_store_n(&p[2], p[3], __ATOMIC_RELAXED);
2984      __atomic_compare_exchange_n(&p[4], &p[5], p[6], 0, __ATOMIC_RELAXED, __ATOMIC_RELAXED);
2985      return 0;
2986    }'''
2987  has_atomic128 = cc.links(atomic_test_128, args: qemu_isa_flags)
2988
2989  config_host_data.set('CONFIG_ATOMIC128', has_atomic128)
2990
2991  if not has_atomic128
2992    # Even with __builtin_assume_aligned, the above test may have failed
2993    # without optimization enabled.  Try again with optimizations locally
2994    # enabled for the function.  See
2995    #   https://gcc.gnu.org/bugzilla/show_bug.cgi?id=107389
2996    has_atomic128_opt = cc.links('__attribute__((optimize("O1")))' + atomic_test_128,
2997                                 args: qemu_isa_flags)
2998    config_host_data.set('CONFIG_ATOMIC128_OPT', has_atomic128_opt)
2999
3000    if not has_atomic128_opt
3001      config_host_data.set('CONFIG_CMPXCHG128', cc.links('''
3002        int main(void)
3003        {
3004          __uint128_t x = 0, y = 0;
3005          __sync_val_compare_and_swap_16(&x, y, x);
3006          return 0;
3007        }
3008      ''', args: qemu_isa_flags))
3009    endif
3010  endif
3011endif
3012
3013config_host_data.set('CONFIG_GETAUXVAL', cc.links(osdep_prefix + '''
3014  #include <sys/auxv.h>
3015  int main(void) {
3016    return getauxval(AT_HWCAP) == 0;
3017  }'''))
3018
3019config_host_data.set('CONFIG_ELF_AUX_INFO', cc.links(osdep_prefix + '''
3020  #include <sys/auxv.h>
3021  int main(void) {
3022    unsigned long hwcap = 0;
3023    elf_aux_info(AT_HWCAP, &hwcap, sizeof(hwcap));
3024    return hwcap;
3025  }'''))
3026
3027config_host_data.set('CONFIG_USBFS', have_linux_user and cc.compiles('''
3028  #include <linux/usbdevice_fs.h>
3029
3030  #ifndef USBDEVFS_GET_CAPABILITIES
3031  #error "USBDEVFS_GET_CAPABILITIES undefined"
3032  #endif
3033
3034  #ifndef USBDEVFS_DISCONNECT_CLAIM
3035  #error "USBDEVFS_DISCONNECT_CLAIM undefined"
3036  #endif
3037
3038  int main(void) { return 0; }'''))
3039
3040have_keyring = get_option('keyring') \
3041  .require(host_os == 'linux', error_message: 'keyring is only available on Linux') \
3042  .require(cc.compiles('''
3043    #include <errno.h>
3044    #include <asm/unistd.h>
3045    #include <linux/keyctl.h>
3046    #include <sys/syscall.h>
3047    #include <unistd.h>
3048    int main(void) {
3049        return syscall(__NR_keyctl, KEYCTL_READ, 0, NULL, NULL, 0);
3050    }'''), error_message: 'keyctl syscall not available on this system').allowed()
3051config_host_data.set('CONFIG_SECRET_KEYRING', have_keyring)
3052
3053have_cpuid_h = cc.links('''
3054  #include <cpuid.h>
3055  int main(void) {
3056    unsigned a, b, c, d;
3057    unsigned max = __get_cpuid_max(0, 0);
3058
3059    if (max >= 1) {
3060        __cpuid(1, a, b, c, d);
3061    }
3062
3063    if (max >= 7) {
3064        __cpuid_count(7, 0, a, b, c, d);
3065    }
3066
3067    return 0;
3068  }''')
3069config_host_data.set('CONFIG_CPUID_H', have_cpuid_h)
3070
3071# Don't bother to advertise asm/hwprobe.h for old versions that do
3072# not contain RISCV_HWPROBE_EXT_ZBA.
3073config_host_data.set('CONFIG_ASM_HWPROBE_H',
3074                     cc.has_header_symbol('asm/hwprobe.h',
3075                                          'RISCV_HWPROBE_EXT_ZBA'))
3076
3077config_host_data.set('CONFIG_AVX2_OPT', get_option('avx2') \
3078  .require(have_cpuid_h, error_message: 'cpuid.h not available, cannot enable AVX2') \
3079  .require(cc.links('''
3080    #include <cpuid.h>
3081    #include <immintrin.h>
3082    static int __attribute__((target("avx2"))) bar(void *a) {
3083      __m256i x = *(__m256i *)a;
3084      return _mm256_testz_si256(x, x);
3085    }
3086    int main(int argc, char *argv[]) { return bar(argv[argc - 1]); }
3087  '''), error_message: 'AVX2 not available').allowed())
3088
3089config_host_data.set('CONFIG_AVX512BW_OPT', get_option('avx512bw') \
3090  .require(have_cpuid_h, error_message: 'cpuid.h not available, cannot enable AVX512BW') \
3091  .require(cc.links('''
3092    #include <cpuid.h>
3093    #include <immintrin.h>
3094    static int __attribute__((target("avx512bw"))) bar(void *a) {
3095      __m512i *x = a;
3096      __m512i res= _mm512_abs_epi8(*x);
3097      return res[1];
3098    }
3099    int main(int argc, char *argv[]) { return bar(argv[0]); }
3100  '''), error_message: 'AVX512BW not available').allowed())
3101
3102# For both AArch64 and AArch32, detect if builtins are available.
3103config_host_data.set('CONFIG_ARM_AES_BUILTIN', cc.compiles('''
3104    #include <arm_neon.h>
3105    #ifndef __ARM_FEATURE_AES
3106    __attribute__((target("+crypto")))
3107    #endif
3108    void foo(uint8x16_t *p) { *p = vaesmcq_u8(*p); }
3109  '''))
3110
3111if get_option('membarrier').disabled()
3112  have_membarrier = false
3113elif host_os == 'windows'
3114  have_membarrier = true
3115elif host_os == 'linux'
3116  have_membarrier = cc.compiles('''
3117    #include <linux/membarrier.h>
3118    #include <sys/syscall.h>
3119    #include <unistd.h>
3120    #include <stdlib.h>
3121    int main(void) {
3122        syscall(__NR_membarrier, MEMBARRIER_CMD_QUERY, 0);
3123        syscall(__NR_membarrier, MEMBARRIER_CMD_SHARED, 0);
3124        exit(0);
3125    }''')
3126endif
3127config_host_data.set('CONFIG_MEMBARRIER', get_option('membarrier') \
3128  .require(have_membarrier, error_message: 'membarrier system call not available') \
3129  .allowed())
3130
3131have_afalg = get_option('crypto_afalg') \
3132  .require(cc.compiles(osdep_prefix + '''
3133    #include <sys/socket.h>
3134    #include <linux/if_alg.h>
3135    int main(void) {
3136      int sock;
3137      sock = socket(AF_ALG, SOCK_SEQPACKET, 0);
3138      return sock;
3139    }
3140  '''), error_message: 'AF_ALG requested but could not be detected').allowed()
3141config_host_data.set('CONFIG_AF_ALG', have_afalg)
3142
3143config_host_data.set('CONFIG_AF_VSOCK', cc.has_header_symbol(
3144  'linux/vm_sockets.h', 'AF_VSOCK',
3145  prefix: '#include <sys/socket.h>',
3146))
3147
3148have_vss = false
3149have_vss_sdk = false # old xp/2003 SDK
3150if host_os == 'windows' and 'cpp' in all_languages
3151  have_vss = cxx.compiles('''
3152    #define __MIDL_user_allocate_free_DEFINED__
3153    #include <vss.h>
3154    int main(void) { return VSS_CTX_BACKUP; }''')
3155  have_vss_sdk = cxx.has_header('vscoordint.h')
3156endif
3157config_host_data.set('HAVE_VSS_SDK', have_vss_sdk)
3158
3159# Older versions of MinGW do not import _lock_file and _unlock_file properly.
3160# This was fixed for v6.0.0 with commit b48e3ac8969d.
3161if host_os == 'windows'
3162  config_host_data.set('HAVE__LOCK_FILE', cc.links('''
3163    #include <stdio.h>
3164    int main(void) {
3165      _lock_file(NULL);
3166      _unlock_file(NULL);
3167      return 0;
3168    }''', name: '_lock_file and _unlock_file'))
3169endif
3170
3171if host_os == 'windows'
3172  mingw_has_setjmp_longjmp = cc.links('''
3173    #include <setjmp.h>
3174    int main(void) {
3175      /*
3176       * These functions are not available in setjmp header, but may be
3177       * available at link time, from libmingwex.a.
3178       */
3179      extern int __mingw_setjmp(jmp_buf);
3180      extern void __attribute__((noreturn)) __mingw_longjmp(jmp_buf, int);
3181      jmp_buf env;
3182      __mingw_setjmp(env);
3183      __mingw_longjmp(env, 0);
3184    }
3185  ''', name: 'mingw setjmp and longjmp')
3186
3187  if cpu == 'aarch64' and not mingw_has_setjmp_longjmp
3188    error('mingw must provide setjmp/longjmp for windows-arm64')
3189  endif
3190endif
3191
3192# Detect host pointer size for the target configuration loop.
3193host_long_bits = cc.sizeof('void *') * 8
3194
3195########################
3196# Target configuration #
3197########################
3198
3199minikconf = find_program('scripts/minikconf.py')
3200
3201config_all_accel = {}
3202config_all_devices = {}
3203config_devices_mak_list = []
3204config_devices_h = {}
3205config_target_h = {}
3206config_target_mak = {}
3207
3208disassemblers = {
3209  'alpha' : ['CONFIG_ALPHA_DIS'],
3210  'avr' : ['CONFIG_AVR_DIS'],
3211  'hexagon' : ['CONFIG_HEXAGON_DIS'],
3212  'hppa' : ['CONFIG_HPPA_DIS'],
3213  'i386' : ['CONFIG_I386_DIS'],
3214  'x86_64' : ['CONFIG_I386_DIS'],
3215  'm68k' : ['CONFIG_M68K_DIS'],
3216  'microblaze' : ['CONFIG_MICROBLAZE_DIS'],
3217  'mips' : ['CONFIG_MIPS_DIS'],
3218  'or1k' : ['CONFIG_OPENRISC_DIS'],
3219  'ppc' : ['CONFIG_PPC_DIS'],
3220  'riscv' : ['CONFIG_RISCV_DIS'],
3221  'rx' : ['CONFIG_RX_DIS'],
3222  's390' : ['CONFIG_S390_DIS'],
3223  'sh4' : ['CONFIG_SH4_DIS'],
3224  'sparc' : ['CONFIG_SPARC_DIS'],
3225  'xtensa' : ['CONFIG_XTENSA_DIS'],
3226  'loongarch' : ['CONFIG_LOONGARCH_DIS'],
3227}
3228
3229have_ivshmem = config_host_data.get('CONFIG_EVENTFD')
3230host_kconfig = \
3231  (get_option('fuzzing') ? ['CONFIG_FUZZ=y'] : []) + \
3232  (have_tpm ? ['CONFIG_TPM=y'] : []) + \
3233  (pixman.found() ? ['CONFIG_PIXMAN=y'] : []) + \
3234  (spice.found() ? ['CONFIG_SPICE=y'] : []) + \
3235  (have_ivshmem ? ['CONFIG_IVSHMEM=y'] : []) + \
3236  (opengl.found() ? ['CONFIG_OPENGL=y'] : []) + \
3237  (libcbor.found() ? ['CONFIG_LIBCBOR=y'] : []) + \
3238  (gnutls.found() ? ['CONFIG_GNUTLS=y'] : []) + \
3239  (x11.found() ? ['CONFIG_X11=y'] : []) + \
3240  (fdt.found() ? ['CONFIG_FDT=y'] : []) + \
3241  (have_vhost_user ? ['CONFIG_VHOST_USER=y'] : []) + \
3242  (have_vhost_vdpa ? ['CONFIG_VHOST_VDPA=y'] : []) + \
3243  (have_vhost_kernel ? ['CONFIG_VHOST_KERNEL=y'] : []) + \
3244  (have_virtfs ? ['CONFIG_VIRTFS=y'] : []) + \
3245  (host_os == 'linux' ? ['CONFIG_LINUX=y'] : []) + \
3246  (multiprocess_allowed ? ['CONFIG_MULTIPROCESS_ALLOWED=y'] : []) + \
3247  (vfio_user_server_allowed ? ['CONFIG_VFIO_USER_SERVER_ALLOWED=y'] : []) + \
3248  (hv_balloon ? ['CONFIG_HV_BALLOON_POSSIBLE=y'] : []) + \
3249  (have_rust ? ['CONFIG_HAVE_RUST=y'] : [])
3250
3251ignored = [ 'TARGET_XML_FILES', 'TARGET_ABI_DIR', 'TARGET_ARCH' ]
3252
3253default_targets = 'CONFIG_DEFAULT_TARGETS' in config_host
3254actual_target_dirs = []
3255fdt_required = []
3256foreach target : target_dirs
3257  config_target = { 'TARGET_NAME': target.split('-')[0] }
3258  if target.endswith('linux-user')
3259    if host_os != 'linux'
3260      if default_targets
3261        continue
3262      endif
3263      error('Target @0@ is only available on a Linux host'.format(target))
3264    endif
3265    config_target += { 'CONFIG_LINUX_USER': 'y' }
3266  elif target.endswith('bsd-user')
3267    if host_os not in bsd_oses
3268      if default_targets
3269        continue
3270      endif
3271      error('Target @0@ is only available on a BSD host'.format(target))
3272    endif
3273    config_target += { 'CONFIG_BSD_USER': 'y' }
3274  elif target.endswith('softmmu')
3275    config_target += { 'CONFIG_SYSTEM_ONLY': 'y' }
3276    config_target += { 'CONFIG_SOFTMMU': 'y' }
3277  endif
3278  if target.endswith('-user')
3279    config_target += {
3280      'CONFIG_USER_ONLY': 'y',
3281      'CONFIG_QEMU_INTERP_PREFIX':
3282        get_option('interp_prefix').replace('%M', config_target['TARGET_NAME']),
3283      'CONFIG_QEMU_RTSIG_MAP': get_option('rtsig_map'),
3284    }
3285  endif
3286
3287  config_target += keyval.load('configs/targets' / target + '.mak')
3288
3289  target_kconfig = []
3290  foreach sym: accelerators
3291    # Disallow 64-bit on 32-bit emulation and virtualization
3292    if host_long_bits < config_target['TARGET_LONG_BITS'].to_int()
3293      continue
3294    endif
3295    if sym == 'CONFIG_TCG' or target in accelerator_targets.get(sym, [])
3296      config_target += { sym: 'y' }
3297      config_all_accel += { sym: 'y' }
3298      target_kconfig += [ sym + '=y' ]
3299    endif
3300  endforeach
3301  if target_kconfig.length() == 0
3302    if default_targets
3303      continue
3304    endif
3305    error('No accelerator available for target @0@'.format(target))
3306  endif
3307
3308  if 'TARGET_NEED_FDT' in config_target and not fdt.found()
3309    if default_targets
3310      warning('Disabling ' + target + ' due to missing libfdt')
3311    else
3312      fdt_required += target
3313    endif
3314    continue
3315  endif
3316
3317  actual_target_dirs += target
3318
3319  # Add default keys
3320  config_target += { 'TARGET_' + config_target['TARGET_ARCH'].to_upper(): 'y' }
3321  if 'TARGET_BASE_ARCH' not in config_target
3322    config_target += {'TARGET_BASE_ARCH': config_target['TARGET_ARCH']}
3323  endif
3324  if 'TARGET_ABI_DIR' not in config_target
3325    config_target += {'TARGET_ABI_DIR': config_target['TARGET_ARCH']}
3326  endif
3327  if 'TARGET_BIG_ENDIAN' not in config_target
3328    config_target += {'TARGET_BIG_ENDIAN': 'n'}
3329  endif
3330
3331  foreach k, v: disassemblers
3332    if host_arch.startswith(k) or config_target['TARGET_BASE_ARCH'].startswith(k)
3333      foreach sym: v
3334        config_target += { sym: 'y' }
3335      endforeach
3336    endif
3337  endforeach
3338
3339  config_target_data = configuration_data()
3340  foreach k, v: config_target
3341    if not k.startswith('TARGET_') and not k.startswith('CONFIG_')
3342      # do nothing
3343    elif ignored.contains(k)
3344      # do nothing
3345    elif k == 'TARGET_BASE_ARCH'
3346      # Note that TARGET_BASE_ARCH ends up in config-target.h but it is
3347      # not used to select files from sourcesets.
3348      config_target_data.set('TARGET_' + v.to_upper(), 1)
3349    elif k == 'TARGET_NAME' or k == 'CONFIG_QEMU_INTERP_PREFIX'
3350      config_target_data.set_quoted(k, v)
3351    elif v == 'y'
3352      config_target_data.set(k, 1)
3353    elif v == 'n'
3354      config_target_data.set(k, 0)
3355    else
3356      config_target_data.set(k, v)
3357    endif
3358  endforeach
3359  config_target_data.set('QEMU_ARCH',
3360                         'QEMU_ARCH_' + config_target['TARGET_BASE_ARCH'].to_upper())
3361  config_target_h += {target: configure_file(output: target + '-config-target.h',
3362                                               configuration: config_target_data)}
3363
3364  if target.endswith('-softmmu')
3365    target_kconfig += 'CONFIG_' + config_target['TARGET_ARCH'].to_upper() + '=y'
3366    target_kconfig += 'CONFIG_TARGET_BIG_ENDIAN=' + config_target['TARGET_BIG_ENDIAN']
3367
3368    # PVG is not cross-architecture.  Use accelerator_targets as a proxy to
3369    # figure out which target can support PVG on this host
3370    if pvg.found() and target in accelerator_targets.get('CONFIG_HVF', [])
3371      target_kconfig += 'CONFIG_MAC_PVG=y'
3372    endif
3373
3374    config_input = meson.get_external_property(target, 'default')
3375    config_devices_mak = target + '-config-devices.mak'
3376    config_devices_mak = configure_file(
3377      input: ['configs/devices' / target / config_input + '.mak', 'Kconfig'],
3378      output: config_devices_mak,
3379      depfile: config_devices_mak + '.d',
3380      capture: true,
3381      command: [minikconf,
3382                get_option('default_devices') ? '--defconfig' : '--allnoconfig',
3383                config_devices_mak, '@DEPFILE@', '@INPUT@',
3384                host_kconfig, target_kconfig])
3385
3386    config_devices_data = configuration_data()
3387    config_devices = keyval.load(config_devices_mak)
3388    foreach k, v: config_devices
3389      config_devices_data.set(k, 1)
3390    endforeach
3391    config_devices_mak_list += config_devices_mak
3392    config_devices_h += {target: configure_file(output: target + '-config-devices.h',
3393                                                configuration: config_devices_data)}
3394    config_target += config_devices
3395    config_all_devices += config_devices
3396  endif
3397  config_target_mak += {target: config_target}
3398endforeach
3399target_dirs = actual_target_dirs
3400
3401target_configs_h = []
3402foreach target: target_dirs
3403  target_configs_h += config_target_h[target]
3404  target_configs_h += config_devices_h.get(target, [])
3405endforeach
3406genh += custom_target('config-poison.h',
3407                      input: [target_configs_h],
3408                      output: 'config-poison.h',
3409                      capture: true,
3410                      command: [find_program('scripts/make-config-poison.sh'),
3411                                target_configs_h])
3412
3413if fdt_required.length() > 0
3414  error('fdt disabled but required by targets ' + ', '.join(fdt_required))
3415endif
3416
3417###############
3418# Subprojects #
3419###############
3420
3421libvfio_user_dep = not_found
3422if have_system and vfio_user_server_allowed
3423  libvfio_user_proj = subproject('libvfio-user', required: true)
3424  libvfio_user_dep = libvfio_user_proj.get_variable('libvfio_user_dep')
3425endif
3426
3427vhost_user = not_found
3428if host_os == 'linux' and have_vhost_user
3429  libvhost_user = subproject('libvhost-user')
3430  vhost_user = libvhost_user.get_variable('vhost_user_dep')
3431endif
3432
3433libvduse = not_found
3434if have_libvduse
3435  libvduse_proj = subproject('libvduse')
3436  libvduse = libvduse_proj.get_variable('libvduse_dep')
3437endif
3438
3439#####################
3440# Generated sources #
3441#####################
3442
3443config_host_h = configure_file(output: 'config-host.h', configuration: config_host_data)
3444genh += config_host_h
3445
3446hxtool = find_program('scripts/hxtool')
3447shaderinclude = find_program('scripts/shaderinclude.py')
3448qapi_gen = find_program('scripts/qapi-gen.py')
3449qapi_gen_depends = [ meson.current_source_dir() / 'scripts/qapi/__init__.py',
3450                     meson.current_source_dir() / 'scripts/qapi/commands.py',
3451                     meson.current_source_dir() / 'scripts/qapi/common.py',
3452                     meson.current_source_dir() / 'scripts/qapi/error.py',
3453                     meson.current_source_dir() / 'scripts/qapi/events.py',
3454                     meson.current_source_dir() / 'scripts/qapi/expr.py',
3455                     meson.current_source_dir() / 'scripts/qapi/gen.py',
3456                     meson.current_source_dir() / 'scripts/qapi/introspect.py',
3457                     meson.current_source_dir() / 'scripts/qapi/main.py',
3458                     meson.current_source_dir() / 'scripts/qapi/parser.py',
3459                     meson.current_source_dir() / 'scripts/qapi/schema.py',
3460                     meson.current_source_dir() / 'scripts/qapi/source.py',
3461                     meson.current_source_dir() / 'scripts/qapi/types.py',
3462                     meson.current_source_dir() / 'scripts/qapi/features.py',
3463                     meson.current_source_dir() / 'scripts/qapi/visit.py',
3464                     meson.current_source_dir() / 'scripts/qapi-gen.py'
3465]
3466
3467tracetool = [
3468  python, files('scripts/tracetool.py'),
3469   '--backend=' + ','.join(get_option('trace_backends'))
3470]
3471tracetool_depends = files(
3472  'scripts/tracetool/backend/log.py',
3473  'scripts/tracetool/backend/__init__.py',
3474  'scripts/tracetool/backend/dtrace.py',
3475  'scripts/tracetool/backend/ftrace.py',
3476  'scripts/tracetool/backend/simple.py',
3477  'scripts/tracetool/backend/syslog.py',
3478  'scripts/tracetool/backend/ust.py',
3479  'scripts/tracetool/format/ust_events_c.py',
3480  'scripts/tracetool/format/ust_events_h.py',
3481  'scripts/tracetool/format/__init__.py',
3482  'scripts/tracetool/format/d.py',
3483  'scripts/tracetool/format/simpletrace_stap.py',
3484  'scripts/tracetool/format/c.py',
3485  'scripts/tracetool/format/h.py',
3486  'scripts/tracetool/format/log_stap.py',
3487  'scripts/tracetool/format/stap.py',
3488  'scripts/tracetool/__init__.py',
3489)
3490
3491qemu_version_cmd = [find_program('scripts/qemu-version.sh'),
3492                    meson.current_source_dir(),
3493                    get_option('pkgversion'), meson.project_version()]
3494qemu_version = custom_target('qemu-version.h',
3495                             output: 'qemu-version.h',
3496                             command: qemu_version_cmd,
3497                             capture: true,
3498                             build_by_default: true,
3499                             build_always_stale: true)
3500genh += qemu_version
3501
3502hxdep = []
3503hx_headers = [
3504  ['qemu-options.hx', 'qemu-options.def'],
3505  ['qemu-img-cmds.hx', 'qemu-img-cmds.h'],
3506]
3507if have_system
3508  hx_headers += [
3509    ['hmp-commands.hx', 'hmp-commands.h'],
3510    ['hmp-commands-info.hx', 'hmp-commands-info.h'],
3511  ]
3512endif
3513foreach d : hx_headers
3514  hxdep += custom_target(d[1],
3515                input: files(d[0]),
3516                output: d[1],
3517                capture: true,
3518                command: [hxtool, '-h', '@INPUT0@'])
3519endforeach
3520genh += hxdep
3521
3522###############
3523# Trace files #
3524###############
3525
3526# TODO: add each directory to the subdirs from its own meson.build, once
3527# we have those
3528trace_events_subdirs = [
3529  'crypto',
3530  'qapi',
3531  'qom',
3532  'monitor',
3533  'util',
3534  'gdbstub',
3535]
3536if have_linux_user
3537  trace_events_subdirs += [ 'linux-user' ]
3538endif
3539if have_bsd_user
3540  trace_events_subdirs += [ 'bsd-user' ]
3541endif
3542if have_block
3543  trace_events_subdirs += [
3544    'authz',
3545    'block',
3546    'chardev',
3547    'io',
3548    'nbd',
3549    'scsi',
3550  ]
3551endif
3552if have_system
3553  trace_events_subdirs += [
3554    'accel/kvm',
3555    'audio',
3556    'backends',
3557    'backends/tpm',
3558    'ebpf',
3559    'hw/9pfs',
3560    'hw/acpi',
3561    'hw/adc',
3562    'hw/alpha',
3563    'hw/arm',
3564    'hw/audio',
3565    'hw/block',
3566    'hw/char',
3567    'hw/display',
3568    'hw/dma',
3569    'hw/fsi',
3570    'hw/hyperv',
3571    'hw/i2c',
3572    'hw/i386',
3573    'hw/i386/xen',
3574    'hw/i386/kvm',
3575    'hw/ide',
3576    'hw/input',
3577    'hw/intc',
3578    'hw/isa',
3579    'hw/mem',
3580    'hw/mips',
3581    'hw/misc',
3582    'hw/misc/macio',
3583    'hw/net',
3584    'hw/net/can',
3585    'hw/nubus',
3586    'hw/nvme',
3587    'hw/nvram',
3588    'hw/pci',
3589    'hw/pci-host',
3590    'hw/ppc',
3591    'hw/rtc',
3592    'hw/riscv',
3593    'hw/s390x',
3594    'hw/scsi',
3595    'hw/sd',
3596    'hw/sensor',
3597    'hw/sh4',
3598    'hw/sparc',
3599    'hw/sparc64',
3600    'hw/ssi',
3601    'hw/timer',
3602    'hw/tpm',
3603    'hw/uefi',
3604    'hw/ufs',
3605    'hw/usb',
3606    'hw/vfio',
3607    'hw/virtio',
3608    'hw/vmapple',
3609    'hw/watchdog',
3610    'hw/xen',
3611    'hw/gpio',
3612    'migration',
3613    'net',
3614    'system',
3615    'ui',
3616    'hw/remote',
3617  ]
3618endif
3619if have_system or have_user
3620  trace_events_subdirs += [
3621    'accel/tcg',
3622    'hw/core',
3623    'target/arm',
3624    'target/arm/hvf',
3625    'target/hppa',
3626    'target/i386',
3627    'target/i386/kvm',
3628    'target/loongarch',
3629    'target/mips/tcg',
3630    'target/ppc',
3631    'target/riscv',
3632    'target/s390x',
3633    'target/s390x/kvm',
3634    'target/sparc',
3635  ]
3636endif
3637
3638###################
3639# Collect sources #
3640###################
3641
3642authz_ss = ss.source_set()
3643blockdev_ss = ss.source_set()
3644block_ss = ss.source_set()
3645chardev_ss = ss.source_set()
3646common_ss = ss.source_set()
3647crypto_ss = ss.source_set()
3648hwcore_ss = ss.source_set()
3649io_ss = ss.source_set()
3650qmp_ss = ss.source_set()
3651qom_ss = ss.source_set()
3652system_ss = ss.source_set()
3653libsystem_ss = ss.source_set()
3654specific_fuzz_ss = ss.source_set()
3655specific_ss = ss.source_set()
3656rust_devices_ss = ss.source_set()
3657stub_ss = ss.source_set()
3658trace_ss = ss.source_set()
3659user_ss = ss.source_set()
3660libuser_ss = ss.source_set()
3661util_ss = ss.source_set()
3662
3663# accel modules
3664qtest_module_ss = ss.source_set()
3665
3666modules = {}
3667target_modules = {}
3668plugin_modules = []
3669hw_arch = {}
3670target_arch = {}
3671target_system_arch = {}
3672target_user_arch = {}
3673hw_common_arch = {}
3674
3675# NOTE: the trace/ subdirectory needs the qapi_trace_events variable
3676# that is filled in by qapi/.
3677subdir('qapi')
3678subdir('qobject')
3679subdir('stubs')
3680subdir('trace')
3681subdir('util')
3682subdir('qom')
3683subdir('authz')
3684subdir('crypto')
3685subdir('ui')
3686subdir('gdbstub')
3687if have_system
3688  subdir('hw')
3689else
3690  subdir('hw/core')
3691endif
3692
3693if enable_modules
3694  libmodulecommon = static_library('module-common', files('module-common.c') + genh, pic: true, c_args: '-DBUILD_DSO')
3695  modulecommon = declare_dependency(objects: libmodulecommon.extract_all_objects(recursive: false), compile_args: '-DBUILD_DSO')
3696endif
3697
3698qom_ss = qom_ss.apply({})
3699libqom = static_library('qom', qom_ss.sources() + genh,
3700                        dependencies: [qom_ss.dependencies()],
3701                        build_by_default: false)
3702qom = declare_dependency(objects: libqom.extract_all_objects(recursive: false),
3703                         dependencies: qom_ss.dependencies())
3704
3705event_loop_base = files('event-loop-base.c')
3706event_loop_base = static_library('event-loop-base',
3707                                 sources: event_loop_base + genh,
3708                                 build_by_default: false)
3709event_loop_base = declare_dependency(objects: event_loop_base.extract_all_objects(recursive: false),
3710                                     dependencies: [qom])
3711
3712stub_ss = stub_ss.apply({})
3713
3714util_ss.add_all(trace_ss)
3715util_ss = util_ss.apply({})
3716libqemuutil = static_library('qemuutil',
3717                             build_by_default: false,
3718                             sources: util_ss.sources() + stub_ss.sources() + genh,
3719                             dependencies: [util_ss.dependencies(), libm, threads, glib, socket, malloc])
3720qemuutil_deps = [event_loop_base]
3721if host_os != 'windows'
3722  qemuutil_deps += [rt]
3723endif
3724qemuutil = declare_dependency(link_with: libqemuutil,
3725                              sources: genh + version_res,
3726                              dependencies: qemuutil_deps)
3727
3728if have_system or have_user
3729  decodetree = generator(find_program('scripts/decodetree.py'),
3730                         output: 'decode-@BASENAME@.c.inc',
3731                         arguments: ['@INPUT@', '@EXTRA_ARGS@', '-o', '@OUTPUT@'])
3732  subdir('libdecnumber')
3733  subdir('target')
3734endif
3735
3736subdir('audio')
3737subdir('io')
3738subdir('chardev')
3739subdir('fsdev')
3740subdir('dump')
3741
3742if have_block
3743  block_ss.add(files(
3744    'block.c',
3745    'blockjob.c',
3746    'job.c',
3747    'qemu-io-cmds.c',
3748  ))
3749  if config_host_data.get('CONFIG_REPLICATION')
3750    block_ss.add(files('replication.c'))
3751  endif
3752
3753  subdir('nbd')
3754  subdir('scsi')
3755  subdir('block')
3756
3757  blockdev_ss.add(files(
3758    'blockdev.c',
3759    'blockdev-nbd.c',
3760    'iothread.c',
3761    'job-qmp.c',
3762  ))
3763
3764  # os-posix.c contains POSIX-specific functions used by qemu-storage-daemon,
3765  # os-win32.c does not
3766  if host_os == 'windows'
3767    system_ss.add(files('os-win32.c'))
3768  else
3769    blockdev_ss.add(files('os-posix.c'))
3770  endif
3771endif
3772
3773common_ss.add(files('cpu-common.c'))
3774specific_ss.add(files('cpu-target.c'))
3775
3776subdir('system')
3777
3778# Work around a gcc bug/misfeature wherein constant propagation looks
3779# through an alias:
3780#   https://gcc.gnu.org/bugzilla/show_bug.cgi?id=99696
3781# to guess that a const variable is always zero.  Without lto, this is
3782# impossible, as the alias is restricted to page-vary-common.c.  Indeed,
3783# without lto, not even the alias is required -- we simply use different
3784# declarations in different compilation units.
3785pagevary = files('page-vary-common.c')
3786if get_option('b_lto')
3787  pagevary_flags = ['-fno-lto']
3788  if get_option('cfi')
3789    pagevary_flags += '-fno-sanitize=cfi-icall'
3790  endif
3791  pagevary = static_library('page-vary-common', sources: pagevary + genh,
3792                            c_args: pagevary_flags)
3793  pagevary = declare_dependency(link_with: pagevary)
3794endif
3795common_ss.add(pagevary)
3796specific_ss.add(files('page-target.c', 'page-vary-target.c'))
3797
3798common_ss.add(files('target-info.c'))
3799specific_ss.add(files('target-info-stub.c'))
3800
3801subdir('backends')
3802subdir('disas')
3803subdir('migration')
3804subdir('monitor')
3805subdir('net')
3806subdir('replay')
3807subdir('semihosting')
3808subdir('stats')
3809subdir('tcg')
3810subdir('fpu')
3811subdir('accel')
3812subdir('plugins')
3813subdir('ebpf')
3814
3815if 'CONFIG_TCG' in config_all_accel
3816  subdir('contrib/plugins')
3817endif
3818
3819common_user_inc = []
3820
3821subdir('common-user')
3822subdir('bsd-user')
3823subdir('linux-user')
3824
3825# needed for fuzzing binaries
3826subdir('tests/qtest/libqos')
3827subdir('tests/qtest/fuzz')
3828
3829# accel modules
3830target_modules += { 'accel' : { 'qtest': qtest_module_ss }}
3831
3832##############################################
3833# Internal static_libraries and dependencies #
3834##############################################
3835
3836modinfo_collect = find_program('scripts/modinfo-collect.py')
3837modinfo_generate = find_program('scripts/modinfo-generate.py')
3838modinfo_files = []
3839
3840block_mods = []
3841system_mods = []
3842emulator_modules = []
3843foreach d, list : modules
3844  if not (d == 'block' ? have_block : have_system)
3845    continue
3846  endif
3847
3848  foreach m, module_ss : list
3849    if enable_modules
3850      module_ss.add(modulecommon)
3851      module_ss = module_ss.apply(config_all_devices, strict: false)
3852      sl = static_library(d + '-' + m, [genh, module_ss.sources()],
3853                          dependencies: module_ss.dependencies(), pic: true)
3854      if d == 'block'
3855        block_mods += sl
3856      else
3857        system_mods += sl
3858      endif
3859      emulator_modules += shared_module(sl.name(),
3860                    name_prefix: '',
3861                    objects: sl.extract_all_objects(recursive: false),
3862                    dependencies: module_ss.dependencies(),
3863                    install: true,
3864                    install_dir: qemu_moddir)
3865      if module_ss.sources() != []
3866        # FIXME: Should use sl.extract_all_objects(recursive: true) as
3867        # input. Sources can be used multiple times but objects are
3868        # unique when it comes to lookup in compile_commands.json.
3869        # Depnds on a mesion version with
3870        # https://github.com/mesonbuild/meson/pull/8900
3871        modinfo_files += custom_target(d + '-' + m + '.modinfo',
3872                                       output: d + '-' + m + '.modinfo',
3873                                       input: module_ss.sources() + genh,
3874                                       capture: true,
3875                                       command: [modinfo_collect, module_ss.sources()])
3876      endif
3877    else
3878      if d == 'block'
3879        block_ss.add_all(module_ss)
3880      else
3881        system_ss.add_all(module_ss)
3882      endif
3883    endif
3884  endforeach
3885endforeach
3886
3887foreach d, list : target_modules
3888  foreach m, module_ss : list
3889    if enable_modules
3890      module_ss.add(modulecommon)
3891      foreach target : target_dirs
3892        if target.endswith('-softmmu')
3893          config_target = config_target_mak[target]
3894          target_inc = [include_directories('target' / config_target['TARGET_BASE_ARCH'])]
3895          c_args = ['-DCOMPILING_PER_TARGET',
3896                    '-DCONFIG_TARGET="@0@-config-target.h"'.format(target),
3897                    '-DCONFIG_DEVICES="@0@-config-devices.h"'.format(target)]
3898          target_module_ss = module_ss.apply(config_target, strict: false)
3899          if target_module_ss.sources() != []
3900            module_name = d + '-' + m + '-' + config_target['TARGET_NAME']
3901            sl = static_library(module_name,
3902                                [genh, target_module_ss.sources()],
3903                                dependencies: target_module_ss.dependencies(),
3904                                include_directories: target_inc,
3905                                c_args: c_args,
3906                                pic: true)
3907            system_mods += sl
3908            emulator_modules += shared_module(sl.name(),
3909                    name_prefix: '',
3910                    objects: sl.extract_all_objects(recursive: false),
3911                    dependencies: target_module_ss.dependencies(),
3912                    install: true,
3913                    install_dir: qemu_moddir)
3914            # FIXME: Should use sl.extract_all_objects(recursive: true) too.
3915            modinfo_files += custom_target(module_name + '.modinfo',
3916                                           output: module_name + '.modinfo',
3917                                           input: target_module_ss.sources() + genh,
3918                                           capture: true,
3919                                           command: [modinfo_collect, '--target', target, target_module_ss.sources()])
3920          endif
3921        endif
3922      endforeach
3923    else
3924      specific_ss.add_all(module_ss)
3925    endif
3926  endforeach
3927endforeach
3928
3929if enable_modules
3930  foreach target : target_dirs
3931    if target.endswith('-softmmu')
3932      config_target = config_target_mak[target]
3933      config_devices_mak = target + '-config-devices.mak'
3934      modinfo_src = custom_target('modinfo-' + target + '.c',
3935                                  output: 'modinfo-' + target + '.c',
3936                                  input: modinfo_files,
3937                                  command: [modinfo_generate, '--devices', config_devices_mak, '@INPUT@'],
3938                                  capture: true)
3939
3940      modinfo_lib = static_library('modinfo-' + target + '.c', modinfo_src)
3941      modinfo_dep = declare_dependency(link_with: modinfo_lib)
3942
3943      arch = config_target['TARGET_NAME'] == 'sparc64' ? 'sparc64' : config_target['TARGET_BASE_ARCH']
3944      hw_arch[arch].add(modinfo_dep)
3945    endif
3946  endforeach
3947
3948  if emulator_modules.length() > 0
3949    alias_target('modules', emulator_modules)
3950  endif
3951endif
3952
3953nm = find_program('nm')
3954undefsym = find_program('scripts/undefsym.py')
3955block_syms = custom_target('block.syms', output: 'block.syms',
3956                             input: [libqemuutil, block_mods],
3957                             capture: true,
3958                             command: [undefsym, nm, '@INPUT@'])
3959qemu_syms = custom_target('qemu.syms', output: 'qemu.syms',
3960                             input: [libqemuutil, system_mods],
3961                             capture: true,
3962                             command: [undefsym, nm, '@INPUT@'])
3963
3964authz_ss = authz_ss.apply({})
3965libauthz = static_library('authz', authz_ss.sources() + genh,
3966                          dependencies: [authz_ss.dependencies()],
3967                          build_by_default: false)
3968
3969authz = declare_dependency(objects: libauthz.extract_all_objects(recursive: false),
3970                           dependencies: [authz_ss.dependencies(), qom])
3971
3972crypto_ss = crypto_ss.apply({})
3973libcrypto = static_library('crypto', crypto_ss.sources() + genh,
3974                           dependencies: [crypto_ss.dependencies()],
3975                           build_by_default: false)
3976
3977crypto = declare_dependency(objects: libcrypto.extract_all_objects(recursive: false),
3978                            dependencies: [crypto_ss.dependencies(), authz, qom])
3979
3980io_ss = io_ss.apply({})
3981libio = static_library('io', io_ss.sources() + genh,
3982                       dependencies: [io_ss.dependencies()],
3983                       link_with: libqemuutil,
3984                       build_by_default: false)
3985
3986io = declare_dependency(objects: libio.extract_all_objects(recursive: false),
3987                        dependencies: [io_ss.dependencies(), crypto, qom])
3988
3989libmigration = static_library('migration', sources: migration_files + genh,
3990                              build_by_default: false)
3991migration = declare_dependency(objects: libmigration.extract_all_objects(recursive: false),
3992                               dependencies: [qom, io])
3993system_ss.add(migration)
3994
3995block_ss = block_ss.apply({})
3996libblock = static_library('block', block_ss.sources() + genh,
3997                          dependencies: block_ss.dependencies(),
3998                          build_by_default: false)
3999
4000block = declare_dependency(objects: libblock.extract_all_objects(recursive: false),
4001                           dependencies: [block_ss.dependencies(), crypto, io])
4002
4003blockdev_ss = blockdev_ss.apply({})
4004libblockdev = static_library('blockdev', blockdev_ss.sources() + genh,
4005                             dependencies: blockdev_ss.dependencies(),
4006                             build_by_default: false)
4007
4008blockdev = declare_dependency(objects: libblockdev.extract_all_objects(recursive: false),
4009                              dependencies: [blockdev_ss.dependencies(), block, event_loop_base])
4010
4011qmp_ss = qmp_ss.apply({})
4012libqmp = static_library('qmp', qmp_ss.sources() + genh,
4013                        dependencies: qmp_ss.dependencies(),
4014                        build_by_default: false)
4015
4016qmp = declare_dependency(objects: libqmp.extract_all_objects(recursive: false),
4017                         dependencies: qmp_ss.dependencies())
4018
4019libchardev = static_library('chardev', chardev_ss.sources() + genh,
4020                            dependencies: chardev_ss.dependencies(),
4021                            build_by_default: false)
4022
4023chardev = declare_dependency(objects: libchardev.extract_all_objects(recursive: false),
4024                             dependencies: [chardev_ss.dependencies(), io])
4025
4026hwcore_ss = hwcore_ss.apply({})
4027libhwcore = static_library('hwcore', sources: hwcore_ss.sources() + genh,
4028                           build_by_default: false)
4029hwcore = declare_dependency(objects: libhwcore.extract_all_objects(recursive: false))
4030common_ss.add(hwcore)
4031
4032###########
4033# Targets #
4034###########
4035
4036system_ss.add(authz, blockdev, chardev, crypto, io, qmp)
4037common_ss.add(qom, qemuutil)
4038
4039common_ss.add_all(when: 'CONFIG_SYSTEM_ONLY', if_true: [system_ss])
4040common_ss.add_all(when: 'CONFIG_USER_ONLY', if_true: user_ss)
4041
4042libuser_ss = libuser_ss.apply({})
4043libuser = static_library('user',
4044                         libuser_ss.sources() + genh,
4045                         c_args: ['-DCONFIG_USER_ONLY',
4046                                  '-DCOMPILING_SYSTEM_VS_USER'],
4047                         dependencies: libuser_ss.dependencies(),
4048                         build_by_default: false)
4049libuser = declare_dependency(objects: libuser.extract_all_objects(recursive: false),
4050                             dependencies: libuser_ss.dependencies())
4051common_ss.add(when: 'CONFIG_USER_ONLY', if_true: libuser)
4052
4053libsystem_ss = libsystem_ss.apply({})
4054libsystem = static_library('system',
4055                           libsystem_ss.sources() + genh,
4056                           c_args: ['-DCONFIG_SOFTMMU',
4057                                    '-DCOMPILING_SYSTEM_VS_USER'],
4058                           dependencies: libsystem_ss.dependencies(),
4059                           build_by_default: false)
4060libsystem = declare_dependency(objects: libsystem.extract_all_objects(recursive: false),
4061                               dependencies: libsystem_ss.dependencies())
4062common_ss.add(when: 'CONFIG_SYSTEM_ONLY', if_true: libsystem)
4063
4064# Note that this library is never used directly (only through extract_objects)
4065# and is not built by default; therefore, source files not used by the build
4066# configuration will be in build.ninja, but are never built by default.
4067common_all = static_library('common',
4068                            build_by_default: false,
4069                            sources: common_ss.all_sources() + genh,
4070                            include_directories: common_user_inc,
4071                            implicit_include_directories: false,
4072                            dependencies: common_ss.all_dependencies())
4073
4074# construct common libraries per base architecture
4075hw_common_arch_libs = {}
4076foreach target : target_dirs
4077  config_target = config_target_mak[target]
4078  target_base_arch = config_target['TARGET_BASE_ARCH']
4079
4080  # check if already generated
4081  if target_base_arch in hw_common_arch_libs
4082    continue
4083  endif
4084
4085  if target_base_arch in hw_common_arch
4086    target_inc = [include_directories('target' / target_base_arch)]
4087    src = hw_common_arch[target_base_arch]
4088    lib = static_library(
4089      'hw_' + target_base_arch,
4090      build_by_default: false,
4091      sources: src.all_sources() + genh,
4092      include_directories: common_user_inc + target_inc,
4093      implicit_include_directories: false,
4094      # prevent common code to access cpu compile time
4095      # definition, but still allow access to cpu.h
4096      c_args: ['-DCPU_DEFS_H', '-DCOMPILING_SYSTEM_VS_USER', '-DCONFIG_SOFTMMU'],
4097      dependencies: src.all_dependencies())
4098    hw_common_arch_libs += {target_base_arch: lib}
4099  endif
4100endforeach
4101
4102if have_rust
4103  # We would like to use --generate-cstr, but it is only available
4104  # starting with bindgen 0.66.0.  The oldest supported versions
4105  # is 0.60.x (Debian 12 has 0.60.1) which introduces --allowlist-file.
4106  bindgen_args = [
4107    '--disable-header-comment',
4108    '--raw-line', '// @generated',
4109    '--ctypes-prefix', 'std::os::raw',
4110    '--generate-block',
4111    '--impl-debug',
4112    '--no-doc-comments',
4113    '--with-derive-default',
4114    '--no-layout-tests',
4115    '--no-prepend-enum-name',
4116    '--allowlist-file', meson.project_source_root() + '/include/.*',
4117    '--allowlist-file', meson.project_source_root() + '/.*',
4118    '--allowlist-file', meson.project_build_root() + '/.*'
4119    ]
4120  if not rustfmt.found()
4121    if bindgen.version().version_compare('<0.65.0')
4122      bindgen_args += ['--no-rustfmt-bindings']
4123    else
4124      bindgen_args += ['--formatter', 'none']
4125    endif
4126  endif
4127  if bindgen.version().version_compare('>=0.66.0')
4128    bindgen_args += ['--rust-target', '1.59']
4129  endif
4130  if bindgen.version().version_compare('<0.61.0')
4131    # default in 0.61+
4132    bindgen_args += ['--size_t-is-usize']
4133  else
4134    bindgen_args += ['--merge-extern-blocks']
4135  endif
4136  c_enums = [
4137    'DeviceCategory',
4138    'GpioPolarity',
4139    'MachineInitPhase',
4140    'MemoryDeviceInfoKind',
4141    'MigrationPolicy',
4142    'MigrationPriority',
4143    'QEMUChrEvent',
4144    'QEMUClockType',
4145    'ResetType',
4146    'device_endian',
4147    'module_init_type',
4148  ]
4149  foreach enum : c_enums
4150    bindgen_args += ['--rustified-enum', enum]
4151  endforeach
4152  c_bitfields = [
4153    'ClockEvent',
4154    'VMStateFlags',
4155  ]
4156  foreach enum : c_bitfields
4157    bindgen_args += ['--bitfield-enum', enum]
4158  endforeach
4159
4160  # TODO: Remove this comment when the clang/libclang mismatch issue is solved.
4161  #
4162  # Rust bindings generation with `bindgen` might fail in some cases where the
4163  # detected `libclang` does not match the expected `clang` version/target. In
4164  # this case you must pass the path to `clang` and `libclang` to your build
4165  # command invocation using the environment variables CLANG_PATH and
4166  # LIBCLANG_PATH
4167  bindings_rs = rust.bindgen(
4168    input: 'rust/wrapper.h',
4169    dependencies: common_ss.all_dependencies(),
4170    output: 'bindings.inc.rs',
4171    include_directories: include_directories('.', 'include'),
4172    bindgen_version: ['>=0.60.0'],
4173    args: bindgen_args,
4174    )
4175  subdir('rust')
4176endif
4177
4178
4179feature_to_c = find_program('scripts/feature_to_c.py')
4180rust_root_crate = find_program('scripts/rust/rust_root_crate.sh')
4181
4182if host_os == 'darwin'
4183  entitlement = find_program('scripts/entitlement.sh')
4184endif
4185
4186traceable = []
4187emulators = {}
4188foreach target : target_dirs
4189  config_target = config_target_mak[target]
4190  target_name = config_target['TARGET_NAME']
4191  target_base_arch = config_target['TARGET_BASE_ARCH']
4192  arch_srcs = [config_target_h[target]]
4193  arch_deps = []
4194  c_args = ['-DCOMPILING_PER_TARGET',
4195            '-DCONFIG_TARGET="@0@-config-target.h"'.format(target),
4196  ]
4197  link_args = emulator_link_args
4198
4199  target_inc = [include_directories('target' / config_target['TARGET_BASE_ARCH'])]
4200  if host_os == 'linux'
4201    target_inc += include_directories('linux-headers', is_system: true)
4202  endif
4203  if target.endswith('-softmmu')
4204    target_type='system'
4205    t = target_system_arch[target_base_arch].apply(config_target, strict: false)
4206    arch_srcs += t.sources()
4207    arch_deps += t.dependencies()
4208
4209    hw_dir = target_name == 'sparc64' ? 'sparc64' : target_base_arch
4210    if hw_arch.has_key(hw_dir)
4211      hw = hw_arch[hw_dir].apply(config_target, strict: false)
4212      arch_srcs += hw.sources()
4213      arch_deps += hw.dependencies()
4214    endif
4215
4216    c_args += ['-DCONFIG_DEVICES="@0@-config-devices.h"'.format(target)]
4217    arch_srcs += config_devices_h[target]
4218    link_args += ['@block.syms', '@qemu.syms']
4219  else
4220    abi = config_target['TARGET_ABI_DIR']
4221    target_type='user'
4222    target_inc += common_user_inc
4223    if target_base_arch in target_user_arch
4224      t = target_user_arch[target_base_arch].apply(config_target, strict: false)
4225      arch_srcs += t.sources()
4226      arch_deps += t.dependencies()
4227    endif
4228    if 'CONFIG_LINUX_USER' in config_target
4229      base_dir = 'linux-user'
4230    endif
4231    if 'CONFIG_BSD_USER' in config_target
4232      base_dir = 'bsd-user'
4233      target_inc += include_directories('bsd-user/' / host_os)
4234      target_inc += include_directories('bsd-user/host/' / host_arch)
4235      dir = base_dir / abi
4236      arch_srcs += files(dir / 'signal.c', dir / 'target_arch_cpu.c')
4237    endif
4238    target_inc += include_directories(
4239      base_dir,
4240      base_dir / abi,
4241    )
4242    if 'CONFIG_LINUX_USER' in config_target
4243      dir = base_dir / abi
4244      arch_srcs += files(dir / 'signal.c', dir / 'cpu_loop.c')
4245      if config_target.has_key('TARGET_SYSTBL_ABI')
4246        arch_srcs += \
4247          syscall_nr_generators[abi].process(base_dir / abi / config_target['TARGET_SYSTBL'],
4248                                             extra_args : config_target['TARGET_SYSTBL_ABI'])
4249      endif
4250    endif
4251  endif
4252
4253  if 'TARGET_XML_FILES' in config_target
4254    gdbstub_xml = custom_target(target + '-gdbstub-xml.c',
4255                                output: target + '-gdbstub-xml.c',
4256                                input: files(config_target['TARGET_XML_FILES'].split()),
4257                                command: [feature_to_c, '@INPUT@'],
4258                                capture: true)
4259    arch_srcs += gdbstub_xml
4260  endif
4261
4262  t = target_arch[target_base_arch].apply(config_target, strict: false)
4263  arch_srcs += t.sources()
4264  arch_deps += t.dependencies()
4265
4266  target_common = common_ss.apply(config_target, strict: false)
4267  objects = [common_all.extract_objects(target_common.sources())]
4268  arch_deps += target_common.dependencies()
4269  if target_type == 'system' and target_base_arch in hw_common_arch_libs
4270    src = hw_common_arch[target_base_arch].apply(config_target, strict: false)
4271    lib = hw_common_arch_libs[target_base_arch]
4272    objects += lib.extract_objects(src.sources())
4273    arch_deps += src.dependencies()
4274  endif
4275
4276  target_specific = specific_ss.apply(config_target, strict: false)
4277  arch_srcs += target_specific.sources()
4278  arch_deps += target_specific.dependencies()
4279
4280  if have_rust and target_type == 'system'
4281    target_rust = rust_devices_ss.apply(config_target, strict: false)
4282    crates = []
4283    foreach dep : target_rust.dependencies()
4284      crates += dep.get_variable('crate')
4285    endforeach
4286    if crates.length() > 0
4287      rlib_rs = custom_target('rust_' + target.underscorify() + '.rs',
4288                              output: 'rust_' + target.underscorify() + '.rs',
4289                              command: [rust_root_crate, crates],
4290                              capture: true,
4291                              build_by_default: true,
4292                              build_always_stale: true)
4293      rlib = static_library('rust_' + target.underscorify(),
4294                            rlib_rs,
4295                            dependencies: target_rust.dependencies(),
4296                            override_options: ['rust_std=2021', 'build.rust_std=2021'],
4297                            rust_abi: 'c')
4298      arch_deps += declare_dependency(link_whole: [rlib])
4299    endif
4300  endif
4301
4302  # allow using headers from the dependencies but do not include the sources,
4303  # because this emulator only needs those in "objects".  For external
4304  # dependencies, the full dependency is included below in the executable.
4305  lib_deps = []
4306  foreach dep : arch_deps
4307    lib_deps += dep.partial_dependency(compile_args: true, includes: true)
4308  endforeach
4309
4310  lib = static_library('qemu-' + target,
4311                 sources: arch_srcs + genh,
4312                 dependencies: lib_deps,
4313                 objects: objects,
4314                 include_directories: target_inc,
4315                 c_args: c_args,
4316                 build_by_default: false)
4317
4318  if target.endswith('-softmmu')
4319    execs = [{
4320      'name': 'qemu-system-' + target_name,
4321      'win_subsystem': 'console',
4322      'sources': files('system/main.c'),
4323      'dependencies': [sdl]
4324    }]
4325    if host_os == 'windows' and (sdl.found() or gtk.found())
4326      execs += [{
4327        'name': 'qemu-system-' + target_name + 'w',
4328        'win_subsystem': 'windows',
4329        'sources': files('system/main.c'),
4330        'dependencies': [sdl]
4331      }]
4332    endif
4333    if get_option('fuzzing')
4334      specific_fuzz = specific_fuzz_ss.apply(config_target, strict: false)
4335      execs += [{
4336        'name': 'qemu-fuzz-' + target_name,
4337        'win_subsystem': 'console',
4338        'sources': specific_fuzz.sources(),
4339        'dependencies': specific_fuzz.dependencies(),
4340      }]
4341    endif
4342  else
4343    execs = [{
4344      'name': 'qemu-' + target_name,
4345      'win_subsystem': 'console',
4346      'sources': [],
4347      'dependencies': []
4348    }]
4349  endif
4350  foreach exe: execs
4351    exe_name = exe['name']
4352    if host_os == 'darwin'
4353      exe_name += '-unsigned'
4354    endif
4355
4356    emulator = executable(exe_name, exe['sources'],
4357               install: true,
4358               c_args: c_args,
4359               dependencies: arch_deps + exe['dependencies'],
4360               objects: lib.extract_all_objects(recursive: true),
4361               link_depends: [block_syms, qemu_syms],
4362               link_args: link_args,
4363               win_subsystem: exe['win_subsystem'])
4364
4365    if host_os == 'darwin'
4366      icon = 'pc-bios/qemu.rsrc'
4367      build_input = [emulator, files(icon)]
4368      install_input = [
4369        get_option('bindir') / exe_name,
4370        meson.current_source_dir() / icon
4371      ]
4372      if 'CONFIG_HVF' in config_target
4373        entitlements = 'accel/hvf/entitlements.plist'
4374        build_input += files(entitlements)
4375        install_input += meson.current_source_dir() / entitlements
4376      endif
4377
4378      emulators += {exe['name'] : custom_target(exe['name'],
4379                   input: build_input,
4380                   output: exe['name'],
4381                   command: [entitlement, '@OUTPUT@', '@INPUT@'])
4382      }
4383
4384      meson.add_install_script(entitlement, '--install',
4385                               get_option('bindir') / exe['name'],
4386                               install_input)
4387    else
4388      emulators += {exe['name']: emulator}
4389    endif
4390
4391    traceable += [{
4392      'exe': exe['name'],
4393      'probe-prefix': 'qemu.' + target_type + '.' + target_name,
4394    }]
4395
4396  endforeach
4397endforeach
4398
4399# Other build targets
4400
4401if get_option('plugins')
4402  install_headers('include/qemu/qemu-plugin.h')
4403  if host_os == 'windows'
4404    # On windows, we want to deliver the qemu_plugin_api.lib file in the qemu installer,
4405    # so that plugin authors can compile against it.
4406    install_data(win32_qemu_plugin_api_lib, install_dir: 'lib')
4407  endif
4408endif
4409
4410subdir('qga')
4411
4412# Don't build qemu-keymap if xkbcommon is not explicitly enabled
4413# when we don't build tools or system
4414if xkbcommon.found()
4415  # used for the update-keymaps target, so include rules even if !have_tools
4416  qemu_keymap = executable('qemu-keymap', files('qemu-keymap.c', 'ui/input-keymap.c') + genh,
4417                           dependencies: [qemuutil, xkbcommon], install: have_tools)
4418endif
4419
4420if have_tools
4421  qemu_img = executable('qemu-img', [files('qemu-img.c'), hxdep],
4422             link_args: '@block.syms', link_depends: block_syms,
4423             dependencies: [authz, block, crypto, io, qom, qemuutil], install: true)
4424  qemu_io = executable('qemu-io', files('qemu-io.c'),
4425             link_args: '@block.syms', link_depends: block_syms,
4426             dependencies: [block, qemuutil], install: true)
4427  qemu_nbd = executable('qemu-nbd', files('qemu-nbd.c'),
4428               link_args: '@block.syms', link_depends: block_syms,
4429               dependencies: [blockdev, qemuutil, selinux],
4430               install: true)
4431
4432  subdir('storage-daemon')
4433
4434  foreach exe: [ 'qemu-img', 'qemu-io', 'qemu-nbd', 'qemu-storage-daemon']
4435    traceable += [{
4436      'exe': exe,
4437      'probe-prefix': 'qemu.' + exe.substring(5).replace('-', '_')
4438    }]
4439  endforeach
4440
4441  subdir('contrib/elf2dmp')
4442
4443  executable('qemu-edid', files('qemu-edid.c', 'hw/display/edid-generate.c'),
4444             dependencies: [qemuutil, rt],
4445             install: true)
4446
4447  if have_vhost_user
4448    subdir('contrib/vhost-user-blk')
4449    subdir('contrib/vhost-user-gpu')
4450    subdir('contrib/vhost-user-input')
4451    subdir('contrib/vhost-user-scsi')
4452  endif
4453
4454  if host_os == 'linux'
4455    executable('qemu-bridge-helper', files('qemu-bridge-helper.c'),
4456               dependencies: [qemuutil, libcap_ng],
4457               install: true,
4458               install_dir: get_option('libexecdir'))
4459
4460    executable('qemu-pr-helper', files('scsi/qemu-pr-helper.c', 'scsi/utils.c'),
4461               dependencies: [authz, crypto, io, qom, qemuutil,
4462                              libcap_ng, mpathpersist],
4463               install: true)
4464
4465    if cpu in ['x86', 'x86_64']
4466      executable('qemu-vmsr-helper', files('tools/i386/qemu-vmsr-helper.c'),
4467               dependencies: [authz, crypto, io, qom, qemuutil,
4468                              libcap_ng, mpathpersist],
4469               install: true)
4470    endif
4471  endif
4472
4473  if have_ivshmem
4474    subdir('contrib/ivshmem-client')
4475    subdir('contrib/ivshmem-server')
4476  endif
4477endif
4478
4479if stap.found()
4480  foreach t: traceable
4481    foreach stp: [
4482      {'ext': '.stp-build', 'fmt': 'stap', 'bin': meson.current_build_dir() / t['exe'], 'install': false},
4483      {'ext': '.stp', 'fmt': 'stap', 'bin': get_option('prefix') / get_option('bindir') / t['exe'], 'install': true},
4484      {'ext': '-simpletrace.stp', 'fmt': 'simpletrace-stap', 'bin': '', 'install': true},
4485      {'ext': '-log.stp', 'fmt': 'log-stap', 'bin': '', 'install': true},
4486    ]
4487      cmd = [
4488        tracetool, '--group=all', '--format=' + stp['fmt'],
4489        '--binary=' + stp['bin'],
4490        '--probe-prefix=' + t['probe-prefix'],
4491        '@INPUT@', '@OUTPUT@'
4492      ]
4493
4494      custom_target(t['exe'] + stp['ext'],
4495                    input: trace_events_all,
4496                    output: t['exe'] + stp['ext'],
4497                    install: stp['install'],
4498                    install_dir: get_option('datadir') / 'systemtap/tapset',
4499                    command: cmd,
4500                    depend_files: tracetool_depends)
4501    endforeach
4502  endforeach
4503endif
4504
4505subdir('scripts')
4506subdir('tools')
4507subdir('pc-bios')
4508subdir('docs')
4509subdir('tests')
4510if gtk.found()
4511  subdir('po')
4512endif
4513
4514if host_machine.system() == 'windows'
4515  nsis_cmd = [
4516    find_program('scripts/nsis.py'),
4517    '@OUTPUT@',
4518    get_option('prefix'),
4519    meson.current_source_dir(),
4520    glib_pc.get_variable('bindir'),
4521    host_machine.cpu(),
4522    '--',
4523    '-DDISPLAYVERSION=' + meson.project_version(),
4524  ]
4525  if build_docs
4526    nsis_cmd += '-DCONFIG_DOCUMENTATION=y'
4527  endif
4528  if gtk.found()
4529    nsis_cmd += '-DCONFIG_GTK=y'
4530  endif
4531
4532  nsis = custom_target('nsis',
4533                       output: 'qemu-setup-' + meson.project_version() + '.exe',
4534                       input: files('qemu.nsi'),
4535                       build_always_stale: true,
4536                       command: nsis_cmd + ['@INPUT@'])
4537  alias_target('installer', nsis)
4538endif
4539
4540#########################
4541# Configuration summary #
4542#########################
4543
4544# Build environment
4545summary_info = {}
4546summary_info += {'Build directory':   meson.current_build_dir()}
4547summary_info += {'Source path':       meson.current_source_dir()}
4548summary_info += {'Download dependencies': get_option('wrap_mode') != 'nodownload'}
4549summary(summary_info, bool_yn: true, section: 'Build environment')
4550
4551# Directories
4552summary_info += {'Install prefix':    get_option('prefix')}
4553summary_info += {'BIOS directory':    qemu_datadir}
4554pathsep = host_os == 'windows' ? ';' : ':'
4555summary_info += {'firmware path':     pathsep.join(get_option('qemu_firmwarepath'))}
4556summary_info += {'binary directory':  get_option('prefix') / get_option('bindir')}
4557summary_info += {'library directory': get_option('prefix') / get_option('libdir')}
4558summary_info += {'module directory':  qemu_moddir}
4559summary_info += {'libexec directory': get_option('prefix') / get_option('libexecdir')}
4560summary_info += {'include directory': get_option('prefix') / get_option('includedir')}
4561summary_info += {'config directory':  get_option('prefix') / get_option('sysconfdir')}
4562if host_os != 'windows'
4563  summary_info += {'local state directory': get_option('prefix') / get_option('localstatedir')}
4564  summary_info += {'Manual directory':      get_option('prefix') / get_option('mandir')}
4565else
4566  summary_info += {'local state directory': 'queried at runtime'}
4567endif
4568summary_info += {'Doc directory':     get_option('prefix') / get_option('docdir')}
4569summary(summary_info, bool_yn: true, section: 'Directories')
4570
4571# Host binaries
4572summary_info = {}
4573summary_info += {'python':            '@0@ (version: @1@)'.format(python.full_path(), python.language_version())}
4574summary_info += {'sphinx-build':      sphinx_build}
4575
4576# FIXME: the [binaries] section of machine files, which can be probed
4577# with find_program(), would be great for passing gdb and genisoimage
4578# paths from configure to Meson.  However, there seems to be no way to
4579# hide a program (for example if gdb is too old).
4580if config_host.has_key('GDB')
4581  summary_info += {'gdb':             config_host['GDB']}
4582endif
4583summary_info += {'iasl':              iasl}
4584summary_info += {'genisoimage':       config_host['GENISOIMAGE']}
4585if host_os == 'windows' and have_ga
4586  summary_info += {'wixl':            wixl}
4587endif
4588if slirp.found() and have_system
4589  summary_info += {'smbd':            have_slirp_smbd ? smbd_path : false}
4590endif
4591summary(summary_info, bool_yn: true, section: 'Host binaries')
4592
4593# Configurable features
4594summary_info = {}
4595summary_info += {'Documentation':     build_docs}
4596summary_info += {'system-mode emulation': have_system}
4597summary_info += {'user-mode emulation': have_user}
4598summary_info += {'block layer':       have_block}
4599summary_info += {'Install blobs':     get_option('install_blobs')}
4600summary_info += {'module support':    enable_modules}
4601if enable_modules
4602  summary_info += {'alternative module path': get_option('module_upgrades')}
4603endif
4604summary_info += {'fuzzing support':   get_option('fuzzing')}
4605if have_system
4606  summary_info += {'Audio drivers':     ' '.join(audio_drivers_selected)}
4607endif
4608summary_info += {'Trace backends':    ','.join(get_option('trace_backends'))}
4609if 'simple' in get_option('trace_backends')
4610  summary_info += {'Trace output file': get_option('trace_file') + '-<pid>'}
4611endif
4612summary_info += {'D-Bus display':     dbus_display}
4613summary_info += {'QOM debugging':     get_option('qom_cast_debug')}
4614summary_info += {'Relocatable install': get_option('relocatable')}
4615summary_info += {'vhost-kernel support': have_vhost_kernel}
4616summary_info += {'vhost-net support': have_vhost_net}
4617summary_info += {'vhost-user support': have_vhost_user}
4618summary_info += {'vhost-user-crypto support': have_vhost_user_crypto}
4619summary_info += {'vhost-user-blk server support': have_vhost_user_blk_server}
4620summary_info += {'vhost-vdpa support': have_vhost_vdpa}
4621summary_info += {'build guest agent': have_ga}
4622summary(summary_info, bool_yn: true, section: 'Configurable features')
4623
4624# Compilation information
4625summary_info = {}
4626summary_info += {'host CPU':          cpu}
4627summary_info += {'host endianness':   build_machine.endian()}
4628summary_info += {'C compiler':        ' '.join(meson.get_compiler('c').cmd_array())}
4629summary_info += {'Host C compiler':   ' '.join(meson.get_compiler('c', native: true).cmd_array())}
4630if 'cpp' in all_languages
4631  summary_info += {'C++ compiler':    ' '.join(meson.get_compiler('cpp').cmd_array())}
4632else
4633  summary_info += {'C++ compiler':      false}
4634endif
4635if 'objc' in all_languages
4636  summary_info += {'Objective-C compiler': ' '.join(meson.get_compiler('objc').cmd_array())}
4637else
4638  summary_info += {'Objective-C compiler': false}
4639endif
4640summary_info += {'Rust support':      have_rust}
4641if have_rust
4642  summary_info += {'Rust target':     config_host['RUST_TARGET_TRIPLE']}
4643  summary_info += {'rustc':           ' '.join(rustc.cmd_array())}
4644  summary_info += {'rustc version':   rustc.version()}
4645  summary_info += {'bindgen':         bindgen.full_path()}
4646  summary_info += {'bindgen version': bindgen.version()}
4647endif
4648option_cflags = (get_option('debug') ? ['-g'] : [])
4649if get_option('optimization') != 'plain'
4650  option_cflags += ['-O' + get_option('optimization')]
4651endif
4652summary_info += {'CFLAGS':            ' '.join(get_option('c_args') + option_cflags)}
4653if 'cpp' in all_languages
4654  summary_info += {'CXXFLAGS':        ' '.join(get_option('cpp_args') + option_cflags)}
4655endif
4656if 'objc' in all_languages
4657  summary_info += {'OBJCFLAGS':       ' '.join(get_option('objc_args') + option_cflags)}
4658endif
4659link_args = get_option('c_link_args')
4660if link_args.length() > 0
4661  summary_info += {'LDFLAGS':         ' '.join(link_args)}
4662endif
4663summary_info += {'QEMU_CFLAGS':       ' '.join(qemu_common_flags + qemu_cflags)}
4664if 'cpp' in all_languages
4665  summary_info += {'QEMU_CXXFLAGS':     ' '.join(qemu_common_flags + qemu_cxxflags)}
4666endif
4667if 'objc' in all_languages
4668  summary_info += {'QEMU_OBJCFLAGS':    ' '.join(qemu_common_flags)}
4669endif
4670summary_info += {'QEMU_LDFLAGS':      ' '.join(qemu_ldflags)}
4671summary_info += {'link-time optimization (LTO)': get_option('b_lto')}
4672summary_info += {'PIE':               get_option('b_pie')}
4673summary_info += {'static build':      get_option('prefer_static')}
4674summary_info += {'malloc trim support': has_malloc_trim}
4675summary_info += {'membarrier':        have_membarrier}
4676summary_info += {'debug graph lock':  get_option('debug_graph_lock')}
4677summary_info += {'debug stack usage': get_option('debug_stack_usage')}
4678summary_info += {'mutex debugging':   get_option('debug_mutex')}
4679summary_info += {'memory allocator':  get_option('malloc')}
4680summary_info += {'avx2 optimization': config_host_data.get('CONFIG_AVX2_OPT')}
4681summary_info += {'avx512bw optimization': config_host_data.get('CONFIG_AVX512BW_OPT')}
4682summary_info += {'gcov':              get_option('b_coverage')}
4683summary_info += {'thread sanitizer':  get_option('tsan')}
4684summary_info += {'CFI support':       get_option('cfi')}
4685if get_option('cfi')
4686  summary_info += {'CFI debug support': get_option('cfi_debug')}
4687endif
4688summary_info += {'strip binaries':    get_option('strip')}
4689summary_info += {'sparse':            sparse}
4690summary_info += {'mingw32 support':   host_os == 'windows'}
4691summary(summary_info, bool_yn: true, section: 'Compilation')
4692
4693# snarf the cross-compilation information for tests
4694summary_info = {}
4695have_cross = false
4696foreach target: target_dirs
4697  tcg_mak = meson.current_build_dir() / 'tests/tcg' / target / 'config-target.mak'
4698  if fs.exists(tcg_mak)
4699    config_cross_tcg = keyval.load(tcg_mak)
4700    if 'CC' in config_cross_tcg
4701      summary_info += {config_cross_tcg['TARGET_NAME']: config_cross_tcg['CC']}
4702      have_cross = true
4703    endif
4704  endif
4705endforeach
4706if have_cross
4707  summary(summary_info, bool_yn: true, section: 'Cross compilers')
4708endif
4709
4710# Targets and accelerators
4711summary_info = {}
4712if have_system
4713  summary_info += {'KVM support':       config_all_accel.has_key('CONFIG_KVM')}
4714  summary_info += {'HVF support':       config_all_accel.has_key('CONFIG_HVF')}
4715  summary_info += {'WHPX support':      config_all_accel.has_key('CONFIG_WHPX')}
4716  summary_info += {'NVMM support':      config_all_accel.has_key('CONFIG_NVMM')}
4717  summary_info += {'Xen support':       xen.found()}
4718  if xen.found()
4719    summary_info += {'xen ctrl version':  xen.version()}
4720  endif
4721  summary_info += {'Xen emulation':     config_all_devices.has_key('CONFIG_XEN_EMU')}
4722endif
4723summary_info += {'TCG support':       config_all_accel.has_key('CONFIG_TCG')}
4724if config_all_accel.has_key('CONFIG_TCG')
4725  if get_option('tcg_interpreter')
4726    summary_info += {'TCG backend':   'TCI (TCG with bytecode interpreter, slow)'}
4727  else
4728    summary_info += {'TCG backend':   'native (@0@)'.format(cpu)}
4729  endif
4730  summary_info += {'TCG plugins':       get_option('plugins')}
4731  summary_info += {'TCG debug enabled': get_option('debug_tcg')}
4732  if have_linux_user or have_bsd_user
4733    summary_info += {'syscall buffer debugging support': get_option('debug_remap')}
4734  endif
4735endif
4736summary_info += {'target list':       ' '.join(target_dirs)}
4737if have_system
4738  summary_info += {'default devices':   get_option('default_devices')}
4739  summary_info += {'out of process emulation': multiprocess_allowed}
4740  summary_info += {'vfio-user server': vfio_user_server_allowed}
4741endif
4742summary(summary_info, bool_yn: true, section: 'Targets and accelerators')
4743
4744# Block layer
4745summary_info = {}
4746summary_info += {'coroutine backend': coroutine_backend}
4747summary_info += {'coroutine pool':    have_coroutine_pool}
4748if have_block
4749  summary_info += {'Block whitelist (rw)': get_option('block_drv_rw_whitelist')}
4750  summary_info += {'Block whitelist (ro)': get_option('block_drv_ro_whitelist')}
4751  summary_info += {'Use block whitelist in tools': get_option('block_drv_whitelist_in_tools')}
4752  summary_info += {'VirtFS (9P) support':    have_virtfs}
4753  summary_info += {'replication support': config_host_data.get('CONFIG_REPLICATION')}
4754  summary_info += {'bochs support':     get_option('bochs').allowed()}
4755  summary_info += {'cloop support':     get_option('cloop').allowed()}
4756  summary_info += {'dmg support':       get_option('dmg').allowed()}
4757  summary_info += {'qcow v1 support':   get_option('qcow1').allowed()}
4758  summary_info += {'vdi support':       get_option('vdi').allowed()}
4759  summary_info += {'vhdx support':      get_option('vhdx').allowed()}
4760  summary_info += {'vmdk support':      get_option('vmdk').allowed()}
4761  summary_info += {'vpc support':       get_option('vpc').allowed()}
4762  summary_info += {'vvfat support':     get_option('vvfat').allowed()}
4763  summary_info += {'qed support':       get_option('qed').allowed()}
4764  summary_info += {'parallels support': get_option('parallels').allowed()}
4765  summary_info += {'FUSE exports':      fuse}
4766  summary_info += {'VDUSE block exports': have_vduse_blk_export}
4767endif
4768summary(summary_info, bool_yn: true, section: 'Block layer support')
4769
4770# Crypto
4771summary_info = {}
4772summary_info += {'TLS priority':      get_option('tls_priority')}
4773summary_info += {'GNUTLS support':    gnutls}
4774if gnutls.found()
4775  summary_info += {'  GNUTLS crypto':   gnutls_crypto.found()}
4776endif
4777summary_info += {'libgcrypt':         gcrypt}
4778summary_info += {'nettle':            nettle}
4779if nettle.found()
4780   summary_info += {'  XTS':             xts != 'private'}
4781endif
4782summary_info += {'SM4 ALG support':   crypto_sm4}
4783summary_info += {'SM3 ALG support':   crypto_sm3}
4784summary_info += {'AF_ALG support':    have_afalg}
4785summary_info += {'rng-none':          get_option('rng_none')}
4786summary_info += {'Linux keyring':     have_keyring}
4787summary_info += {'Linux keyutils':    keyutils}
4788summary(summary_info, bool_yn: true, section: 'Crypto')
4789
4790# UI
4791summary_info = {}
4792if host_os == 'darwin'
4793  summary_info += {'Cocoa support':           cocoa}
4794endif
4795summary_info += {'SDL support':       sdl}
4796summary_info += {'SDL image support': sdl_image}
4797summary_info += {'GTK support':       gtk}
4798summary_info += {'pixman':            pixman}
4799summary_info += {'VTE support':       vte}
4800summary_info += {'PNG support':       png}
4801summary_info += {'VNC support':       vnc}
4802if vnc.found()
4803  summary_info += {'VNC SASL support':  sasl}
4804  summary_info += {'VNC JPEG support':  jpeg}
4805endif
4806summary_info += {'spice protocol support': spice_protocol}
4807if spice_protocol.found()
4808  summary_info += {'  spice server support': spice}
4809endif
4810summary_info += {'curses support':    curses}
4811summary_info += {'brlapi support':    brlapi}
4812summary(summary_info, bool_yn: true, section: 'User interface')
4813
4814# Graphics backends
4815summary_info = {}
4816summary_info += {'VirGL support':     virgl}
4817summary_info += {'Rutabaga support':  rutabaga}
4818summary(summary_info, bool_yn: true, section: 'Graphics backends')
4819
4820# Audio backends
4821summary_info = {}
4822if host_os not in ['darwin', 'haiku', 'windows']
4823  summary_info += {'OSS support':     oss}
4824  summary_info += {'sndio support':   sndio}
4825elif host_os == 'darwin'
4826  summary_info += {'CoreAudio support': coreaudio}
4827elif host_os == 'windows'
4828  summary_info += {'DirectSound support': dsound}
4829endif
4830if host_os == 'linux'
4831  summary_info += {'ALSA support':    alsa}
4832  summary_info += {'PulseAudio support': pulse}
4833endif
4834summary_info += {'PipeWire support':  pipewire}
4835summary_info += {'JACK support':      jack}
4836summary(summary_info, bool_yn: true, section: 'Audio backends')
4837
4838# Network backends
4839summary_info = {}
4840if host_os == 'darwin'
4841  summary_info += {'vmnet.framework support': vmnet}
4842endif
4843summary_info += {'AF_XDP support':    libxdp}
4844summary_info += {'slirp support':     slirp}
4845summary_info += {'vde support':       vde}
4846summary_info += {'netmap support':    have_netmap}
4847summary_info += {'l2tpv3 support':    have_l2tpv3}
4848summary(summary_info, bool_yn: true, section: 'Network backends')
4849
4850# Libraries
4851summary_info = {}
4852summary_info += {'libtasn1':          tasn1}
4853summary_info += {'PAM':               pam}
4854summary_info += {'iconv support':     iconv}
4855summary_info += {'blkio support':     blkio}
4856summary_info += {'curl support':      curl}
4857summary_info += {'Multipath support': mpathpersist}
4858summary_info += {'Linux AIO support': libaio}
4859summary_info += {'Linux io_uring support': linux_io_uring}
4860summary_info += {'ATTR/XATTR support': libattr}
4861summary_info += {'RDMA support':      rdma}
4862summary_info += {'fdt support':       fdt_opt == 'internal' ? 'internal' : fdt}
4863summary_info += {'libcap-ng support': libcap_ng}
4864summary_info += {'bpf support':       libbpf}
4865summary_info += {'rbd support':       rbd}
4866summary_info += {'smartcard support': cacard}
4867summary_info += {'U2F support':       u2f}
4868summary_info += {'libusb':            libusb}
4869summary_info += {'usb net redir':     usbredir}
4870summary_info += {'OpenGL support (epoxy)': opengl}
4871summary_info += {'GBM':               gbm}
4872summary_info += {'libiscsi support':  libiscsi}
4873summary_info += {'libnfs support':    libnfs}
4874if host_os == 'windows'
4875  if have_ga
4876    summary_info += {'QGA VSS support':   have_qga_vss}
4877  endif
4878endif
4879summary_info += {'seccomp support':   seccomp}
4880summary_info += {'GlusterFS support': glusterfs}
4881summary_info += {'hv-balloon support': hv_balloon}
4882summary_info += {'TPM support':       have_tpm}
4883summary_info += {'libssh support':    libssh}
4884summary_info += {'lzo support':       lzo}
4885summary_info += {'snappy support':    snappy}
4886summary_info += {'bzip2 support':     libbzip2}
4887summary_info += {'lzfse support':     liblzfse}
4888summary_info += {'zstd support':      zstd}
4889summary_info += {'Query Processing Library support': qpl}
4890summary_info += {'UADK Library support': uadk}
4891summary_info += {'qatzip support':    qatzip}
4892summary_info += {'NUMA host support': numa}
4893summary_info += {'capstone':          capstone}
4894summary_info += {'libpmem support':   libpmem}
4895summary_info += {'libdaxctl support': libdaxctl}
4896summary_info += {'libcbor support':   libcbor}
4897summary_info += {'libudev':           libudev}
4898# Dummy dependency, keep .found()
4899summary_info += {'FUSE lseek':        fuse_lseek.found()}
4900summary_info += {'selinux':           selinux}
4901summary_info += {'libdw':             libdw}
4902if host_os == 'freebsd'
4903  summary_info += {'libinotify-kqueue': inotify}
4904endif
4905if host_os == 'darwin'
4906  summary_info += {'ParavirtualizedGraphics support': pvg}
4907endif
4908summary(summary_info, bool_yn: true, section: 'Dependencies')
4909
4910if host_arch == 'unknown'
4911  message()
4912  warning('UNSUPPORTED HOST CPU')
4913  message()
4914  message('Support for CPU host architecture ' + cpu + ' is not currently')
4915  message('maintained. The QEMU project does not guarantee that QEMU will')
4916  message('compile or work on this host CPU. You can help by volunteering')
4917  message('to maintain it and providing a build host for our continuous')
4918  message('integration setup.')
4919  if get_option('tcg').allowed() and target_dirs.length() > 0
4920    message()
4921    message('configure has succeeded and you can continue to build, but')
4922    message('QEMU will use a slow interpreter to emulate the target CPU.')
4923  endif
4924elif host_long_bits < 64
4925  message()
4926  warning('DEPRECATED HOST CPU')
4927  message()
4928  message('Support for 32-bit CPU host architecture ' + cpu + ' is going')
4929  message('to be dropped in a future QEMU release.')
4930endif
4931
4932if not supported_oses.contains(host_os)
4933  message()
4934  warning('UNSUPPORTED HOST OS')
4935  message()
4936  message('Support for host OS ' + host_os + 'is not currently maintained.')
4937  message('configure has succeeded and you can continue to build, but')
4938  message('the QEMU project does not guarantee that QEMU will compile or')
4939  message('work on this operating system. You can help by volunteering')
4940  message('to maintain it and providing a build host for our continuous')
4941  message('integration setup. This will ensure that future versions of QEMU')
4942  message('will keep working on ' + host_os + '.')
4943endif
4944
4945if host_arch == 'unknown' or not supported_oses.contains(host_os)
4946  message()
4947  message('If you want to help supporting QEMU on this platform, please')
4948  message('contact the developers at qemu-devel@nongnu.org.')
4949endif
4950
4951actually_reloc = get_option('relocatable')
4952# check if get_relocated_path() is actually able to relocate paths
4953if get_option('relocatable') and \
4954  not (get_option('prefix') / get_option('bindir')).startswith(get_option('prefix') / '')
4955  message()
4956  warning('bindir not included within prefix, the installation will not be relocatable.')
4957  actually_reloc = false
4958endif
4959if not actually_reloc and (host_os == 'windows' or get_option('relocatable'))
4960  if host_os == 'windows'
4961    message()
4962    warning('Windows installs should usually be relocatable.')
4963  endif
4964  message()
4965  message('QEMU will have to be installed under ' + get_option('prefix') + '.')
4966  message('Use --disable-relocatable to remove this warning.')
4967endif
4968