]> git.baikalelectronics.ru Git - kernel.git/commit
net: qrtr: fix another OOB Read in qrtr_endpoint_post
authorXiaolong Huang <butterflyhuangxx@gmail.com>
Thu, 19 Aug 2021 19:50:34 +0000 (03:50 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 3 Sep 2021 08:08:12 +0000 (10:08 +0200)
commitf46c45f865e05c5742987088572d8c03f18034f3
treee92e2381880feaea677bb07cd39d807f4683dbab
parent5204296b5aaa76d5affefcc8f61031d8b0903d95
net: qrtr: fix another OOB Read in qrtr_endpoint_post

commit 7e78c597c3ebfd0cb329aa09a838734147e4f117 upstream.

This check was incomplete, did not consider size is 0:

if (len != ALIGN(size, 4) + hdrlen)
                    goto err;

if size from qrtr_hdr is 0, the result of ALIGN(size, 4)
will be 0, In case of len == hdrlen and size == 0
in header this check won't fail and

if (cb->type == QRTR_TYPE_NEW_SERVER) {
                /* Remote node endpoint can bridge other distant nodes */
                const struct qrtr_ctrl_pkt *pkt = data + hdrlen;

                qrtr_node_assign(node, le32_to_cpu(pkt->server.node));
        }

will also read out of bound from data, which is hdrlen allocated block.

Fixes: 27121d1ab57e ("net: qrtr: Support decoding incoming v2 packets")
Fixes: ec2c69e81709 ("net: qrtr: fix OOB Read in qrtr_endpoint_post")
Signed-off-by: Xiaolong Huang <butterflyhuangxx@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/qrtr/qrtr.c