Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix multiple OOB reads in FLI decoding #4503

Merged
merged 11 commits into from Apr 1, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
68 changes: 68 additions & 0 deletions Tests/check_fli_oob.py
@@ -0,0 +1,68 @@
#!/usr/bin/env python

from PIL import Image

repro_ss2 = (
"images/fli_oob/06r/06r00.fli",
"images/fli_oob/06r/others/06r01.fli",
"images/fli_oob/06r/others/06r02.fli",
"images/fli_oob/06r/others/06r03.fli",
"images/fli_oob/06r/others/06r04.fli",
)

repro_lc = (
"images/fli_oob/05r/05r00.fli",
"images/fli_oob/05r/others/05r03.fli",
"images/fli_oob/05r/others/05r06.fli",
"images/fli_oob/05r/others/05r05.fli",
"images/fli_oob/05r/others/05r01.fli",
"images/fli_oob/05r/others/05r04.fli",
"images/fli_oob/05r/others/05r02.fli",
"images/fli_oob/05r/others/05r07.fli",
"images/fli_oob/patch0/000000",
"images/fli_oob/patch0/000001",
"images/fli_oob/patch0/000002",
"images/fli_oob/patch0/000003",
)


repro_advance = (
"images/fli_oob/03r/03r00.fli",
"images/fli_oob/03r/others/03r01.fli",
"images/fli_oob/03r/others/03r09.fli",
"images/fli_oob/03r/others/03r11.fli",
"images/fli_oob/03r/others/03r05.fli",
"images/fli_oob/03r/others/03r10.fli",
"images/fli_oob/03r/others/03r06.fli",
"images/fli_oob/03r/others/03r08.fli",
"images/fli_oob/03r/others/03r03.fli",
"images/fli_oob/03r/others/03r07.fli",
"images/fli_oob/03r/others/03r02.fli",
"images/fli_oob/03r/others/03r04.fli",
)

repro_brun = (
"images/fli_oob/04r/initial.fli",
"images/fli_oob/04r/others/04r02.fli",
"images/fli_oob/04r/others/04r05.fli",
"images/fli_oob/04r/others/04r04.fli",
"images/fli_oob/04r/others/04r03.fli",
"images/fli_oob/04r/others/04r01.fli",
"images/fli_oob/04r/04r00.fli",
)

repro_copy = (
"images/fli_oob/02r/others/02r02.fli",
"images/fli_oob/02r/others/02r04.fli",
"images/fli_oob/02r/others/02r03.fli",
"images/fli_oob/02r/others/02r01.fli",
"images/fli_oob/02r/02r00.fli",
)


for path in repro_ss2 + repro_lc + repro_advance + repro_brun + repro_copy:
im = Image.open(path)
try:
im.load()
except Exception as msg:
print(msg)
Binary file added Tests/images/fli_oob/02r/02r00.fli
Binary file not shown.
1 change: 1 addition & 0 deletions Tests/images/fli_oob/02r/notes
@@ -0,0 +1 @@
Is this because a file-originating field is being interpreted as a *signed* int32, allowing it to provide negative values for 'advance'?
Binary file added Tests/images/fli_oob/02r/others/02r01.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/02r/others/02r02.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/02r/others/02r03.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/02r/others/02r04.fli
Binary file not shown.
1 change: 1 addition & 0 deletions Tests/images/fli_oob/02r/reproducing
@@ -0,0 +1 @@
Image.open(...).seek(212)
Binary file added Tests/images/fli_oob/03r/03r00.fli
Binary file not shown.
1 change: 1 addition & 0 deletions Tests/images/fli_oob/03r/notes
@@ -0,0 +1 @@
ridiculous bytes value passed to ImagingFliDecode
Binary file added Tests/images/fli_oob/03r/others/03r01.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/03r/others/03r02.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/03r/others/03r03.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/03r/others/03r04.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/03r/others/03r05.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/03r/others/03r06.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/03r/others/03r07.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/03r/others/03r08.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/03r/others/03r09.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/03r/others/03r10.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/03r/others/03r11.fli
Binary file not shown.
1 change: 1 addition & 0 deletions Tests/images/fli_oob/03r/reproducing
@@ -0,0 +1 @@
im = Image.open(d); im.seek(0); im.getdata()
Binary file added Tests/images/fli_oob/04r/04r00.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/04r/initial.fli
Binary file not shown.
1 change: 1 addition & 0 deletions Tests/images/fli_oob/04r/notes
@@ -0,0 +1 @@
failure to check input buffer (`data`) boundaries in BRUN chunk
Binary file added Tests/images/fli_oob/04r/others/04r01.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/04r/others/04r02.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/04r/others/04r03.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/04r/others/04r04.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/04r/others/04r05.fli
Binary file not shown.
1 change: 1 addition & 0 deletions Tests/images/fli_oob/04r/reproducing
@@ -0,0 +1 @@
im = Image.open(d); im.seek(0); im.getdata()
Binary file added Tests/images/fli_oob/05r/05r00.fli
Binary file not shown.
1 change: 1 addition & 0 deletions Tests/images/fli_oob/05r/notes
@@ -0,0 +1 @@
failure to check input buffer (`data`) boundaries in LC chunk
Binary file added Tests/images/fli_oob/05r/others/05r01.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/05r/others/05r02.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/05r/others/05r03.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/05r/others/05r04.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/05r/others/05r05.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/05r/others/05r06.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/05r/others/05r07.fli
Binary file not shown.
1 change: 1 addition & 0 deletions Tests/images/fli_oob/05r/reproducing
@@ -0,0 +1 @@
im = Image.open(d); im.seek(0); im.getdata()
Binary file added Tests/images/fli_oob/06r/06r00.fli
Binary file not shown.
1 change: 1 addition & 0 deletions Tests/images/fli_oob/06r/notes
@@ -0,0 +1 @@
failure to check input buffer (`data`) boundaries in SS2 chunk
Binary file added Tests/images/fli_oob/06r/others/06r01.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/06r/others/06r02.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/06r/others/06r03.fli
Binary file not shown.
Binary file added Tests/images/fli_oob/06r/others/06r04.fli
Binary file not shown.
1 change: 1 addition & 0 deletions Tests/images/fli_oob/06r/reproducing
@@ -0,0 +1 @@
im = Image.open(d); im.seek(0); im.getdata()
Binary file added Tests/images/fli_oob/patch0/000000
Binary file not shown.
Binary file added Tests/images/fli_oob/patch0/000001
Binary file not shown.
Binary file added Tests/images/fli_oob/patch0/000002
Binary file not shown.
Binary file added Tests/images/fli_oob/patch0/000003
Binary file not shown.
48 changes: 38 additions & 10 deletions src/libImaging/FliDecode.c
Expand Up @@ -24,7 +24,12 @@
#define I32(ptr)\
((ptr)[0] + ((ptr)[1] << 8) + ((ptr)[2] << 16) + ((ptr)[3] << 24))


#define ERR_IF_DATA_OOB(offset) \
if ((data + (offset)) > ptr + bytes) {\
state->errcode = IMAGING_CODEC_OVERRUN; \
return -1; \
}

int
ImagingFliDecode(Imaging im, ImagingCodecState state, UINT8* buf, Py_ssize_t bytes)
{
Expand Down Expand Up @@ -78,10 +83,12 @@ ImagingFliDecode(Imaging im, ImagingCodecState state, UINT8* buf, Py_ssize_t byt
break; /* ignored; handled by Python code */
case 7:
/* FLI SS2 chunk (word delta) */
/* OOB ok, we've got 4 bytes min on entry */
lines = I16(data); data += 2;
for (l = y = 0; l < lines && y < state->ysize; l++, y++) {
UINT8* buf = (UINT8*) im->image[y];
UINT8* local_buf = (UINT8*) im->image[y];
int p, packets;
ERR_IF_DATA_OOB(2)
packets = I16(data); data += 2;
while (packets & 0x8000) {
/* flag word */
Expand All @@ -91,29 +98,33 @@ ImagingFliDecode(Imaging im, ImagingCodecState state, UINT8* buf, Py_ssize_t byt
state->errcode = IMAGING_CODEC_OVERRUN;
return -1;
}
buf = (UINT8*) im->image[y];
local_buf = (UINT8*) im->image[y];
} else {
/* store last byte (used if line width is odd) */
buf[state->xsize-1] = (UINT8) packets;
local_buf[state->xsize-1] = (UINT8) packets;
}
ERR_IF_DATA_OOB(2)
packets = I16(data); data += 2;
}
for (p = x = 0; p < packets; p++) {
ERR_IF_DATA_OOB(2)
x += data[0]; /* pixel skip */
if (data[1] >= 128) {
ERR_IF_DATA_OOB(4)
i = 256-data[1]; /* run */
if (x + i + i > state->xsize)
break;
for (j = 0; j < i; j++) {
buf[x++] = data[2];
buf[x++] = data[3];
local_buf[x++] = data[2];
local_buf[x++] = data[3];
}
data += 2 + 2;
} else {
i = 2 * (int) data[1]; /* chunk */
if (x + i > state->xsize)
break;
memcpy(buf + x, data + 2, i);
ERR_IF_DATA_OOB(2+i)
memcpy(local_buf + x, data + 2, i);
data += 2 + i;
x += i;
}
Expand All @@ -129,22 +140,27 @@ ImagingFliDecode(Imaging im, ImagingCodecState state, UINT8* buf, Py_ssize_t byt
break;
case 12:
/* FLI LC chunk (byte delta) */
/* OOB Check ok, we have 4 bytes min here */
y = I16(data); ymax = y + I16(data+2); data += 4;
for (; y < ymax && y < state->ysize; y++) {
UINT8* out = (UINT8*) im->image[y];
ERR_IF_DATA_OOB(1)
int p, packets = *data++;
for (p = x = 0; p < packets; p++, x += i) {
ERR_IF_DATA_OOB(2)
x += data[0]; /* skip pixels */
if (data[1] & 0x80) {
i = 256-data[1]; /* run */
if (x + i > state->xsize)
break;
ERR_IF_DATA_OOB(3)
memset(out + x, data[2], i);
data += 3;
} else {
i = data[1]; /* chunk */
if (x + i > state->xsize)
break;
ERR_IF_DATA_OOB(2+i)
memcpy(out + x, data + 2, i);
data += i + 2;
}
Expand All @@ -165,14 +181,18 @@ ImagingFliDecode(Imaging im, ImagingCodecState state, UINT8* buf, Py_ssize_t byt
break;
case 15:
/* FLI BRUN chunk */
/* OOB, ok, we've got 4 bytes min on entry */
for (y = 0; y < state->ysize; y++) {
UINT8* out = (UINT8*) im->image[y];
data += 1; /* ignore packetcount byte */
for (x = 0; x < state->xsize; x += i) {
ERR_IF_DATA_OOB(2)
if (data[0] & 0x80) {
i = 256 - data[0];
if (x + i > state->xsize)
if (x + i > state->xsize) {
break; /* safety first */
}
ERR_IF_DATA_OOB(i+1)
memcpy(out + x, data + 1, i);
data += i + 1;
} else {
Expand All @@ -192,9 +212,13 @@ ImagingFliDecode(Imaging im, ImagingCodecState state, UINT8* buf, Py_ssize_t byt
break;
case 16:
/* COPY chunk */
if (state->xsize > bytes/state->ysize) {
/* not enough data for frame */
return ptr - buf; /* bytes consumed */
}
for (y = 0; y < state->ysize; y++) {
UINT8* buf = (UINT8*) im->image[y];
memcpy(buf, data, state->xsize);
UINT8* local_buf = (UINT8*) im->image[y];
memcpy(local_buf, data, state->xsize);
data += state->xsize;
}
break;
Expand All @@ -208,6 +232,10 @@ ImagingFliDecode(Imaging im, ImagingCodecState state, UINT8* buf, Py_ssize_t byt
return -1;
}
advance = I32(ptr);
if (advance < 0 || advance > bytes) {
state->errcode = IMAGING_CODEC_OVERRUN;
return -1;
}
ptr += advance;
bytes -= advance;
}
Expand Down