michal-grzedzicki / rpms / rpm

Forked from rpms/rpm 4 months ago
Clone
c20b04
From f1634250587479d664b34b6de1a6546b2c2b9de5 Mon Sep 17 00:00:00 2001
c20b04
From: Florian Festi <ffesti@redhat.com>
c20b04
Date: Mon, 18 Jan 2021 15:02:34 +0100
c20b04
Subject: [PATCH] rpm2archive: Add more error handling
c20b04
c20b04
Cleanly error out if file can't be written instead of segfaulting
c20b04
c20b04
Resolves: #1091
c20b04
---
c20b04
 rpm2archive.c | 17 ++++++++++++-----
c20b04
 1 file changed, 12 insertions(+), 5 deletions(-)
c20b04
c20b04
diff --git a/rpm2archive.c b/rpm2archive.c
c20b04
index 646f1663d..15c5da016 100644
c20b04
--- a/rpm2archive.c
c20b04
+++ b/rpm2archive.c
c20b04
@@ -119,9 +119,14 @@ static int process_package(rpmts ts, char * filename)
c20b04
 
c20b04
     /* create archive */
c20b04
     a = archive_write_new();
c20b04
-    archive_write_add_filter_gzip(a);
c20b04
-    archive_write_set_format_pax_restricted(a);
c20b04
-
c20b04
+    if (archive_write_add_filter_gzip(a) != ARCHIVE_OK) {
c20b04
+	fprintf(stderr, "Error: Could not create gzip output filter\n");
c20b04
+	exit(EXIT_FAILURE);
c20b04
+    }
c20b04
+    if (archive_write_set_format_pax_restricted(a) != ARCHIVE_OK) {
c20b04
+	fprintf(stderr, "Error: Format pax restricted is not supported\n");
c20b04
+	exit(EXIT_FAILURE);
c20b04
+    }
c20b04
     if (!strcmp(filename, "-")) {
c20b04
 	if (isatty(STDOUT_FILENO)) {
c20b04
 	    fprintf(stderr, "Error: refusing to output archive data to a terminal.\n");
c20b04
@@ -130,9 +135,11 @@ static int process_package(rpmts ts, char * filename)
c20b04
 	archive_write_open_fd(a, STDOUT_FILENO);
c20b04
     } else {
c20b04
 	char * outname = rstrscat(NULL, filename, ".tgz", NULL);
c20b04
-	archive_write_open_filename(a, outname);
c20b04
+	if (archive_write_open_filename(a, outname) != ARCHIVE_OK) {
c20b04
+	    fprintf(stderr, "Error: Can't open output file: %s\n", outname);
c20b04
+	    exit(EXIT_FAILURE);
c20b04
+	}
c20b04
 	_free(outname);
c20b04
-	// XXX error handling
c20b04
     }
c20b04
 
c20b04
     entry = archive_entry_new();
c20b04
-- 
c20b04
2.38.1
c20b04