summary refs log tree commit diff stats
path: root/gitlab/issues/target_missing/host_missing/accel_missing/516.toml
blob: c5fa9acbe799b3d94604e70354de15f3c3d9a9cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
id = 516
title = "Configure option `--enable-plugins` makes modules in shared library not loadable on macOS"
state = "closed"
created_at = "2021-08-06T19:14:55.635Z"
closed_at = "2021-09-04T18:20:46.957Z"
labels = ["Build System", "Regression", "hostos: macOS"]
url = "https://gitlab.com/qemu-project/qemu/-/issues/516"
host-os = "macOS 10.15.7"
host-arch = "x86_64"
qemu-version = "QEMU emulator version 6.0.92 (v6.1.0-rc2-15-gca92f16276)"
guest-os = "n/a"
guest-arch = "n/a"
description = """The title mentions `--enable-plugins` option, however as it's enabled by default, not providing `--disable-plugins` would also cause this to happen.

If TCG plugin support is enabled, symbols in `qemu-system-*` binaries will be missing, and module libraries would fail to load as they expect those symbols to exist in the main binary.

Configure options used: `STRIP="strip -x" ./configure --enable-user --enable-tools --enable-parallels --enable-libxml2 --enable-spice --enable-hvf --enable-cocoa --enable-guest-agent --enable-curses --enable-plugins --enable-modules --objcc=gcc --enable-libusb --enable-usb-redir`

After inspecting the compiler command line, I've found the linker option `-Wl,-exported_symbols_list,qemu-plugins-ld64.symbols` is causing this to happen: only symbols listed in `qemu-plugins-ld64.symbols` would be kept in `qemu-system-*` binaries and all other symbols will be hidden.

Note that this is not caused by stripping (although I had to use custom strip command line on macOS to successfully compile qemu); the option `-exported_symbols_list` works by only exposing the provided symbols and treating all other symbols as `visibility=hidden`.

Replacing `--enable-plugins` to `--disable-plugins` in the above configure command line would "fix" it, although it means TCG plugins will not be supported."""
reproduce = """1. Build QEMU on macOS with plugin support enabled
2. Try to use modules in shared library like qxl"""
additional = """Some examples:

```
$ qemu-system-x86_64 -device qxl
Failed to open module: dlopen(/usr/local/bin/../lib/qemu/ui-spice-core.dylib, 10): Symbol not found: __TRACE_QEMU_SPICE_ADD_MEMSLOT_DSTATE
  Referenced from: /usr/local/bin/../lib/qemu/ui-spice-core.dylib
  Expected in: flat namespace
 in /usr/local/bin/../lib/qemu/ui-spice-core.dylib
Failed to open module: dlopen(/usr/local/bin/../lib/qemu/hw-display-qxl.dylib, 2): Symbol not found: __TRACE_QXL_CLIENT_MONITORS_CONFIG_CAPPED_DSTATE
  Referenced from: /usr/local/bin/../lib/qemu/hw-display-qxl.dylib
  Expected in: flat namespace
 in /usr/local/bin/../lib/qemu/hw-display-qxl.dylib
qemu-system-x86_64: -device qxl: 'qxl' is not a valid device model name
```

```
$ qemu-system-x86_64 -spice port=5901
Failed to open module: dlopen(/usr/local/bin/../lib/qemu/ui-spice-core.dylib, 10): Symbol not found: __TRACE_QEMU_SPICE_ADD_MEMSLOT_DSTATE
  Referenced from: /usr/local/bin/../lib/qemu/ui-spice-core.dylib
  Expected in: flat namespace
 in /usr/local/bin/../lib/qemu/ui-spice-core.dylib
qemu-system-x86_64: -spice port=5901: spice support is disabled
```

After disabling plugin support I could run virtual machines locally through libvirt with full spice and qxl video support."""