diff options
author | daurnimator <quae@daurnimator.com> | 2017-11-12 15:31:37 +1100 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-11-12 15:34:23 +1100 |
commit | 902d145793959ce0347b202303f8cb34223e6b04 (patch) | |
tree | 85d737a13511c01446626fa97cec97ecdfee0503 | |
parent | be782a0b0313d3b23473b6fd08e08ffea20156be (diff) | |
download | fengari-902d145793959ce0347b202303f8cb34223e6b04.tar.gz fengari-902d145793959ce0347b202303f8cb34223e6b04.tar.bz2 fengari-902d145793959ce0347b202303f8cb34223e6b04.zip |
src/defs.js: Check for invalid continuation bytes
-rw-r--r-- | src/defs.js | 6 | ||||
-rw-r--r-- | tests/defs.js | 26 |
2 files changed, 31 insertions, 1 deletions
diff --git a/src/defs.js b/src/defs.js index ad79c67..01a48f5 100644 --- a/src/defs.js +++ b/src/defs.js @@ -157,19 +157,25 @@ const to_jsstring = function(value, from, to) { /* two byte sequence */ if (i >= to) throw RangeError("cannot convert invalid utf8 to javascript string"); let u1 = value[i++]; + if ((u1&0xC0) !== 0x80) throw RangeError("cannot convert invalid utf8 to javascript string"); u = ((u0 & 0x1F) << 6) + (u1 & 0x3F); } else if (u0 <= 0xEF) { /* three byte sequence */ if (i+1 >= to) throw RangeError("cannot convert invalid utf8 to javascript string"); let u1 = value[i++]; + if ((u1&0xC0) !== 0x80) throw RangeError("cannot convert invalid utf8 to javascript string"); let u2 = value[i++]; + if ((u2&0xC0) !== 0x80) throw RangeError("cannot convert invalid utf8 to javascript string"); u = ((u0 & 0x0F) << 12) + ((u1 & 0x3F) << 6) + (u2 & 0x3F); } else { /* four byte sequence */ if (i+2 >= to) throw RangeError("cannot convert invalid utf8 to javascript string"); let u1 = value[i++]; + if ((u1&0xC0) !== 0x80) throw RangeError("cannot convert invalid utf8 to javascript string"); let u2 = value[i++]; + if ((u2&0xC0) !== 0x80) throw RangeError("cannot convert invalid utf8 to javascript string"); let u3 = value[i++]; + if ((u3&0xC0) !== 0x80) throw RangeError("cannot convert invalid utf8 to javascript string"); u = ((u0 & 0x07) << 18) + ((u1 & 0x3F) << 12) + ((u2 & 0x3F) << 6) + (u3 & 0x3F); } str += String.fromCodePoint(u); diff --git a/tests/defs.js b/tests/defs.js index b00fda0..244e31b 100644 --- a/tests/defs.js +++ b/tests/defs.js @@ -58,9 +58,33 @@ test('to_jsstring', function (t) { }); test('to_jsstring fails on invalid unicode', function (t) { - t.plan(1); + t.plan(7); t.throws(function() { defs.to_jsstring([165]); }, "non-utf8 char"); + + t.throws(function() { + defs.to_jsstring([208, 60]); + }, "invalid continuation byte"); + + t.throws(function() { + defs.to_jsstring([225, 60, 145]); + }, "invalid continuation byte"); + + t.throws(function() { + defs.to_jsstring([225, 145, 60]); + }, "invalid continuation byte"); + + t.throws(function() { + defs.to_jsstring([242, 60, 145, 145]); + }, "invalid continuation byte"); + + t.throws(function() { + defs.to_jsstring([242, 145, 60, 145]); + }, "invalid continuation byte"); + + t.throws(function() { + defs.to_jsstring([242, 145, 145, 60]); + }, "invalid continuation byte"); }); |