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:	Wed, 04 Oct 2006 08:04:06 -0700
From:	Kylene Jo Hall <kjhall@...ibm.com>
To:	Jeff Garzik <jeff@...zik.org>
Cc:	Andrew Morton <akpm@...l.org>, LKML <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] tpm: fix error handling

Ack'ed-by: Kylene Hall <kjhall@...ibm.com>

On Wed, 2006-10-04 at 10:16 -0400, Jeff Garzik wrote:
> - handle sysfs error
> - handle driver model errors
> - de-obfuscate platform_device_register_simple() call, which included an
>   assignment in between two function calls, in the same C statement.
> 
> Signed-off-by: Jeff Garzik <jeff@...zik.org>
> 
> ---
> 
>  drivers/char/tpm/tpm.c       |    9 ++++++++-
>  drivers/char/tpm/tpm_atmel.c |   10 +++++-----
>  drivers/char/tpm/tpm_nsc.c   |    6 ++++--
>  3 files changed, 17 insertions(+), 8 deletions(-)
> 
> diff --git a/drivers/char/tpm/tpm.c b/drivers/char/tpm/tpm.c
> index a082a2e..6ad2d3b 100644
> --- a/drivers/char/tpm/tpm.c
> +++ b/drivers/char/tpm/tpm.c
> @@ -1153,7 +1153,14 @@ #define DEVNAME_SIZE 7
>  
>  	spin_unlock(&driver_lock);
>  
> -	sysfs_create_group(&dev->kobj, chip->vendor.attr_group);
> +	if (sysfs_create_group(&dev->kobj, chip->vendor.attr_group)) {
> +		list_del(&chip->list);
> +		put_device(dev);
> +		clear_bit(chip->dev_num, dev_mask);
> +		kfree(chip);
> +		kfree(devname);
> +		return NULL;
> +	}
>  
>  	chip->bios_dir = tpm_bios_log_setup(devname);
>  
> diff --git a/drivers/char/tpm/tpm_atmel.c b/drivers/char/tpm/tpm_atmel.c
> index ad8ffe4..1ab0896 100644
> --- a/drivers/char/tpm/tpm_atmel.c
> +++ b/drivers/char/tpm/tpm_atmel.c
> @@ -184,7 +184,9 @@ static int __init init_atmel(void)
>  	unsigned long base;
>  	struct  tpm_chip *chip;
>  
> -	driver_register(&atml_drv);
> +	rc = driver_register(&atml_drv);
> +	if (rc)
> +		return rc;
>  
>  	if ((iobase = atmel_get_base_addr(&base, &region_size)) == NULL) {
>  		rc = -ENODEV;
> @@ -195,10 +197,8 @@ static int __init init_atmel(void)
>  	    (atmel_request_region
>  	     (tpm_atmel.base, region_size, "tpm_atmel0") == NULL) ? 0 : 1;
>  
> -
> -	if (IS_ERR
> -	    (pdev =
> -	     platform_device_register_simple("tpm_atmel", -1, NULL, 0))) {
> +	pdev = platform_device_register_simple("tpm_atmel", -1, NULL, 0);
> +	if (IS_ERR(pdev)) {
>  		rc = PTR_ERR(pdev);
>  		goto err_rel_reg;
>  	}
> diff --git a/drivers/char/tpm/tpm_nsc.c b/drivers/char/tpm/tpm_nsc.c
> index 26287aa..608f730 100644
> --- a/drivers/char/tpm/tpm_nsc.c
> +++ b/drivers/char/tpm/tpm_nsc.c
> @@ -284,7 +284,7 @@ static struct device_driver nsc_drv = {
>  static int __init init_nsc(void)
>  {
>  	int rc = 0;
> -	int lo, hi;
> +	int lo, hi, err;
>  	int nscAddrBase = TPM_ADDR;
>  	struct tpm_chip *chip;
>  	unsigned long base;
> @@ -297,7 +297,9 @@ static int __init init_nsc(void)
>  			return -ENODEV;
>  	}
>  
> -	driver_register(&nsc_drv);
> +	err = driver_register(&nsc_drv);
> +	if (err)
> +		return err;
>  
>  	hi = tpm_read_index(nscAddrBase, TPM_NSC_BASE0_HI);
>  	lo = tpm_read_index(nscAddrBase, TPM_NSC_BASE0_LO);

-
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