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] [thread-next>] [day] [month] [year] [list]
Date:	Wed, 28 Nov 2012 16:06:31 -0300
From:	Ezequiel Garcia <elezegarcia@...il.com>
To:	Mauro Carvalho Chehab <mchehab@...hat.com>
Cc:	Hans Verkuil <hverkuil@...all.nl>,
	Sylwester Nawrocki <sylvester.nawrocki@...il.com>,
	Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
	Peter Senna Tschudin <peter.senna@...il.com>,
	Julia Lawall <Julia.Lawall@...6.fr>,
	Dan Carpenter <dan.carpenter@...cle.com>,
	linux-media <linux-media@...r.kernel.org>
Subject: Re: [PATCH 0/23] media: Replace memcpy with struct assignment

On Tue, Oct 23, 2012 at 4:57 PM, Ezequiel Garcia <elezegarcia@...il.com> wrote:
> Hello everyone,
>
> This is a large patchset that replaces struct memcpy with struct assignment,
> whenever possible at drivers/media.
>
> The patches are hand applied and every change has been thoroughly reviewed.
> However, to avoid regressions and angry users we'd like to have Acks
> from maintainers.
>
> A simplified version of the semantic match that finds
> this problem is as follows: (http://coccinelle.lip6.fr/)
>
> // <smpl>
> @@
> identifier struct_name;
> struct struct_name to;
> struct struct_name from;
> expression E;
> @@
> -memcpy(&(to), &(from), E);
> +to = from;
> // </smpl>
>
> If you're thinking this change is very minor and doesn't worh the pain,
> you might change your opinion reading this report from Dan Carpenter:
>
> http://comments.gmane.org/gmane.linux.drivers.video-input-infrastructure/49553
>
> The report clearly shows how copy-paste programming paradigm, combined with
> lack of memcpy type-safety can lead to very strange code.
>
> Not to mention, using struct assignment instead of memcpy
> is by far more readable.
>
> Comments, feedback and flames are welcome. Thanks!
>
> Peter Senna Tschudin, Ezequiel Garcia (23):
>  wl128x: Replace memcpy with struct assignment
>  radio-wl1273: Replace memcpy with struct assignment
>  dvb-frontends: Replace memcpy with struct assignment
>  dvb-core: Replace memcpy with struct assignment
>  bttv: Replace memcpy with struct assignment
>  cx18: Replace memcpy with struct assignment
>  cx23885: Replace memcpy with struct assignment
>  cx88: Replace memcpy with struct assignment
>  ivtv: Replace memcpy with struct assignment
>  tuners/tda18271: Replace memcpy with struct assignment
>  tuners/xc2028: Replace memcpy with struct assignment
>  tuners/xc4000: Replace memcpy with struct assignment
>  au0828: Replace memcpy with struct assignment
>  dvb-usb/friio-fe: Replace memcpy with struct assignment
>  zr36067: Replace memcpy with struct assignment
>  cx25840: Replace memcpy with struct assignment
>  hdpvr: Replace memcpy with struct assignment
>  pvrusb2: Replace memcpy with struct assignment
>  pwc: Replace memcpy with struct assignment
>  sn9c102: Replace memcpy with struct assignment
>  usbvision: Replace memcpy with struct assignment
>  cx231xx: Replace memcpy with struct assignment
>  uvc: Replace memcpy with struct assignment
>
>  drivers/media/dvb-core/dvb_frontend.c        |    2 +-
>  drivers/media/dvb-frontends/cx24116.c        |    2 +-
>  drivers/media/dvb-frontends/drxd_hard.c      |    5 ++---
>  drivers/media/dvb-frontends/stv0299.c        |    2 +-
>  drivers/media/i2c/cx25840/cx25840-ir.c       |    6 ++----
>  drivers/media/pci/bt8xx/bttv-i2c.c           |    3 +--
>  drivers/media/pci/cx18/cx18-i2c.c            |    6 ++----
>  drivers/media/pci/cx23885/cx23885-video.c    |    3 +--
>  drivers/media/pci/cx23885/cx23888-ir.c       |    6 ++----
>  drivers/media/pci/cx88/cx88-cards.c          |    2 +-
>  drivers/media/pci/cx88/cx88-i2c.c            |    3 +--
>  drivers/media/pci/cx88/cx88-vp3054-i2c.c     |    3 +--
>  drivers/media/pci/ivtv/ivtv-i2c.c            |   12 ++++--------
>  drivers/media/pci/zoran/zoran_card.c         |    3 +--
>  drivers/media/radio/radio-wl1273.c           |    3 +--
>  drivers/media/radio/wl128x/fmdrv_common.c    |    3 +--
>  drivers/media/tuners/tda18271-maps.c         |    6 ++----
>  drivers/media/tuners/tuner-xc2028.c          |    2 +-
>  drivers/media/tuners/xc4000.c                |    2 +-
>  drivers/media/usb/au0828/au0828-cards.c      |    2 +-
>  drivers/media/usb/au0828/au0828-i2c.c        |    9 +++------
>  drivers/media/usb/cx231xx/cx231xx-cards.c    |    2 +-
>  drivers/media/usb/cx231xx/cx231xx-video.c    |    3 +--
>  drivers/media/usb/dvb-usb/friio-fe.c         |    5 ++---
>  drivers/media/usb/hdpvr/hdpvr-i2c.c          |    3 +--
>  drivers/media/usb/pvrusb2/pvrusb2-encoder.c  |    3 +--
>  drivers/media/usb/pvrusb2/pvrusb2-i2c-core.c |    4 ++--
>  drivers/media/usb/pvrusb2/pvrusb2-v4l2.c     |    2 +-
>  drivers/media/usb/pwc/pwc-if.c               |    2 +-
>  drivers/media/usb/sn9c102/sn9c102_core.c     |    4 ++--
>  drivers/media/usb/usbvision/usbvision-i2c.c  |    3 +--
>  drivers/media/usb/uvc/uvc_v4l2.c             |    6 +++---
>  32 files changed, 47 insertions(+), 75 deletions(-)
>

Hi Mauro,

Given we're very near merge window, I'm wondering if you're
considering picking this series.
There's no rush, but if there's anything to review, please let me know.

Thanks!

    Ezequiel
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ