vfio-native-qemu
The git source is from a personal/project host (archworks.co) with SKIP'd checksum, but it only provides patch files applied to the official QEMU tarball (which has a verified sha256sum); the worst case of a swapped git repo is malicious patches applied to QEMU source, which is a real but limited supply-chain concern typical of any AUR patch-set package rather than clear malice.
Triggered rules
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
llm_review
The static rules flagged this MEDIUM, but an AI model (anthropic/claude-sonnet-4.6) reviewed the full PKGBUILD and judged it LOW (confidence 75%): The git source is from a personal/project host (archworks.co) with SKIP'd checksum, but it only provides patch files applied to the official QEMU tarball (which has a verified sha256sum); the worst case of a swapped git repo is malicious patches applied to QEMU source, which is a real but limited supply-chain concern typical of any AUR patch-set package rather than clear malice.
1 higher static finding superseded - not the current verdict (shown for transparency)
source_untrusted_domain
One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).
-
PKGBUILD:25
"https://download.qemu.org/qemu-${_qver}.tar.xz")
PKGBUILD
1 offending line(s) highlighted# Maintainer: Sandwich <sandwich@archworks.co>
#
# QEMU 11.1.1 with the platform-identity patches from vfio-native, installed
# under /opt/qemu-native so the system qemu package is never touched. Clears
# FIRMWARE, VIRTUAL_DISK, DISK_SERIAL, PCI_VENDOR, DEVICES, QEMU_FW_CFG and
# QEMU_USB. Only the x86_64 system emulator is built.
pkgname=vfio-native-qemu
_qver=11.1.1
_tag=1.1.0
pkgver=${_qver}
pkgrel=1
pkgdesc="QEMU ${_qver} with the vfio-native platform-identity patches, in /opt/qemu-native"
arch=('x86_64')
url="https://git.archworks.co/sandwich/vfio-native"
license=('GPL-2.0-only')
depends=('glib2' 'pixman' 'zlib' 'zstd' 'libaio' 'liburing' 'libcap-ng' 'libseccomp'
'gnutls' 'nettle' 'libslirp' 'spice' 'spice-protocol' 'libepoxy' 'virglrenderer'
'mesa' 'libjpeg-turbo' 'libpng' 'libusb' 'usbredir' 'numactl' 'libxkbcommon'
'libgcrypt' 'libtasn1' 'lzo' 'snappy' 'pipewire')
makedepends=('git' 'meson' 'ninja' 'python')
optdepends=('vfio-native: the setup tooling that points a domain at this build')
options=('!strip')
source=("git+${url}.git#tag=v${_tag}"
"https://download.qemu.org/qemu-${_qver}.tar.xz")
sha256sums=('SKIP'
'079ffbff8a7111bbc89022107cbabf3bbfd614d5fc9d7cc675991196aca12482')
prepare() {
cd "qemu-${_qver}"
for p in "${srcdir}"/vfio-native/patches/qemu/0[1-8]-*.patch; do
msg2 "applying ${p##*/}"
patch -Np1 --no-backup-if-mismatch -i "$p"
done
}
build() {
cd "qemu-${_qver}"
mkdir -p build && cd build
../configure --prefix=/opt/qemu-native --target-list=x86_64-softmmu \
--enable-kvm --enable-spice --enable-opengl --enable-virglrenderer \
--enable-tpm --enable-slirp --disable-docs --disable-werror --disable-user \
--disable-gtk --disable-sdl
ninja
}
package() {
cd "qemu-${_qver}/build"
DESTDIR="${pkgdir}" ninja install
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-06 00:17:06 | Low | 3 |
| 2026-09-06 00:03:06 | Low | 3 |
| 2026-09-06 00:01:42 | Medium | 2 |