linux-fbdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] video: fbdev: udlfb: Fix buffer on stack
@ 2017-04-22 16:49 Maksim Salau
  2017-04-23 19:58 ` Geert Uytterhoeven
  2017-04-24  8:06 ` Maksim Salau
  0 siblings, 2 replies; 3+ messages in thread
From: Maksim Salau @ 2017-04-22 16:49 UTC (permalink / raw)
  To: linux-fbdev

Allocate buffers on HEAP instead of STACK for local array
that is to be sent using usb_control_msg().

Signed-off-by: Maksim Salau <maksim.salau@gmail.com>
---
 drivers/video/fbdev/udlfb.c | 16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)

diff --git a/drivers/video/fbdev/udlfb.c b/drivers/video/fbdev/udlfb.c
index e9c2f7b..1e83e19 100644
--- a/drivers/video/fbdev/udlfb.c
+++ b/drivers/video/fbdev/udlfb.c
@@ -1487,15 +1487,27 @@ static struct device_attribute fb_device_attrs[] = {
 static int dlfb_select_std_channel(struct dlfb_data *dev)
 {
 	int ret;
-	u8 set_def_chn[] = {	   0x57, 0xCD, 0xDC, 0xA7,
+	void *buf = NULL;
+	const u8 set_def_chn[] = {
+				0x57, 0xCD, 0xDC, 0xA7,
 				0x1C, 0x88, 0x5E, 0x15,
 				0x60, 0xFE, 0xC6, 0x97,
 				0x16, 0x3D, 0x47, 0xF2  };
 
+	buf = kmalloc(sizeof(set_def_chn), GFP_KERNEL);
+
+	if (!buf)
+		return -ENOMEM;
+
+	memcpy(buf, set_def_chn, sizeof(set_def_chn));
+
 	ret = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, 0),
 			NR_USB_REQUEST_CHANNEL,
 			(USB_DIR_OUT | USB_TYPE_VENDOR), 0, 0,
-			set_def_chn, sizeof(set_def_chn), USB_CTRL_SET_TIMEOUT);
+			buf, sizeof(set_def_chn), USB_CTRL_SET_TIMEOUT);
+
+	kfree(buf);
+
 	return ret;
 }
 
-- 
2.9.3


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] video: fbdev: udlfb: Fix buffer on stack
  2017-04-22 16:49 [PATCH] video: fbdev: udlfb: Fix buffer on stack Maksim Salau
@ 2017-04-23 19:58 ` Geert Uytterhoeven
  2017-04-24  8:06 ` Maksim Salau
  1 sibling, 0 replies; 3+ messages in thread
From: Geert Uytterhoeven @ 2017-04-23 19:58 UTC (permalink / raw)
  To: linux-fbdev

On Sat, Apr 22, 2017 at 6:49 PM, Maksim Salau <maksim.salau@gmail.com> wrote:
> Allocate buffers on HEAP instead of STACK for local array
> that is to be sent using usb_control_msg().
>
> Signed-off-by: Maksim Salau <maksim.salau@gmail.com>
> ---
>  drivers/video/fbdev/udlfb.c | 16 ++++++++++++++--
>  1 file changed, 14 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/video/fbdev/udlfb.c b/drivers/video/fbdev/udlfb.c
> index e9c2f7b..1e83e19 100644
> --- a/drivers/video/fbdev/udlfb.c
> +++ b/drivers/video/fbdev/udlfb.c
> @@ -1487,15 +1487,27 @@ static struct device_attribute fb_device_attrs[] = {
>  static int dlfb_select_std_channel(struct dlfb_data *dev)
>  {
>         int ret;
> -       u8 set_def_chn[] = {       0x57, 0xCD, 0xDC, 0xA7,
> +       void *buf = NULL;
> +       const u8 set_def_chn[] = {

Please make this static, else it will be copied once more by the compiler.

> +                               0x57, 0xCD, 0xDC, 0xA7,
>                                 0x1C, 0x88, 0x5E, 0x15,
>                                 0x60, 0xFE, 0xC6, 0x97,
>                                 0x16, 0x3D, 0x47, 0xF2  };
>
> +       buf = kmalloc(sizeof(set_def_chn), GFP_KERNEL);
> +
> +       if (!buf)
> +               return -ENOMEM;
> +
> +       memcpy(buf, set_def_chn, sizeof(set_def_chn));

kmalloc() + memcpy() => kmemdup().

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] video: fbdev: udlfb: Fix buffer on stack
  2017-04-22 16:49 [PATCH] video: fbdev: udlfb: Fix buffer on stack Maksim Salau
  2017-04-23 19:58 ` Geert Uytterhoeven
@ 2017-04-24  8:06 ` Maksim Salau
  1 sibling, 0 replies; 3+ messages in thread
From: Maksim Salau @ 2017-04-24  8:06 UTC (permalink / raw)
  To: linux-fbdev

> > +       const u8 set_def_chn[] = {  
> 
> Please make this static, else it will be copied once more by the compiler.
> 
> kmalloc() + memcpy() => kmemdup().
> 

Thanks, Geert!

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-04-24  8:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-22 16:49 [PATCH] video: fbdev: udlfb: Fix buffer on stack Maksim Salau
2017-04-23 19:58 ` Geert Uytterhoeven
2017-04-24  8:06 ` Maksim Salau

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).