mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
iconv: harden UTF-8 output code path against input decoder bugs
the UTF-8 output code was written assuming an invariant that iconv's decoders only emit valid Unicode Scalar Values which wctomb can encode successfully, thereby always returning a value between 1 and 4. if this invariant is not satisfied, wctomb returns (size_t)-1, and the subsequent adjustments to the output buffer pointer and remaining output byte count overflow, moving the output position backwards, potentially past the beginning of the buffer, without storing any bytes.
This commit is contained in:
parent
4c4f15dae5
commit
c47ad25ea3
1 changed files with 4 additions and 0 deletions
|
@ -545,6 +545,10 @@ size_t iconv(iconv_t cd, char **restrict in, size_t *restrict inb, char **restri
|
|||
if (*outb < k) goto toobig;
|
||||
memcpy(*out, tmp, k);
|
||||
} else k = wctomb_utf8(*out, c);
|
||||
/* This failure condition should be unreachable, but
|
||||
* is included to prevent decoder bugs from translating
|
||||
* into advancement outside the output buffer range. */
|
||||
if (k>4) goto ilseq;
|
||||
*out += k;
|
||||
*outb -= k;
|
||||
break;
|
||||
|
|
Loading…
Add table
Reference in a new issue