lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <6b2ff63b-7fa6-935b-002a-3ecd46273877@xs4all.nl>
Date:   Fri, 29 Apr 2022 13:50:09 +0200
From:   Hans Verkuil <hverkuil-cisco@...all.nl>
To:     Naina Vaskenly <quic_nvaskenl@...cinc.com>,
        Mauro Carvalho Chehab <mchehab@...nel.org>,
        lijian <lijian@...ong.com>, linux-media@...r.kernel.org,
        linux-kernel@...r.kernel.org
Cc:     Kumar Anshuman <quic_anshuk@...cinc.com>
Subject: Re: [PATCH V0 1/1] media: v4l2-core: Enable reserved field of
 v4l2_event

On 29/04/2022 13:45, Naina Vaskenly wrote:
> 'reserved' member of struct v4l2_event is currently not enabled.
> This field can be used to transfer data, if >64 bytes of data
> has to be sent. Hence, added this change to copy the reserved field in
> __v4l2_event_queue_fh.
> 
> Signed-off-by: Naina Vaskenly <quic_nvaskenl@...cinc.com>
> ---
>  drivers/media/v4l2-core/v4l2-event.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/media/v4l2-core/v4l2-event.c b/drivers/media/v4l2-core/v4l2-event.c
> index c5ce9f1..3d741cb 100644
> --- a/drivers/media/v4l2-core/v4l2-event.c
> +++ b/drivers/media/v4l2-core/v4l2-event.c
> @@ -137,8 +137,10 @@ static void __v4l2_event_queue_fh(struct v4l2_fh *fh,
>  	/* Take one and fill it. */
>  	kev = sev->events + sev_pos(sev, sev->in_use);
>  	kev->event.type = ev->type;
> -	if (copy_payload)
> +	if (copy_payload) {
>  		kev->event.u = ev->u;
> +		memcpy(kev->event.reserved, ev->reserved, sizeof(ev->reserved));
> +	}
>  	kev->event.id = ev->id;
>  	kev->ts = ts;
>  	kev->event.sequence = fh->sequence;

What's the point of this? It's a reserved field, it must be 0. If you want to use
it for something else, then make a proposal to repurpose some of the reserved
fields.

This looks like you are trying to copy reserved data for some driver-specific hack.

That's not going to be accepted.

For the record:

Nacked-by: Hans Verkuil <hverkuil-cisco@...all.nl>

Regards,

	Hans

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ