udf: Check output buffer length when converting name to CS0
authorAndrew Gabbasov <andrew_gabbasov@mentor.com>
Thu, 24 Dec 2015 16:25:33 +0000 (10:25 -0600)
committerSasha Levin <sasha.levin@oracle.com>
Mon, 1 Feb 2016 19:54:15 +0000 (14:54 -0500)
commit516a102b0add0610805d0062670b18b1b44ccdda
tree523ca94f710e6129a52d9c3fc186b236262f1620
parentd6341753c418d3699948290d8c0b9d9dc78bd209
udf: Check output buffer length when converting name to CS0

[ Upstream commit bb00c898ad1ce40c4bb422a8207ae562e9aea7ae ]

If a name contains at least some characters with Unicode values
exceeding single byte, the CS0 output should have 2 bytes per character.
And if other input characters have single byte Unicode values, then
the single input byte is converted to 2 output bytes, and the length
of output becomes larger than the length of input. And if the input
name is long enough, the output length may exceed the allocated buffer
length.

All this means that conversion from UTF8 or NLS to CS0 requires
checking of output length in order to stop when it exceeds the given
output buffer size.

[JK: Make code return -ENAMETOOLONG instead of silently truncating the
name]

CC: stable@vger.kernel.org
Signed-off-by: Andrew Gabbasov <andrew_gabbasov@mentor.com>
Signed-off-by: Jan Kara <jack@suse.cz>
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
fs/udf/unicode.c