-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
zlib: decompression throw on truncated input
Check for unexpected end-of-file error when decompressing. If the output buffer still has space after decompressing and deflate returned Z_OK or Z_BUF_ERROR - that means unexpected end-of-file. Added test-zlib-truncated.js for the case of truncated input. Fixed the zlib dictionary test to not end the inflate stream on a truncated output (no crc) of deflate Fixes: #2043 PR-URL: #2595 Reviewed-By: Trevor Norris <[email protected]>
- Loading branch information
Showing
3 changed files
with
102 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
'use strict'; | ||
// tests zlib streams with truncated compressed input | ||
|
||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const zlib = require ('zlib'); | ||
|
||
const inputString = 'ΩΩLorem ipsum dolor sit amet, consectetur adipiscing el' + | ||
'it. Morbi faucibus, purus at gravida dictum, libero arcu convallis la' + | ||
'cus, in commodo libero metus eu nisi. Nullam commodo, neque nec porta' + | ||
' placerat, nisi est fermentum augue, vitae gravida tellus sapien sit ' + | ||
'amet tellus. Aenean non diam orci. Proin quis elit turpis. Suspendiss' + | ||
'e non diam ipsum. Suspendisse nec ullamcorper odio. Vestibulum arcu m' + | ||
'i, sodales non suscipit id, ultrices ut massa. Sed ac sem sit amet ar' + | ||
'cu malesuada fermentum. Nunc sed. '; | ||
|
||
[ | ||
{ comp: 'gzip', decomp: 'gunzip', decompSync: 'gunzipSync' }, | ||
{ comp: 'gzip', decomp: 'unzip', decompSync: 'unzipSync' }, | ||
{ comp: 'deflate', decomp: 'inflate', decompSync: 'inflateSync' }, | ||
{ comp: 'deflateRaw', decomp: 'inflateRaw', decompSync: 'inflateRawSync' } | ||
].forEach(function(methods) { | ||
zlib[methods.comp](inputString, function(err, compressed) { | ||
assert(!err); | ||
let truncated = compressed.slice(0, compressed.length / 2); | ||
|
||
// sync sanity | ||
assert.doesNotThrow(function() { | ||
let decompressed = zlib[methods.decompSync](compressed); | ||
assert.equal(decompressed, inputString); | ||
}); | ||
|
||
// async sanity | ||
zlib[methods.decomp](compressed, function(err, result) { | ||
assert.ifError(err); | ||
assert.equal(result, inputString); | ||
}); | ||
|
||
// sync truncated input test | ||
assert.throws(function() { | ||
zlib[methods.decompSync](truncated); | ||
}, /unexpected end of file/); | ||
|
||
// async truncated input test | ||
zlib[methods.decomp](truncated, function(err, result) { | ||
assert(/unexpected end of file/.test(err.message)); | ||
}); | ||
}); | ||
}); |