Commit d4568fc8 authored by Kees Cook's avatar Kees Cook Committed by Mauro Carvalho Chehab

media: omap3isp: Use struct_group() for memcpy() region

In preparation for FORTIFY_SOURCE performing compile-time and run-time
field bounds checking for memcpy(), memmove(), and memset(), avoid
intentionally writing across neighboring fields. Wrap the target region
in struct_group(). This additionally fixes a theoretical misalignment
of the copy (since the size of "buf" changes between 64-bit and 32-bit,
but this is likely never built for 64-bit).

FWIW, I think this code is totally broken on 64-bit (which appears to
not be a "real" build configuration): it would either always fail (with
an uninitialized data->buf_size) or would cause corruption in userspace
due to the copy_to_user() in the call path against an uninitialized
data->buf value:

omap3isp_stat_request_statistics_time32(...)
    struct omap3isp_stat_data data64;
    ...
    omap3isp_stat_request_statistics(stat, &data64);

int omap3isp_stat_request_statistics(struct ispstat *stat,
                                     struct omap3isp_stat_data *data)
    ...
    buf = isp_stat_buf_get(stat, data);

static struct ispstat_buffer *isp_stat_buf_get(struct ispstat *stat,
                                               struct omap3isp_stat_data *data)
...
    if (buf->buf_size > data->buf_size) {
            ...
            return ERR_PTR(-EINVAL);
    }
    ...
    rval = copy_to_user(data->buf,
                        buf->virt_addr,
                        buf->buf_size);

Regardless, additionally initialize data64 to be zero-filled to avoid
undefined behavior.

Link: https://lore.kernel.org/lkml/20211215220505.GB21862@embeddedor

Cc: Arnd Bergmann <arnd@arndb.de>
Fixes: 378e3f81 ("media: omap3isp: support 64-bit version of omap3isp_stat_data")
Cc: stable@vger.kernel.org
Reviewed-by: default avatarGustavo A. R. Silva <gustavoars@kernel.org>
Signed-off-by: default avatarKees Cook <keescook@chromium.org>
Reviewed-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@kernel.org>
parent b9f7caa7
...@@ -512,7 +512,7 @@ int omap3isp_stat_request_statistics(struct ispstat *stat, ...@@ -512,7 +512,7 @@ int omap3isp_stat_request_statistics(struct ispstat *stat,
int omap3isp_stat_request_statistics_time32(struct ispstat *stat, int omap3isp_stat_request_statistics_time32(struct ispstat *stat,
struct omap3isp_stat_data_time32 *data) struct omap3isp_stat_data_time32 *data)
{ {
struct omap3isp_stat_data data64; struct omap3isp_stat_data data64 = { };
int ret; int ret;
ret = omap3isp_stat_request_statistics(stat, &data64); ret = omap3isp_stat_request_statistics(stat, &data64);
...@@ -521,7 +521,8 @@ int omap3isp_stat_request_statistics_time32(struct ispstat *stat, ...@@ -521,7 +521,8 @@ int omap3isp_stat_request_statistics_time32(struct ispstat *stat,
data->ts.tv_sec = data64.ts.tv_sec; data->ts.tv_sec = data64.ts.tv_sec;
data->ts.tv_usec = data64.ts.tv_usec; data->ts.tv_usec = data64.ts.tv_usec;
memcpy(&data->buf, &data64.buf, sizeof(*data) - sizeof(data->ts)); data->buf = (uintptr_t)data64.buf;
memcpy(&data->frame, &data64.frame, sizeof(data->frame));
return 0; return 0;
} }
......
...@@ -162,6 +162,7 @@ struct omap3isp_h3a_aewb_config { ...@@ -162,6 +162,7 @@ struct omap3isp_h3a_aewb_config {
* struct omap3isp_stat_data - Statistic data sent to or received from user * struct omap3isp_stat_data - Statistic data sent to or received from user
* @ts: Timestamp of returned framestats. * @ts: Timestamp of returned framestats.
* @buf: Pointer to pass to user. * @buf: Pointer to pass to user.
* @buf_size: Size of buffer.
* @frame_number: Frame number of requested stats. * @frame_number: Frame number of requested stats.
* @cur_frame: Current frame number being processed. * @cur_frame: Current frame number being processed.
* @config_counter: Number of the configuration associated with the data. * @config_counter: Number of the configuration associated with the data.
...@@ -176,10 +177,12 @@ struct omap3isp_stat_data { ...@@ -176,10 +177,12 @@ struct omap3isp_stat_data {
struct timeval ts; struct timeval ts;
#endif #endif
void __user *buf; void __user *buf;
__u32 buf_size; __struct_group(/* no tag */, frame, /* no attrs */,
__u16 frame_number; __u32 buf_size;
__u16 cur_frame; __u16 frame_number;
__u16 config_counter; __u16 cur_frame;
__u16 config_counter;
);
}; };
#ifdef __KERNEL__ #ifdef __KERNEL__
...@@ -189,10 +192,12 @@ struct omap3isp_stat_data_time32 { ...@@ -189,10 +192,12 @@ struct omap3isp_stat_data_time32 {
__s32 tv_usec; __s32 tv_usec;
} ts; } ts;
__u32 buf; __u32 buf;
__u32 buf_size; __struct_group(/* no tag */, frame, /* no attrs */,
__u16 frame_number; __u32 buf_size;
__u16 cur_frame; __u16 frame_number;
__u16 config_counter; __u16 cur_frame;
__u16 config_counter;
);
}; };
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment