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:   Thu, 5 Jul 2018 22:56:00 +0200
From:   Jann Horn <jannh@...gle.com>
To:     xiubli@...hat.com
Cc:     Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
        kernel list <linux-kernel@...r.kernel.org>,
        pkalever@...hat.com, pkarampu@...hat.com, atumball@...hat.com,
        sabose@...hat.com, mchristi@...hat.com
Subject: Re: [PATCH 2/2] uio: fix crash after the device is unregistered

On Thu, Jul 5, 2018 at 10:53 PM <xiubli@...hat.com> wrote:
>
> From: Xiubo Li <xiubli@...hat.com>
>
> For the target_core_user use case, after the device is unregistered
> it maybe still opened in user space, then the kernel will crash, like:
>
[...]
>
> Signed-off-by: Xiubo Li <xiubli@...hat.com>
> ---
>  drivers/uio/uio.c | 101 ++++++++++++++++++++++++++++++++++++++++++++++--------
>  1 file changed, 86 insertions(+), 15 deletions(-)
>
> diff --git a/drivers/uio/uio.c b/drivers/uio/uio.c
> index 33c3bfe..2b9268a 100644
> --- a/drivers/uio/uio.c
> +++ b/drivers/uio/uio.c
[...]
> @@ -720,30 +775,46 @@ static int uio_mmap(struct file *filep, struct vm_area_struct *vma)
>
>         vma->vm_private_data = idev;
>
> +       mutex_lock(&idev->info_lock);
> +       if (!idev->info) {
> +               ret = -EINVAL;
> +               goto out;
> +       }
> +
>         mi = uio_find_mem_index(vma);
> -       if (mi < 0)
> -               return -EINVAL;
> +       if (mi < 0) {
> +               ret = -EINVAL;
> +               goto out;
> +       }
>
>         requested_pages = vma_pages(vma);
>         actual_pages = ((idev->info->mem[mi].addr & ~PAGE_MASK)
>                         + idev->info->mem[mi].size + PAGE_SIZE -1) >> PAGE_SHIFT;
> -       if (requested_pages > actual_pages)
> -               return -EINVAL;
> +       if (requested_pages > actual_pages) {
> +               ret = -EINVAL;
> +               goto out;
> +       }
>
>         if (idev->info->mmap) {
>                 ret = idev->info->mmap(idev->info, vma);
> -               return ret;
> +               goto out;
>         }
>
>         switch (idev->info->mem[mi].memtype) {
>                 case UIO_MEM_PHYS:
> -                       return uio_mmap_physical(vma);
> +                       ret = uio_mmap_physical(vma);
> +                       break;
>                 case UIO_MEM_LOGICAL:
>                 case UIO_MEM_VIRTUAL:
> -                       return uio_mmap_logical(vma);
> +                       ret = uio_mmap_logical(vma);
> +                       break;
>                 default:
> -                       return -EINVAL;
> +                       ret = -EINVAL;
>         }
> +
> +out:
> +       mutex_lock(&idev->info_lock);

This is probably supposed to be mutex_unlock(...)?

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ