glibc/iconv
Stefan Liebler 7ab1de2106 Fix UTF-16 surrogate handling. [BZ #19727]
According to the latest Unicode standard, a conversion from/to UTF-xx has
to report an error if the character value is in range of an utf16 surrogate
(0xd800..0xdfff). See https://sourceware.org/ml/libc-help/2015-12/msg00015.html.
Thus this patch fixes this behaviour for converting from utf32 to internal and
from internal to utf8.

Furthermore the conversion from utf16 to internal does not report an error if the
input-stream consists of two low-surrogate values. If an uint16_t value is in the
range of 0xd800 .. 0xdfff, the next uint16_t value is checked, if it is in the
range of a low surrogate (0xdc00 .. 0xdfff). Afterwards these two uint16_t
values are interpreted as a high- and low-surrogates pair. But there is no test
if the first uint16_t value is really in the range of a high-surrogate
(0xd800 .. 0xdbff). If there would be two uint16_t values in the range of a low
surrogate, then they will be treated as a valid high- and low-surrogates pair.
This patch adds this test.

This patch also adds a new testcase, which checks UTF conversions with input
values in range of UTF16 surrogates. The test converts from UTF-xx to INTERNAL,
INTERNAL to UTF-xx and directly between UTF-xx to UTF-yy. The latter conversion
is needed because s390 has iconv-modules, which converts from/to UTF in one step.
The new testcase was tested on a s390, power and intel machine.

ChangeLog:

	[BZ #19727]
	* iconvdata/utf-16.c (BODY): Report an error if first word is not a
	valid high surrogate.
	* iconvdata/utf-32.c (BODY): Report an error if the value is in range
	of an utf16 surrogate.
	* iconv/gconv_simple.c (BODY): Likewise.
	* iconvdata/bug-iconv12.c: New file.
	* iconvdata/Makefile (tests): Add bug-iconv12.

rename test
2016-05-25 17:18:06 +02:00
..
Makefile Fix ucs4le_internal_loop in error case. [BZ #19726] 2016-05-25 17:18:06 +02:00
Versions Complete the removal of __gconv_translit_find 2014-09-12 09:17:32 +02:00
dummy-repertoire.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
gconv.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
gconv.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
gconv_builtin.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
gconv_builtin.h Fix min/max needed for ascii to INTERNAL conversion 2016-03-07 17:47:50 +01:00
gconv_cache.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
gconv_charset.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
gconv_close.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
gconv_conf.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
gconv_db.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
gconv_dl.c Fix build failures with -DDEBUG. 2016-01-15 11:07:41 -07:00
gconv_int.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
gconv_open.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
gconv_simple.c Fix UTF-16 surrogate handling. [BZ #19727] 2016-05-25 17:18:06 +02:00
gconv_trans.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
iconv.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
iconv.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
iconv_charmap.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
iconv_close.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
iconv_open.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
iconv_prog.c Update copyright dates not handled by scripts/update-copyrights. 2016-01-04 16:26:30 +00:00
iconv_prog.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
iconvconfig.c Update copyright dates not handled by scripts/update-copyrights. 2016-01-04 16:26:30 +00:00
iconvconfig.h Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
loop.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
skeleton.c Fix build errors with -DNDEBUG. 2016-01-15 10:44:07 -07:00
strtab.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-iconv1.c Modify several tests to use test-skeleton.c 2014-11-05 15:24:08 +05:30
tst-iconv2.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-iconv3.c Convert tst-iconv3 to use test-skeleton. 2015-02-25 16:01:13 -08:00
tst-iconv4.c
tst-iconv5.c Update copyright dates with scripts/update-copyrights. 2016-01-04 16:05:18 +00:00
tst-iconv6.c Fix ucs4le_internal_loop in error case. [BZ #19726] 2016-05-25 17:18:06 +02:00