media: firewire: firedtv-avc: fix a buffer overflow in avc_ca_pmt()
authorDan Carpenter <dan.carpenter@oracle.com>
Mon, 24 Jan 2022 18:35:29 +0000 (19:35 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 29 Jan 2022 09:15:58 +0000 (10:15 +0100)
commit 35d2969ea3c7d32aee78066b1f3cf61a0d935a4e upstream.

The bounds checking in avc_ca_pmt() is not strict enough.  It should
be checking "read_pos + 4" because it's reading 5 bytes.  If the
"es_info_length" is non-zero then it reads a 6th byte so there needs to
be an additional check for that.

I also added checks for the "write_pos".  I don't think these are
required because "read_pos" and "write_pos" are tied together so
checking one ought to be enough.  But they make the code easier to
understand for me.  The check on write_pos is:

if (write_pos + 4 >= sizeof(c->operand) - 4) {

The first "+ 4" is because we're writing 5 bytes and the last " - 4"
is to leave space for the CRC.

The other problem is that "length" can be invalid.  It comes from
"data_length" in fdtv_ca_pmt().

Cc: stable@vger.kernel.org
Reported-by: Luo Likang <luolikang@nsfocus.com>
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
[bwh: Backported to 4.9: adjust context]
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/media/firewire/firedtv-avc.c
drivers/media/firewire/firedtv-ci.c

index 280b5ffea5922f032c5b76e86c688dd12486f17e..3a373711f5ad95c5abf9c46aa89c0bfec5c3939a 100644 (file)
@@ -1169,7 +1169,11 @@ int avc_ca_pmt(struct firedtv *fdtv, char *msg, int length)
                read_pos += program_info_length;
                write_pos += program_info_length;
        }
-       while (read_pos < length) {
+       while (read_pos + 4 < length) {
+               if (write_pos + 4 >= sizeof(c->operand) - 4) {
+                       ret = -EINVAL;
+                       goto out;
+               }
                c->operand[write_pos++] = msg[read_pos++];
                c->operand[write_pos++] = msg[read_pos++];
                c->operand[write_pos++] = msg[read_pos++];
@@ -1181,13 +1185,17 @@ int avc_ca_pmt(struct firedtv *fdtv, char *msg, int length)
                c->operand[write_pos++] = es_info_length >> 8;
                c->operand[write_pos++] = es_info_length & 0xff;
                if (es_info_length > 0) {
+                       if (read_pos >= length) {
+                               ret = -EINVAL;
+                               goto out;
+                       }
                        pmt_cmd_id = msg[read_pos++];
                        if (pmt_cmd_id != 1 && pmt_cmd_id != 4)
                                dev_err(fdtv->device, "invalid pmt_cmd_id %d "
                                        "at stream level\n", pmt_cmd_id);
 
-                       if (es_info_length > sizeof(c->operand) - 4 -
-                                            write_pos) {
+                       if (es_info_length > sizeof(c->operand) - 4 - write_pos ||
+                           es_info_length > length - read_pos) {
                                ret = -EINVAL;
                                goto out;
                        }
index edbb30fdd9d95e3d5285c892bce0111b0f315598..93fb4b7312afcd3a93e4c2584a11cf680846d2bc 100644 (file)
@@ -138,6 +138,8 @@ static int fdtv_ca_pmt(struct firedtv *fdtv, void *arg)
        } else {
                data_length = msg->msg[3];
        }
+       if (data_length > sizeof(msg->msg) - data_pos)
+               return -EINVAL;
 
        return avc_ca_pmt(fdtv, &msg->msg[data_pos], data_length);
 }