From: walter harms <wharms@bfs.de>
To: Kulikov Vasiliy <segooon@gmail.com>
Cc: kernel-janitors@vger.kernel.org,
Greg Kroah-Hartman <gregkh@suse.de>,
David Cross <david.cross@cypress.com>,
devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 09/14] staging: westbridge: improve error path
Date: Mon, 06 Sep 2010 09:51:20 +0200 [thread overview]
Message-ID: <4C849D78.9040202@bfs.de> (raw)
In-Reply-To: <1283711573-7460-1-git-send-email-segooon@gmail.com>
Kulikov Vasiliy schrieb:
> From: Vasiliy Kulikov <segooon@gmail.com>
>
> kmalloc() may fail, check for it.
> Allocated memory is not freed.
> Use IS_ERR() instead of strict checking.
>
> Signed-off-by: Vasiliy Kulikov <segooon@gmail.com>
> ---
> I couldn't compile this driver at all, so it is not tested.
>
> .../staging/westbridge/astoria/gadget/cyasgadget.c | 10 +++++++++-
> 1 files changed, 9 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/staging/westbridge/astoria/gadget/cyasgadget.c b/drivers/staging/westbridge/astoria/gadget/cyasgadget.c
> index ced239d..48080b3 100644
> --- a/drivers/staging/westbridge/astoria/gadget/cyasgadget.c
> +++ b/drivers/staging/westbridge/astoria/gadget/cyasgadget.c
> @@ -1123,6 +1123,8 @@ static int cyasgadget_ioctl(
>
> /* better use fixed size buff*/
> alloc_filename = kmalloc(k_d.name_length + 1, GFP_KERNEL);
> + if (alloc_filename == NULL)
> + return -ENOMEM;
>
> /* get the filename */
> if (copy_from_user(alloc_filename, k_d.file_name,
> @@ -1132,12 +1134,13 @@ static int cyasgadget_ioctl(
> "copy file name from user space failed\n",
> __func__);
> #endif
> + kfree(alloc_filename);
> return -EFAULT;
> }
>
> file_to_allocate = filp_open(alloc_filename, O_RDWR, 0);
>
> - if ((int)file_to_allocate != 0xfffffffe) {
> + if (!IS_ERR(file_to_allocate)) {
>
> struct address_space *mapping =
> file_to_allocate->f_mapping;
> @@ -1379,6 +1382,7 @@ static int cyasgadget_ioctl(
> __func__, alloc_filename);
> } /* end if (file_to_allocate)*/
> #endif
> + kfree(alloc_filename);
> initsoj_safe_exit:
> ret_stat = 0;
> retval = __put_user(ret_stat,
> @@ -1410,12 +1414,15 @@ initsoj_safe_exit:
> return -EFAULT;
>
> map_filename = kmalloc(k_d.name_length + 1, GFP_KERNEL);
> + if (map_filename == NULL)
> + return -ENOMEM;
> if (copy_from_user(map_filename, k_d.file_name,
> k_d.name_length + 1)) {
> #ifndef WESTBRIDGE_NDEBUG
> cy_as_hal_print_message("%s: copy file name from "
> "user space failed\n", __func__);
> #endif
> + kfree(map_filename);
> return -EFAULT;
> }
the indention should be fixed also.
re,
wh
> @@ -1561,6 +1568,7 @@ initsoj_safe_exit:
> __func__, map_filename);
> }
> #endif
> + kfree(map_filename);
>
> ret_stat = 0;
> retval = __put_user(ret_stat, (uint32_t __user *)
next prev parent reply other threads:[~2010-09-06 7:51 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-09-05 18:32 [PATCH 09/14] staging: westbridge: improve error path Kulikov Vasiliy
2010-09-06 7:51 ` walter harms [this message]
2010-09-06 20:33 ` Greg KH
2010-09-07 7:16 ` walter harms
2010-09-08 0:23 ` Greg KH
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4C849D78.9040202@bfs.de \
--to=wharms@bfs.de \
--cc=david.cross@cypress.com \
--cc=devel@driverdev.osuosl.org \
--cc=gregkh@suse.de \
--cc=kernel-janitors@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=segooon@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox