From nobody Fri Apr 3 06:28:33 2026 Received: from air.basealt.ru (air.basealt.ru [193.43.8.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id A301C2D7384; Wed, 18 Feb 2026 01:05:04 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=193.43.8.18 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771376707; cv=none; b=G8F9WirA72gTyyluNNryETV2NH5n0yrgWirLCpX21F1PMUlN3KFVEIVhPdugrAx90Gdx7ZbuuiFVLOQplCch881+ZA9+1YmPZeIZEVWfua7CRC5dCEfTNXzhqYioL641jA+Eo7dtPsh78Y2NHARRNPzPFHzg9W1LL//kX8dvzYU= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771376707; c=relaxed/simple; bh=VQGlgbWOd6hgVjz/scuAbiwqxES4rmBFm3AcIJWso/8=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=nmOrXq4p1SA0TL5ztSYagWzG8/dOiVRw0C8/8bSh5shBtmSkGuqCenwnrzxys+/MiusS5COjCrENT/hwu3i+KuArbD85jfmwBCcU3O4crZi6MLwWjINF2vUMhi5Et/udw0RFI7VnmXv6PgC+rPYNmg2wnOLFNWlbOJ7LoyMKz2Q= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=altlinux.org; spf=pass smtp.mailfrom=altlinux.org; arc=none smtp.client-ip=193.43.8.18 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=altlinux.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=altlinux.org Received: from altlinux.ipa.basealt.ru (unknown [193.43.11.2]) (Authenticated sender: kovalevvv) by air.basealt.ru (Postfix) with ESMTPSA id 3C7BF233AA; Wed, 18 Feb 2026 03:55:25 +0300 (MSK) From: Vasiliy Kovalev To: Thomas Winischhofer , Greg Kroah-Hartman Cc: linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org, lvc-project@linuxtesting.org, kovalev@altlinux.org Subject: [PATCH 1/2] USB: sisusbvga: Fix integer overflow in sisusb_clear_vram Date: Wed, 18 Feb 2026 03:55:22 +0300 Message-Id: <20260218005523.1259725-2-kovalev@altlinux.org> X-Mailer: git-send-email 2.33.8 In-Reply-To: <20260218005523.1259725-1-kovalev@altlinux.org> References: <20260218005523.1259725-1-kovalev@altlinux.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" The boundary check in sisusb_clear_vram(): if (address + length > sisusb->vrambase + sisusb->vramsize) length =3D sisusb->vrambase + sisusb->vramsize - address; is subject to unsigned 32-bit integer overflow. When address is close to UINT32_MAX and length is non-trivial, their sum wraps around and the guard evaluates incorrectly, allowing the check to be bypassed. The overflow condition requires length > UINT32_MAX - address. Since address belongs to [vrambase; vrambase + vramsize) where vrambase is 0xd0000000, and length comes from userspace via SUCMD_CLRSCR as a 24-bit value (max 0xFFFFFF), overflow is only reachable when sisusb->vramsize exceeds 1 GiB. A compromised USB device can return an arbitrary value for sisusb->vramsize via SR[0x14], making this condition reachable. Use check_add_overflow() to detect the overflow explicitly and return 1. This ensures the driver correctly rejects invalid parameters instead of proceeding with wrapped-around values. Found by Linux Verification Center (linuxtesting.org) with Svace. Tested with 'USB Gadget Tests'[1]: $ TEST=3Dsisusbvga-fops-svace-int-overflow $ echo $TEST > tests/list.txt && make && sudo ./check.sh [1] Link: https://github.com/kovalev0/usb-gadget-tests Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2") Cc: Signed-off-by: Vasiliy Kovalev --- drivers/usb/misc/sisusbvga/sisusbvga.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/drivers/usb/misc/sisusbvga/sisusbvga.c b/drivers/usb/misc/sisu= sbvga/sisusbvga.c index febf34f9f049..89d566d192aa 100644 --- a/drivers/usb/misc/sisusbvga/sisusbvga.c +++ b/drivers/usb/misc/sisusbvga/sisusbvga.c @@ -1301,6 +1301,7 @@ static int sisusb_clear_vram(struct sisusb_usb_data *= sisusb, { int ret, i; ssize_t j; + u32 end_addr; =20 if (address < sisusb->vrambase) return 1; @@ -1308,7 +1309,10 @@ static int sisusb_clear_vram(struct sisusb_usb_data = *sisusb, if (address >=3D sisusb->vrambase + sisusb->vramsize) return 1; =20 - if (address + length > sisusb->vrambase + sisusb->vramsize) + if (check_add_overflow(address, (u32)length, &end_addr)) + return 1; + + if (end_addr > sisusb->vrambase + sisusb->vramsize) length =3D sisusb->vrambase + sisusb->vramsize - address; =20 if (length <=3D 0) --=20 2.50.1