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]
Date:	Thu, 9 Jul 2015 12:31:16 +0300
From:	Oded Gabbay <oded.gabbay@...il.com>
To:	Maninder Singh <maninder1.s@...sung.com>
Cc:	David Airlie <airlied@...ux.ie>,
	Maling list - DRI developers 
	<dri-devel@...ts.freedesktop.org>,
	"Linux-Kernel@...r. Kernel. Org" <linux-kernel@...r.kernel.org>,
	pankaj.m@...sung.com
Subject: Re: [PATCH v2] drm/amdkfd: validate pdd where it acquired first

On Thu, Jul 9, 2015 at 12:11 PM, Maninder Singh <maninder1.s@...sung.com> wrote:
> Currently pdd is validate after dereferencing it, which is
> not correct, Thus validate pdd before its first use.
>
> Signed-off-by: Maninder Singh <maninder1.s@...sung.com>
> ---
> v1: remove validation of pdd after its usage
> v2: do validation at first place rather than removing
>
>  drivers/gpu/drm/amd/amdkfd/kfd_process.c |    9 +++++++--
>  1 file changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/amd/amdkfd/kfd_process.c b/drivers/gpu/drm/amd/amdkfd/kfd_process.c
> index 8a1f999..9be0070 100644
> --- a/drivers/gpu/drm/amd/amdkfd/kfd_process.c
> +++ b/drivers/gpu/drm/amd/amdkfd/kfd_process.c
> @@ -420,6 +420,12 @@ void kfd_unbind_process_from_device(struct kfd_dev *dev, unsigned int pasid)
>         pqm_uninit(&p->pqm);
>
>         pdd = kfd_get_process_device_data(dev, p);
> +
> +       if (!pdd) {
> +               mutex_unlock(&p->mutex);
> +               return;
> +       }
> +
>         if (pdd->reset_wavefronts) {
>                 dbgdev_wave_reset_wavefronts(pdd->dev, p);
>                 pdd->reset_wavefronts = false;
> @@ -431,8 +437,7 @@ void kfd_unbind_process_from_device(struct kfd_dev *dev, unsigned int pasid)
>          * We don't call amd_iommu_unbind_pasid() here
>          * because the IOMMU called us.
>          */
> -       if (pdd)
> -               pdd->bound = false;
> +       pdd->bound = false;
>
>         mutex_unlock(&p->mutex);
>  }
> --
> 1.7.9.5
>
Thanks!
Applied to my -fixes tree.

        Oded
--
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