[PATCH v2 1/2] trace-cmd record: Fix compression on big-endian systems

Ilya Leoshkevich <[email protected]> Sat, 12 Apr 2025 00:49:25 +0200
Newsgroups org.kernel.vger.linux-trace-devel
Message-ID <[email protected]>
trace-cmd report prints nothing on s390x when compression is used.

The reason is that the code treats size_t pointers as int pointers when
serializing size_t values into 32-bit on-disk fields, which works only
on little-endian systems.

Fix serialization by copying size_t values into int values first.
While at it, add overflow checks.

Fixes: 176bc1f14419 ("trace-cmd record: Fix compression when files are greater than 2GB")
Signed-off-by: Ilya Leoshkevich <[email protected]>
---
 lib/trace-cmd/trace-compress.c | 25 ++++++++++++++++++++-----
 1 file changed, 20 insertions(+), 5 deletions(-)

diff --git a/lib/trace-cmd/trace-compress.c b/lib/trace-cmd/trace-compress.c
index 03215ad1..e18af3dd 100644
--- a/lib/trace-cmd/trace-compress.c
+++ b/lib/trace-cmd/trace-compress.c
@@ -7,6 +7,7 @@
 #include <sys/time.h>
 #include <fcntl.h>
 #include <errno.h>
+#include <limits.h>
 #include <unistd.h>
 
 #include "trace-cmd-private.h"
@@ -77,6 +78,16 @@ static ssize_t  write_fd(int fd, const void *data, size_t size)
 	return tot;
 }
 
+static int read_size_val(struct tep_handle *tep, size_t size, int *endian4)
+{
+	if (size > UINT_MAX)
+		return -1;
+
+	*endian4 = size;
+	*endian4 = tep_read_number(tep, endian4, 4);
+	return 0;
+}
+
 static ssize_t  do_write(struct tracecmd_compression *handle,
 			  const void *data, size_t size)
 {
@@ -331,7 +342,8 @@ int tracecmd_compress_block(struct tracecmd_compression *handle)
 		goto out;
 
 	/* Write uncompressed data size */
-	endian4 = tep_read_number(handle->tep, &handle->pointer, 4);
+	if (read_size_val(handle->tep, handle->pointer, &endian4) < 0)
+		goto out;
 	ret = do_write(handle, &endian4, 4);
 	if (ret != 4) {
 		ret = -1;
@@ -735,13 +747,15 @@ int tracecmd_compress_copy_from(struct tracecmd_compression *handle, int fd, int
 			}
 			size = ret;
 			/* Write compressed data size */
-			endian4 = tep_read_number(handle->tep, &size, 4);
+			if (read_size_val(handle->tep, size, &endian4) < 0)
+				break;
 			ret = write_fd(handle->fd, &endian4, 4);
 			if (ret != 4)
 				break;
 
 			/* Write uncompressed data size */
-			endian4 = tep_read_number(handle->tep, &all, 4);
+			if (read_size_val(handle->tep, all, &endian4) < 0)
+				break;
 			ret = write_fd(handle->fd, &endian4, 4);
 			if (ret != 4)
 				break;
@@ -763,9 +777,10 @@ int tracecmd_compress_copy_from(struct tracecmd_compression *handle, int fd, int
 	if (lseek(handle->fd, offset, SEEK_SET) == (off_t)-1)
 		return -1;
 
-	endian4 = tep_read_number(handle->tep, &chunks, 4);
+	if (read_size_val(handle->tep, chunks, &endian4) < 0)
+		return -1;
 	/* write chunks count*/
-	write_fd(handle->fd, &chunks, 4);
+	write_fd(handle->fd, &endian4, 4);
 	end_offset = lseek(handle->fd, 0, SEEK_END);
 	if (end_offset == (off_t)-1)
 		return -1;
-- 
2.49.0