diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2014-09-09 08:11:23 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@osg.samsung.com> | 2014-09-23 15:13:39 -0400 |
commit | 7ac95cf59d59473e680937319594ce0719497e98 (patch) | |
tree | b7cb5b002d0e71aacb17868f228d880cf8d5a2cb /drivers/media | |
parent | cf3b576d52c1f0a204f0c8bdecc22a338f7ca5a4 (diff) |
[media] firewire: firedtv-avc: fix more potential buffer overflow
"program_info_length" is user controlled and can go up to 4095. The
operand[] array has 509 bytes so we need to add a limit here to prevent
buffer overflows.
The " - 4" in the limit check is because we have 4 bytes more data to
add after the memcpy().
[mchehab@osg.samsung.com: as I merged the version 1 of the patch, I needed
to rebase to apply just the differences between v1 and v2]
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/firewire/firedtv-avc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/media/firewire/firedtv-avc.c b/drivers/media/firewire/firedtv-avc.c index ac17567f0822..251a556112a9 100644 --- a/drivers/media/firewire/firedtv-avc.c +++ b/drivers/media/firewire/firedtv-avc.c | |||
@@ -1157,7 +1157,7 @@ int avc_ca_pmt(struct firedtv *fdtv, char *msg, int length) | |||
1157 | if (pmt_cmd_id != 1 && pmt_cmd_id != 4) | 1157 | if (pmt_cmd_id != 1 && pmt_cmd_id != 4) |
1158 | dev_err(fdtv->device, | 1158 | dev_err(fdtv->device, |
1159 | "invalid pmt_cmd_id %d\n", pmt_cmd_id); | 1159 | "invalid pmt_cmd_id %d\n", pmt_cmd_id); |
1160 | if (program_info_length > sizeof(c->operand) - write_pos) { | 1160 | if (program_info_length > sizeof(c->operand) - 4 - write_pos) { |
1161 | ret = -EINVAL; | 1161 | ret = -EINVAL; |
1162 | goto out; | 1162 | goto out; |
1163 | } | 1163 | } |
@@ -1184,7 +1184,8 @@ int avc_ca_pmt(struct firedtv *fdtv, char *msg, int length) | |||
1184 | dev_err(fdtv->device, "invalid pmt_cmd_id %d " | 1184 | dev_err(fdtv->device, "invalid pmt_cmd_id %d " |
1185 | "at stream level\n", pmt_cmd_id); | 1185 | "at stream level\n", pmt_cmd_id); |
1186 | 1186 | ||
1187 | if (es_info_length > sizeof(c->operand) - write_pos) { | 1187 | if (es_info_length > sizeof(c->operand) - 4 - |
1188 | write_pos) { | ||
1188 | ret = -EINVAL; | 1189 | ret = -EINVAL; |
1189 | goto out; | 1190 | goto out; |
1190 | } | 1191 | } |