From: Chris Lalancette <clalance@redhat.com>
To: xen-devel@lists.xensource.com
Cc: jdenemar@redhat.com
Subject: [PATCH]: Minor tools bzip2/lzma decompression fixes
Date: Fri, 20 Nov 2009 14:59:16 +0100 [thread overview]
Message-ID: <4B06A0B4.2020409@redhat.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 490 bytes --]
All,
The attached patch cleans up a few minor problems in the bzip2/lzma
decompression support, pointed out by Jiri in internal review. In
particular, it fixes a possible memory leak on realloc() error, it fixes
a shifting typo, and it changes the xc_dom_printf()'s to be a bit clearly
about which compression routine is in-use.
Developed and tested against the RHEL-5 tools, but applies without fuzz
to the xen-unstable tools.
Signed-off-by: Chris Lalancette <clalance@redhat.com>
[-- Attachment #2: xen-decompress-fixes.patch --]
[-- Type: text/plain, Size: 4198 bytes --]
diff --git a/tools/libxc/xc_dom_bzimageloader.c b/tools/libxc/xc_dom_bzimageloader.c
index 424b1ad..7378239 100644
--- a/tools/libxc/xc_dom_bzimageloader.c
+++ b/tools/libxc/xc_dom_bzimageloader.c
@@ -31,6 +31,7 @@ static int xc_try_bzip2_decode(
bz_stream stream;
int ret;
char *out_buf;
+ char *tmp_buf;
int retval = -1;
int outsize;
uint64_t total;
@@ -42,7 +43,7 @@ static int xc_try_bzip2_decode(
ret = BZ2_bzDecompressInit(&stream, 0, 0);
if ( ret != BZ_OK )
{
- xc_dom_printf("Error initting bz2 stream\n");
+ xc_dom_printf("BZIP2: Error initting stream\n");
return -1;
}
@@ -54,7 +55,7 @@ static int xc_try_bzip2_decode(
out_buf = malloc(outsize);
if ( out_buf == NULL )
{
- xc_dom_printf("Failed to alloc memory\n");
+ xc_dom_printf("BZIP2: Failed to alloc memory\n");
goto bzip2_cleanup;
}
@@ -69,12 +70,14 @@ static int xc_try_bzip2_decode(
ret = BZ2_bzDecompress(&stream);
if ( (stream.avail_out == 0) || (ret != BZ_OK) )
{
- out_buf = realloc(out_buf, outsize * 2);
- if ( out_buf == NULL )
+ tmp_buf = realloc(out_buf, outsize * 2);
+ if ( tmp_buf == NULL )
{
- xc_dom_printf("Failed to realloc memory\n");
- break;
+ xc_dom_printf("BZIP2: Failed to realloc memory\n");
+ free(out_buf);
+ goto bzip2_cleanup;
}
+ out_buf = tmp_buf;
stream.next_out = out_buf + outsize;
stream.avail_out = (outsize * 2) - outsize;
@@ -85,15 +88,15 @@ static int xc_try_bzip2_decode(
{
if ( ret == BZ_STREAM_END )
{
- xc_dom_printf("Saw data stream end\n");
+ xc_dom_printf("BZIP2: Saw data stream end\n");
retval = 0;
break;
}
- xc_dom_printf("BZIP error\n");
+ xc_dom_printf("BZIP2: error\n");
}
}
- total = (stream.total_out_hi32 << 31) | stream.total_out_lo32;
+ total = (((uint64_t)stream.total_out_hi32) << 32) | stream.total_out_lo32;
xc_dom_printf("%s: BZIP2 decompress OK, 0x%zx -> 0x%lx\n",
__FUNCTION__, *size, (long unsigned int) total);
@@ -151,6 +154,7 @@ static int xc_try_lzma_decode(
lzma_ret ret;
lzma_action action = LZMA_RUN;
unsigned char *out_buf;
+ unsigned char *tmp_buf;
int retval = -1;
int outsize;
const char *msg;
@@ -158,7 +162,7 @@ static int xc_try_lzma_decode(
ret = lzma_alone_decoder(&stream, physmem() / 3);
if ( ret != LZMA_OK )
{
- xc_dom_printf("Failed to init lzma stream decoder\n");
+ xc_dom_printf("LZMA: Failed to init stream decoder\n");
return -1;
}
@@ -170,7 +174,7 @@ static int xc_try_lzma_decode(
out_buf = malloc(outsize);
if ( out_buf == NULL )
{
- xc_dom_printf("Failed to alloc memory\n");
+ xc_dom_printf("LZMA: Failed to alloc memory\n");
goto lzma_cleanup;
}
@@ -185,12 +189,14 @@ static int xc_try_lzma_decode(
ret = lzma_code(&stream, action);
if ( (stream.avail_out == 0) || (ret != LZMA_OK) )
{
- out_buf = realloc(out_buf, outsize * 2);
- if ( out_buf == NULL )
+ tmp_buf = realloc(out_buf, outsize * 2);
+ if ( tmp_buf == NULL )
{
- xc_dom_printf("Failed to realloc memory\n");
- break;
+ xc_dom_printf("LZMA: Failed to realloc memory\n");
+ free(out_buf);
+ goto lzma_cleanup;
}
+ out_buf = tmp_buf;
stream.next_out = out_buf + outsize;
stream.avail_out = (outsize * 2) - outsize;
@@ -201,7 +207,7 @@ static int xc_try_lzma_decode(
{
if ( ret == LZMA_STREAM_END )
{
- xc_dom_printf("Saw data stream end\n");
+ xc_dom_printf("LZMA: Saw data stream end\n");
retval = 0;
break;
}
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
reply other threads:[~2009-11-20 13:59 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4B06A0B4.2020409@redhat.com \
--to=clalance@redhat.com \
--cc=jdenemar@redhat.com \
--cc=xen-devel@lists.xensource.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.