mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
A flaw was identified in the X.Org X serverâ\x80\x99s X Keyboard
(Xkb) extension where improper bounds checking in the XkbSetCompatMap()
function can cause an unsigned short overflow. If an attacker sends
specially crafted input data, the value calculation may overflow,
leading to memory corruption or a crash.
Reference:
https://nvd.nist.gov/vuln/detail/CVE-2025-62231
Upstream patch:
3baad99f9c
(From OE-Core rev: 97326be553f3fec8fbda63a8b38d18f656425b2c)
Signed-off-by: Yogita Urade <yogita.urade@windriver.com>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
72 lines
3.0 KiB
BlitzBasic
72 lines
3.0 KiB
BlitzBasic
SUMMARY = "XWayland is an X Server that runs under Wayland."
|
|
DESCRIPTION = "XWayland is an X Server running as a Wayland client, \
|
|
and thus is capable of displaying native X11 client applications in a \
|
|
Wayland compositor environment. The goal of XWayland is to facilitate \
|
|
the transition from X Window System to Wayland environments, providing \
|
|
a way to run unported applications in the meantime."
|
|
HOMEPAGE = "https://fedoraproject.org/wiki/Changes/XwaylandStandalone"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=5df87950af51ac2c5822094553ea1880"
|
|
|
|
SRC_URI = "https://www.x.org/archive/individual/xserver/xwayland-${PV}.tar.xz \
|
|
file://CVE-2024-9632.patch \
|
|
file://CVE-2025-26594-1.patch \
|
|
file://CVE-2025-26594-2.patch \
|
|
file://CVE-2025-26595.patch \
|
|
file://CVE-2025-26596.patch \
|
|
file://CVE-2025-26597.patch \
|
|
file://CVE-2025-26598.patch \
|
|
file://CVE-2025-26599-1.patch \
|
|
file://CVE-2025-26599-2.patch \
|
|
file://CVE-2025-26600.patch \
|
|
file://CVE-2025-26601-1.patch \
|
|
file://CVE-2025-26601-2.patch \
|
|
file://CVE-2025-26601-3.patch \
|
|
file://CVE-2025-26601-4.patch \
|
|
file://CVE-2025-49175.patch \
|
|
file://CVE-2025-49176-0001.patch \
|
|
file://CVE-2025-49176-0002.patch \
|
|
file://CVE-2025-49177.patch \
|
|
file://CVE-2025-49178.patch \
|
|
file://CVE-2025-49179.patch \
|
|
file://CVE-2025-49180.patch \
|
|
file://CVE-2025-62229.patch \
|
|
file://CVE-2025-62230-0001.patch \
|
|
file://CVE-2025-62230-0002.patch \
|
|
file://CVE-2025-62231.patch \
|
|
"
|
|
SRC_URI[sha256sum] = "33ec7ff2687a59faaa52b9b09aa8caf118e7ecb6aed8953f526a625ff9f4bd90"
|
|
|
|
UPSTREAM_CHECK_REGEX = "xwayland-(?P<pver>\d+(\.(?!90\d)\d+)+)\.tar"
|
|
|
|
inherit meson features_check pkgconfig
|
|
REQUIRED_DISTRO_FEATURES = "x11 opengl"
|
|
|
|
DEPENDS += "xorgproto xtrans pixman libxkbfile libxfont2 wayland wayland-native wayland-protocols libdrm libepoxy libxcvt"
|
|
|
|
OPENGL_PKGCONFIGS = "glx glamor dri3"
|
|
PACKAGECONFIG ??= "${XORG_CRYPTO} \
|
|
${@bb.utils.contains('DISTRO_FEATURES', 'opengl', '${OPENGL_PKGCONFIGS}', '', d)} \
|
|
"
|
|
PACKAGECONFIG[dri3] = "-Ddri3=true,-Ddri3=false,libxshmfence"
|
|
PACKAGECONFIG[glx] = "-Dglx=true,-Dglx=false,virtual/libgl virtual/libx11"
|
|
PACKAGECONFIG[glamor] = "-Dglamor=true,-Dglamor=false,libepoxy virtual/libgbm,libegl"
|
|
PACKAGECONFIG[unwind] = "-Dlibunwind=true,-Dlibunwind=false,libunwind"
|
|
PACKAGECONFIG[xinerama] = "-Dxinerama=true,-Dxinerama=false"
|
|
|
|
# Xorg requires a SHA1 implementation, pick one
|
|
XORG_CRYPTO ??= "openssl"
|
|
PACKAGECONFIG[openssl] = "-Dsha1=libcrypto,,openssl"
|
|
PACKAGECONFIG[nettle] = "-Dsha1=libnettle,,nettle"
|
|
PACKAGECONFIG[gcrypt] = "-Dsha1=libgcrypt,,libgcrypt"
|
|
|
|
do_install:append() {
|
|
# remove files not needed and clashing with xserver-xorg
|
|
rm -rf ${D}/${libdir}/xorg/
|
|
}
|
|
|
|
FILES:${PN} += "${libdir}/xorg/protocol.txt"
|
|
|
|
RDEPENDS:${PN} += "xkbcomp"
|