lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20250131202453.48174-1-jiashengjiangcool@gmail.com>
Date: Fri, 31 Jan 2025 20:24:53 +0000
From: Jiasheng Jiang <jiashengjiangcool@...il.com>
To: phillip@...ashfs.org.uk
Cc: linux-kernel@...r.kernel.org,
	Jiasheng Jiang <jiashengjiangcool@...il.com>
Subject: [PATCH] Squashfs: Add check for cache->entry to avoid NULL pointer dereference

Add a check for "cache->entry". Otherwise, if the allocation for
"cache->entry" fails, "cache->entry[i].data" will cause a NULL pointer
dereference.

Fixes: f400e12656ab ("Squashfs: cache operations")
Signed-off-by: Jiasheng Jiang <jiashengjiangcool@...il.com>
---
 fs/squashfs/cache.c | 17 ++++++++++-------
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/fs/squashfs/cache.c b/fs/squashfs/cache.c
index 4db0d2b0aab8..5a3081583ea9 100644
--- a/fs/squashfs/cache.c
+++ b/fs/squashfs/cache.c
@@ -201,16 +201,19 @@ void squashfs_cache_delete(struct squashfs_cache *cache)
 	if (cache == NULL)
 		return;
 
-	for (i = 0; i < cache->entries; i++) {
-		if (cache->entry[i].data) {
-			for (j = 0; j < cache->pages; j++)
-				kfree(cache->entry[i].data[j]);
-			kfree(cache->entry[i].data);
+	if (cache->entry) {
+		for (i = 0; i < cache->entries; i++) {
+			if (cache->entry[i].data) {
+				for (j = 0; j < cache->pages; j++)
+					kfree(cache->entry[i].data[j]);
+				kfree(cache->entry[i].data);
+			}
+			kfree(cache->entry[i].actor);
 		}
-		kfree(cache->entry[i].actor);
+
+		kfree(cache->entry);
 	}
 
-	kfree(cache->entry);
 	kfree(cache);
 }
 
-- 
2.25.1


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ