media: vicodec: ensure comp frame pointer kept in range
authorDafna Hirschfeld <dafna3@gmail.com>
Thu, 24 Jan 2019 09:51:08 +0000 (07:51 -0200)
committerMauro Carvalho Chehab <mchehab+samsung@kernel.org>
Sat, 26 Jan 2019 11:10:26 +0000 (09:10 -0200)
Make sure that the pointer to the compressed frame does not
get out of the buffer.

Signed-off-by: Dafna Hirschfeld <dafna3@gmail.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
drivers/media/platform/vicodec/codec-fwht.c
drivers/media/platform/vicodec/codec-fwht.h
drivers/media/platform/vicodec/codec-v4l2-fwht.c
drivers/media/platform/vicodec/vicodec-core.c

index e5e0a80c2f73d215e647800a0fc1d1c6554143b6..d1d6085da9f1de33c7a2665bc45c3b2543bd79cc 100644 (file)
@@ -13,6 +13,8 @@
 #include <linux/kernel.h>
 #include "codec-fwht.h"
 
+#define OVERFLOW_BIT BIT(14)
+
 /*
  * Note: bit 0 of the header must always be 0. Otherwise it cannot
  * be guaranteed that the magic 8 byte sequence (see below) can
@@ -104,16 +106,21 @@ static int rlc(const s16 *in, __be16 *output, int blocktype)
  * This function will worst-case increase rlc_in by 65*2 bytes:
  * one s16 value for the header and 8 * 8 coefficients of type s16.
  */
-static s16 derlc(const __be16 **rlc_in, s16 *dwht_out)
+static u16 derlc(const __be16 **rlc_in, s16 *dwht_out,
+                const __be16 *end_of_input)
 {
        /* header */
        const __be16 *input = *rlc_in;
-       s16 ret = ntohs(*input++);
+       u16 stat;
        int dec_count = 0;
        s16 block[8 * 8 + 16];
        s16 *wp = block;
        int i;
 
+       if (input > end_of_input)
+               return OVERFLOW_BIT;
+       stat = ntohs(*input++);
+
        /*
         * Now de-compress, it expands one byte to up to 15 bytes
         * (or fills the remainder of the 64 bytes with zeroes if it
@@ -123,9 +130,15 @@ static s16 derlc(const __be16 **rlc_in, s16 *dwht_out)
         * allow for overflow if the incoming data was malformed.
         */
        while (dec_count < 8 * 8) {
-               s16 in = ntohs(*input++);
-               int length = in & 0xf;
-               int coeff = in >> 4;
+               s16 in;
+               int length;
+               int coeff;
+
+               if (input > end_of_input)
+                       return OVERFLOW_BIT;
+               in = ntohs(*input++);
+               length = in & 0xf;
+               coeff = in >> 4;
 
                /* fill remainder with zeros */
                if (length == 15) {
@@ -150,7 +163,7 @@ static s16 derlc(const __be16 **rlc_in, s16 *dwht_out)
                dwht_out[x + y * 8] = *wp++;
        }
        *rlc_in = input;
-       return ret;
+       return stat;
 }
 
 static const int quant_table[] = {
@@ -808,22 +821,24 @@ u32 fwht_encode_frame(struct fwht_raw_frame *frm,
        return encoding;
 }
 
-static void decode_plane(struct fwht_cframe *cf, const __be16 **rlco, u8 *ref,
+static bool decode_plane(struct fwht_cframe *cf, const __be16 **rlco, u8 *ref,
                         u32 height, u32 width, u32 coded_width,
-                        bool uncompressed)
+                        bool uncompressed, const __be16 *end_of_rlco_buf)
 {
        unsigned int copies = 0;
        s16 copy[8 * 8];
-       s16 stat;
+       u16 stat;
        unsigned int i, j;
 
        width = round_up(width, 8);
        height = round_up(height, 8);
 
        if (uncompressed) {
+               if (end_of_rlco_buf + 1 < *rlco + width * height / 2)
+                       return false;
                memcpy(ref, *rlco, width * height);
                *rlco += width * height / 2;
-               return;
+               return true;
        }
 
        /*
@@ -847,8 +862,9 @@ static void decode_plane(struct fwht_cframe *cf, const __be16 **rlco, u8 *ref,
                                continue;
                        }
 
-                       stat = derlc(rlco, cf->coeffs);
-
+                       stat = derlc(rlco, cf->coeffs, end_of_rlco_buf);
+                       if (stat & OVERFLOW_BIT)
+                               return false;
                        if (stat & PFRAME_BIT)
                                dequantize_inter(cf->coeffs);
                        else
@@ -865,17 +881,22 @@ static void decode_plane(struct fwht_cframe *cf, const __be16 **rlco, u8 *ref,
                        fill_decoder_block(refp, cf->de_fwht, coded_width);
                }
        }
+       return true;
 }
 
-void fwht_decode_frame(struct fwht_cframe *cf, struct fwht_raw_frame *ref,
+bool fwht_decode_frame(struct fwht_cframe *cf, struct fwht_raw_frame *ref,
                       u32 hdr_flags, unsigned int components_num,
                       unsigned int width, unsigned int height,
                       unsigned int coded_width)
 {
        const __be16 *rlco = cf->rlc_data;
+       const __be16 *end_of_rlco_buf = cf->rlc_data +
+                       (cf->size / sizeof(*rlco)) - 1;
 
-       decode_plane(cf, &rlco, ref->luma, height, width, coded_width,
-                    hdr_flags & FWHT_FL_LUMA_IS_UNCOMPRESSED);
+       if (!decode_plane(cf, &rlco, ref->luma, height, width, coded_width,
+                         hdr_flags & FWHT_FL_LUMA_IS_UNCOMPRESSED,
+                         end_of_rlco_buf))
+               return false;
 
        if (components_num >= 3) {
                u32 h = height;
@@ -888,13 +909,21 @@ void fwht_decode_frame(struct fwht_cframe *cf, struct fwht_raw_frame *ref,
                        w /= 2;
                        c /= 2;
                }
-               decode_plane(cf, &rlco, ref->cb, h, w, c,
-                            hdr_flags & FWHT_FL_CB_IS_UNCOMPRESSED);
-               decode_plane(cf, &rlco, ref->cr, h, w, c,
-                            hdr_flags & FWHT_FL_CR_IS_UNCOMPRESSED);
+               if (!decode_plane(cf, &rlco, ref->cb, h, w, c,
+                                 hdr_flags & FWHT_FL_CB_IS_UNCOMPRESSED,
+                                 end_of_rlco_buf))
+                       return false;
+               if (!decode_plane(cf, &rlco, ref->cr, h, w, c,
+                                 hdr_flags & FWHT_FL_CR_IS_UNCOMPRESSED,
+                                 end_of_rlco_buf))
+                       return false;
        }
 
        if (components_num == 4)
-               decode_plane(cf, &rlco, ref->alpha, height, width, coded_width,
-                            hdr_flags & FWHT_FL_ALPHA_IS_UNCOMPRESSED);
+               if (!decode_plane(cf, &rlco, ref->alpha, height, width,
+                                 coded_width,
+                                 hdr_flags & FWHT_FL_ALPHA_IS_UNCOMPRESSED,
+                                 end_of_rlco_buf))
+                       return false;
+       return true;
 }
index ad8cfc60a152e89664aad2124ccacb9a3efac9ae..60d71d9dacb39c9928668bd96e2d05f0086ebc12 100644 (file)
@@ -139,7 +139,7 @@ u32 fwht_encode_frame(struct fwht_raw_frame *frm,
                      bool is_intra, bool next_is_intra,
                      unsigned int width, unsigned int height,
                      unsigned int stride, unsigned int chroma_stride);
-void fwht_decode_frame(struct fwht_cframe *cf, struct fwht_raw_frame *ref,
+bool fwht_decode_frame(struct fwht_cframe *cf, struct fwht_raw_frame *ref,
                       u32 hdr_flags, unsigned int components_num,
                       unsigned int width, unsigned int height,
                       unsigned int coded_width);
index ee6903b8896c9e1d2eec80ca6e20801ed62fb620..c150348491339bb305fa95ef4f0225602e9dbba5 100644 (file)
@@ -280,6 +280,7 @@ int v4l2_fwht_decode(struct v4l2_fwht_state *state, u8 *p_in, u8 *p_out)
        state->ycbcr_enc = ntohl(state->header.ycbcr_enc);
        state->quantization = ntohl(state->header.quantization);
        cf.rlc_data = (__be16 *)p_in;
+       cf.size = ntohl(state->header.size);
 
        hdr_width_div = (flags & FWHT_FL_CHROMA_FULL_WIDTH) ? 1 : 2;
        hdr_height_div = (flags & FWHT_FL_CHROMA_FULL_HEIGHT) ? 1 : 2;
@@ -287,9 +288,10 @@ int v4l2_fwht_decode(struct v4l2_fwht_state *state, u8 *p_in, u8 *p_out)
            hdr_height_div != info->height_div)
                return -EINVAL;
 
-       fwht_decode_frame(&cf, &state->ref_frame, flags, components_num,
-                         state->visible_width, state->visible_height,
-                         state->coded_width);
+       if (!fwht_decode_frame(&cf, &state->ref_frame, flags, components_num,
+                              state->visible_width, state->visible_height,
+                              state->coded_width))
+               return -EINVAL;
 
        /*
         * TODO - handle the case where the compressed stream encodes a
index 454476a9f6594f927fa700a7459703c0f2355e18..28c3a3d5778314b04fed0947cdf06762d22bd6b4 100644 (file)
@@ -186,6 +186,10 @@ static int device_process(struct vicodec_ctx *ctx,
                        return ret;
                vb2_set_plane_payload(&dst_vb->vb2_buf, 0, ret);
        } else {
+               unsigned int comp_frame_size = ntohl(ctx->state.header.size);
+
+               if (comp_frame_size > ctx->comp_max_size)
+                       return -EINVAL;
                state->info = q_dst->info;
                ret = v4l2_fwht_decode(state, p_src, p_dst);
                if (ret < 0)