1SUMMARY = "Fast open source processor emulator"
2DESCRIPTION = "QEMU is a hosted virtual machine monitor: it emulates the \
3machine's processor through dynamic binary translation and provides a set \
4of different hardware and device models for the machine, enabling it to run \
5a variety of guest operating systems"
6HOMEPAGE = "http://qemu.org"
7LICENSE = "GPLv2 & LGPLv2.1"
8
9RDEPENDS:${PN}-ptest = "bash"
10
11require qemu-targets.inc
12inherit pkgconfig ptest
13
14LIC_FILES_CHKSUM = "file://COPYING;md5=441c28d2cf86e15a37fa47e15a72fbac \
15                    file://COPYING.LIB;endline=24;md5=8c5efda6cf1e1b03dcfd0e6c0d271c7f"
16
17SRC_URI = "https://download.qemu.org/${BPN}-${PV}.tar.xz \
18           file://powerpc_rom.bin \
19           file://run-ptest \
20           file://0001-qemu-Add-missing-wacom-HID-descriptor.patch \
21           file://0003-qemu-Add-addition-environment-space-to-boot-loader-q.patch \
22           file://0004-qemu-disable-Valgrind.patch \
23           file://0006-chardev-connect-socket-to-a-spawned-command.patch \
24           file://0007-apic-fixup-fallthrough-to-PIC.patch \
25           file://0010-configure-Add-pkg-config-handling-for-libgcrypt.patch \
26           file://0001-Add-enable-disable-udev.patch \
27           file://0001-qemu-Do-not-include-file-if-not-exists.patch \
28           file://mmap2.patch \
29           file://determinism.patch \
30           file://0001-tests-meson.build-use-relative-path-to-refer-to-file.patch \
31           file://0001-configure-fix-detection-of-gdbus-codegen.patch \
32           file://0001-vhost-user-gpu-fix-memory-disclosure-in-virgl_cmd_ge.patch \
33           file://0002-vhost-user-gpu-fix-resource-leak-in-vg_resource_crea.patch \
34           file://0003-vhost-user-gpu-fix-memory-leak-in-vg_resource_attach.patch \
35           file://0004-vhost-user-gpu-fix-memory-leak-while-calling-vg_reso.patch \
36           file://0005-vhost-user-gpu-fix-memory-leak-in-virgl_cmd_resource.patch \
37           file://0006-vhost-user-gpu-fix-memory-leak-in-virgl_resource_att.patch \
38           file://0007-vhost-user-gpu-fix-OOB-write-in-virgl_cmd_get_capset.patch \
39           file://0001-linux-user-Tag-vsx-with-ieee128-fpbits.patch \
40           file://CVE-2021-3527-1.patch \
41           file://CVE-2021-3527-2.patch \
42           "
43UPSTREAM_CHECK_REGEX = "qemu-(?P<pver>\d+(\.\d+)+)\.tar"
44
45SRC_URI[sha256sum] = "87bc1a471ca24b97e7005711066007d443423d19aacda3d442558ae032fa30b9"
46
47SRC_URI:append:class-target = " file://cross.patch"
48SRC_URI:append:class-nativesdk = " file://cross.patch"
49
50# Applies against virglrender < 0.6.0 and not qemu itself
51CVE_CHECK_WHITELIST += "CVE-2017-5957"
52
53# The VNC server can expose host files uder some circumstances. We don't
54# enable it by default.
55CVE_CHECK_WHITELIST += "CVE-2007-0998"
56
57# 'The issues identified by this CVE were determined to not constitute a vulnerability.'
58# https://bugzilla.redhat.com/show_bug.cgi?id=1609015#c11
59CVE_CHECK_WHITELIST += "CVE-2018-18438"
60
61COMPATIBLE_HOST:mipsarchn32 = "null"
62COMPATIBLE_HOST:mipsarchn64 = "null"
63
64# Per https://lists.nongnu.org/archive/html/qemu-devel/2020-09/msg03873.html
65# upstream states qemu doesn't work without optimization
66DEBUG_BUILD = "0"
67
68do_install:append() {
69    # Prevent QA warnings about installed ${localstatedir}/run
70    if [ -d ${D}${localstatedir}/run ]; then rmdir ${D}${localstatedir}/run; fi
71}
72
73do_install_ptest() {
74	cp -rL ${B}/tests ${D}${PTEST_PATH}
75	find ${D}${PTEST_PATH}/tests -type f -name "*.[Sshcodp]" | xargs -i rm -rf {}
76
77	# Don't check the file genreated by configure
78	sed -i -e "1s,#!/usr/bin/bash,#!${base_bindir}/bash," ${D}${PTEST_PATH}/tests/data/acpi/disassemle-aml.sh
79
80	# Strip the paths from the QEMU variable, we can use PATH
81	sed -i -e "s#^QEMU=.*/qemu-#QEMU=qemu-#g" ${D}${PTEST_PATH}/tests/tcg/*.mak
82}
83
84# QEMU_TARGETS is overridable variable
85QEMU_TARGETS ?= "arm aarch64 i386 mips mipsel mips64 mips64el ppc ppc64 ppc64le riscv32 riscv64 sh4 x86_64"
86
87EXTRA_OECONF = " \
88    --prefix=${prefix} \
89    --bindir=${bindir} \
90    --includedir=${includedir} \
91    --libdir=${libdir} \
92    --mandir=${mandir} \
93    --datadir=${datadir} \
94    --docdir=${docdir}/${BPN} \
95    --sysconfdir=${sysconfdir} \
96    --libexecdir=${libexecdir} \
97    --localstatedir=${localstatedir} \
98    --with-suffix=${BPN} \
99    --disable-strip \
100    --disable-werror \
101    --extra-cflags='${CFLAGS}' \
102    --extra-ldflags='${LDFLAGS}' \
103    --with-git=/bin/false \
104    --with-git-submodules=ignore \
105    --meson=meson \
106    ${PACKAGECONFIG_CONFARGS} \
107    "
108
109export LIBTOOL="${HOST_SYS}-libtool"
110
111B = "${WORKDIR}/build"
112
113#EXTRA_OECONF_append = " --python=${HOSTTOOLS_DIR}/python3"
114
115do_configure:prepend:class-native() {
116	# Append build host pkg-config paths for native target since the host may provide sdl
117	BHOST_PKGCONFIG_PATH=$(PATH=/usr/bin:/bin pkg-config --variable pc_path pkg-config || echo "")
118	if [ ! -z "$BHOST_PKGCONFIG_PATH" ]; then
119		export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$BHOST_PKGCONFIG_PATH
120	fi
121}
122
123do_configure() {
124    ${S}/configure ${EXTRA_OECONF}
125}
126do_configure[cleandirs] += "${B}"
127
128do_install () {
129	export STRIP=""
130	oe_runmake 'DESTDIR=${D}' install
131}
132
133# The following fragment will create a wrapper for qemu-mips user emulation
134# binary in order to work around a segmentation fault issue. Basically, by
135# default, the reserved virtual address space for 32-on-64 bit is set to 4GB.
136# This will trigger a MMU access fault in the virtual CPU. With this change,
137# the qemu-mips works fine.
138# IMPORTANT: This piece needs to be removed once the root cause is fixed!
139do_install:append() {
140	if [ -e "${D}/${bindir}/qemu-mips" ]; then
141		create_wrapper ${D}/${bindir}/qemu-mips \
142			QEMU_RESERVED_VA=0x0
143	fi
144}
145# END of qemu-mips workaround
146
147make_qemu_wrapper() {
148        gdk_pixbuf_module_file=`pkg-config --variable=gdk_pixbuf_cache_file gdk-pixbuf-2.0`
149
150        for tool in `ls ${D}${bindir}/qemu-system-*`; do
151                create_wrapper $tool \
152                        GDK_PIXBUF_MODULE_FILE=$gdk_pixbuf_module_file \
153                        FONTCONFIG_PATH=/etc/fonts \
154                        GTK_THEME=Adwaita
155        done
156}
157
158# Disable kvm/virgl/mesa on targets that do not support it
159PACKAGECONFIG:remove:darwin = "kvm virglrenderer glx gtk+"
160PACKAGECONFIG:remove:mingw32 = "kvm virglrenderer glx gtk+"
161
162PACKAGECONFIG[sdl] = "--enable-sdl,--disable-sdl,libsdl2"
163PACKAGECONFIG[virtfs] = "--enable-virtfs --enable-attr --enable-cap-ng,--disable-virtfs,libcap-ng attr,"
164PACKAGECONFIG[aio] = "--enable-linux-aio,--disable-linux-aio,libaio,"
165PACKAGECONFIG[xfs] = "--enable-xfsctl,--disable-xfsctl,xfsprogs,"
166PACKAGECONFIG[xen] = "--enable-xen,--disable-xen,xen-tools,xen-tools-libxenstore xen-tools-libxenctrl xen-tools-libxenguest"
167PACKAGECONFIG[vnc-sasl] = "--enable-vnc --enable-vnc-sasl,--disable-vnc-sasl,cyrus-sasl,"
168PACKAGECONFIG[vnc-jpeg] = "--enable-vnc --enable-vnc-jpeg,--disable-vnc-jpeg,jpeg,"
169PACKAGECONFIG[vnc-png] = "--enable-vnc --enable-vnc-png,--disable-vnc-png,libpng,"
170PACKAGECONFIG[libcurl] = "--enable-curl,--disable-curl,curl,"
171PACKAGECONFIG[nss] = "--enable-smartcard,--disable-smartcard,nss,"
172PACKAGECONFIG[curses] = "--enable-curses,--disable-curses,ncurses,"
173PACKAGECONFIG[gtk+] = "--enable-gtk,--disable-gtk,gtk+3 gettext-native"
174PACKAGECONFIG[vte] = "--enable-vte,--disable-vte,vte gettext-native"
175PACKAGECONFIG[libcap-ng] = "--enable-cap-ng,--disable-cap-ng,libcap-ng,"
176PACKAGECONFIG[ssh] = "--enable-libssh,--disable-libssh,libssh,"
177PACKAGECONFIG[gcrypt] = "--enable-gcrypt,--disable-gcrypt,libgcrypt,"
178PACKAGECONFIG[nettle] = "--enable-nettle,--disable-nettle,nettle"
179PACKAGECONFIG[libusb] = "--enable-libusb,--disable-libusb,libusb1"
180PACKAGECONFIG[fdt] = "--enable-fdt,--disable-fdt,dtc"
181PACKAGECONFIG[alsa] = "--audio-drv-list='oss alsa',,alsa-lib"
182PACKAGECONFIG[glx] = "--enable-opengl,--disable-opengl,virtual/libgl"
183PACKAGECONFIG[lzo] = "--enable-lzo,--disable-lzo,lzo"
184PACKAGECONFIG[numa] = "--enable-numa,--disable-numa,numactl"
185PACKAGECONFIG[gnutls] = "--enable-gnutls,--disable-gnutls,gnutls"
186PACKAGECONFIG[bzip2] = "--enable-bzip2,--disable-bzip2,bzip2"
187PACKAGECONFIG[libiscsi] = "--enable-libiscsi,--disable-libiscsi"
188PACKAGECONFIG[kvm] = "--enable-kvm,--disable-kvm"
189PACKAGECONFIG[virglrenderer] = "--enable-virglrenderer,--disable-virglrenderer,virglrenderer"
190# spice will be in meta-networking layer
191PACKAGECONFIG[spice] = "--enable-spice,--disable-spice,spice"
192# usbredir will be in meta-networking layer
193PACKAGECONFIG[usb-redir] = "--enable-usb-redir,--disable-usb-redir,usbredir"
194PACKAGECONFIG[snappy] = "--enable-snappy,--disable-snappy,snappy"
195PACKAGECONFIG[glusterfs] = "--enable-glusterfs,--disable-glusterfs,glusterfs"
196PACKAGECONFIG[xkbcommon] = "--enable-xkbcommon,--disable-xkbcommon,libxkbcommon"
197PACKAGECONFIG[libudev] = "--enable-libudev,--disable-libudev,eudev"
198PACKAGECONFIG[libxml2] = "--enable-libxml2,--disable-libxml2,libxml2"
199PACKAGECONFIG[attr] = "--enable-attr,--disable-attr,attr,"
200PACKAGECONFIG[rbd] = "--enable-rbd,--disable-rbd,ceph,ceph"
201PACKAGECONFIG[vhost] = "--enable-vhost-net,--disable-vhost-net,,"
202PACKAGECONFIG[ust] = "--enable-trace-backend=ust,--enable-trace-backend=nop,lttng-ust,"
203PACKAGECONFIG[pie] = "--enable-pie,--disable-pie,,"
204PACKAGECONFIG[seccomp] = "--enable-seccomp,--disable-seccomp,libseccomp"
205
206INSANE_SKIP:${PN} = "arch"
207
208FILES:${PN} += "${datadir}/icons"
209