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 for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Wed, 15 Jun 2016 13:17:09 +0200
From:	Joerg Roedel <joro@...tes.org>
To:	Wan Zongshun <vincent.wan@....com>
Cc:	iommu@...ts.linux-foundation.org, vw@...mu.org,
	mcuos.com@...il.com, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] iommu/amd: Add proper error check in two functions

On Tue, May 10, 2016 at 12:40:01PM -0400, Wan Zongshun wrote:
> From: Wan Zongshun <Vincent.Wan@....com>
> 
> This patch is to do the following:
> 
> 1. Add error check for caller of iommu_device_create.
> 
> 2. Add error check for caller of iommu_device_link and
> move 'iommu = amd_iommu_rlookup_table[dev_data->devid]' out of
> iommuv2 capability condition that make iommu_device_link also
> use the 'iommu' to make code more clear and no more than 80
> characters.
> 
> Signed-off-by: Wan Zongshun <Vincent.Wan@....com>
> ---
>  drivers/iommu/amd_iommu.c      | 12 ++++--------
>  drivers/iommu/amd_iommu_init.c |  2 ++
>  2 files changed, 6 insertions(+), 8 deletions(-)
> 
> diff --git a/drivers/iommu/amd_iommu.c b/drivers/iommu/amd_iommu.c
> index 547cdd4..232a3b9 100644
> --- a/drivers/iommu/amd_iommu.c
> +++ b/drivers/iommu/amd_iommu.c
> @@ -414,6 +414,7 @@ out:
>  static int iommu_init_device(struct device *dev)
>  {
>  	struct iommu_dev_data *dev_data;
> +	struct amd_iommu *iommu;
>  	int devid;
>  
>  	if (dev->archdata.iommu)
> @@ -427,19 +428,14 @@ static int iommu_init_device(struct device *dev)
>  	if (!dev_data)
>  		return -ENOMEM;
>  
> -	if (dev_is_pci(dev) && pci_iommuv2_capable(to_pci_dev(dev))) {
> -		struct amd_iommu *iommu;
> +	iommu = amd_iommu_rlookup_table[dev_data->devid];
>  
> -		iommu = amd_iommu_rlookup_table[dev_data->devid];
> +	if (dev_is_pci(dev) && pci_iommuv2_capable(to_pci_dev(dev)))
>  		dev_data->iommu_v2 = iommu->is_iommu_v2;
> -	}
>  
>  	dev->archdata.iommu = dev_data;
>  
> -	iommu_device_link(amd_iommu_rlookup_table[dev_data->devid]->iommu_dev,
> -			  dev);
> -
> -	return 0;
> +	return iommu_device_link(iommu->iommu_dev, dev);

I don't like to fail the whole iommu_init_device() function here, since
iommu_device_link only creates sysfs entries. Please just check for an
error return code and print a message if one happened. The function
should return 0 then.


	Joerg

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ