]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Don't cast off_t to 32-bit type for output, bug fix
authorPeter Eisentraut <peter@eisentraut.org>
Wed, 1 Jul 2026 07:39:42 +0000 (09:39 +0200)
committerPeter Eisentraut <peter@eisentraut.org>
Wed, 1 Jul 2026 07:39:42 +0000 (09:39 +0200)
off_t is most likely a 64-bit integer, so casting it to a 32-bit type
for output could lose data.  There are more issues like this in the
tree, but this is an instance where this could actually happen in
practice, since base backups are routinely larger than 4 GB.  So this
is separated out as a bug fix.

Reviewed-by: Heikki Linnakangas <hlinnaka@iki.fi>
Discussion: https://www.postgresql.org/message-id/flat/20ce62fa-47fc-457b-b504-12f3c1651726%40eisentraut.org

src/backend/backup/basebackup_server.c

index 0d44a148f017cd27df793c6cf5e1a4ccfcdfc0d0..3d44bf71d19f82a3578183a86491c654ef6b508a 100644 (file)
@@ -176,9 +176,9 @@ bbsink_server_archive_contents(bbsink *sink, size_t len)
                /* short write: complain appropriately */
                ereport(ERROR,
                                (errcode(ERRCODE_DISK_FULL),
-                                errmsg("could not write file \"%s\": wrote only %d of %zu bytes at offset %u",
+                                errmsg("could not write file \"%s\": wrote only %d of %zu bytes at offset %lld",
                                                FilePathName(mysink->file),
-                                               nbytes, len, (unsigned) mysink->filepos),
+                                               nbytes, len, (long long) mysink->filepos),
                                 errhint("Check free disk space.")));
        }
 
@@ -269,9 +269,9 @@ bbsink_server_manifest_contents(bbsink *sink, size_t len)
                /* short write: complain appropriately */
                ereport(ERROR,
                                (errcode(ERRCODE_DISK_FULL),
-                                errmsg("could not write file \"%s\": wrote only %d of %zu bytes at offset %u",
+                                errmsg("could not write file \"%s\": wrote only %d of %zu bytes at offset %lld",
                                                FilePathName(mysink->file),
-                                               nbytes, len, (unsigned) mysink->filepos),
+                                               nbytes, len, (long long) mysink->filepos),
                                 errhint("Check free disk space.")));
        }