public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Marcel Selhorst <tpm@selhorst.net>
To: Marcin Obara <marcin_obara@users.sourceforge.net>
Cc: tpmdd-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] tpm:increase size of internal TPM response buffers
Date: Wed, 02 Jul 2008 13:36:07 +0200	[thread overview]
Message-ID: <486B6827.3060205@selhorst.net> (raw)
In-Reply-To: <alpine.DEB.0.99.0806052220040.8295@ip-195-3-221-75.vnet.pl>

Acked-by: Marcel Selhorst <tpm@selhorst.net>

Marcin Obara schrieb:
> This patch increases size of driver internal response buffers.
> Some TPM responses defined in TCG TPM Specification Version 1.2 Revision 103
> have increased size and do not fit previously defined buffers.
> Some TPM responses do not have fixed size, so bigger response buffers
> have to be allocated. 200B buffers should be enough.
> 
> Signed-off-by: Marcin Obara <marcin_obara@users.sourceforge.net>
> 
> --- linux/drivers/char/tpm/tpm.c	2008-06-05 22:12:47.000000000 +0200
> +++ linux_tpm/drivers/char/tpm/tpm.c	2008-06-05 22:10:59.000000000 +0200
> @@ -579,91 +579,133 @@ void tpm_continue_selftest(struct tpm_ch
>  }
>  EXPORT_SYMBOL_GPL(tpm_continue_selftest);
>  
> +#define  TPM_INTERNAL_RESULT_SIZE 200
> +
>  ssize_t tpm_show_enabled(struct device * dev, struct device_attribute * attr,
>  			char *buf)
>  {
> -	u8 data[max_t(int, ARRAY_SIZE(tpm_cap), 35)];
> +	u8 *data;
>  	ssize_t rc;
>  
>  	struct tpm_chip *chip = dev_get_drvdata(dev);
>  	if (chip == NULL)
>  		return -ENODEV;
>  
> +	data = kzalloc(TPM_INTERNAL_RESULT_SIZE, GFP_KERNEL);
> +	if (!data)
> +		return -ENOMEM;
> +
>  	memcpy(data, tpm_cap, sizeof(tpm_cap));
>  	data[TPM_CAP_IDX] = TPM_CAP_FLAG;
>  	data[TPM_CAP_SUBCAP_IDX] = TPM_CAP_FLAG_PERM;
>  
> -	rc = transmit_cmd(chip, data, sizeof(data),
> -			"attemtping to determine the permanent state");
> -	if (rc)
> +	rc = transmit_cmd(chip, data, TPM_INTERNAL_RESULT_SIZE,
> +			"attemtping to determine the permanent enabled state");
> +	if (rc) {
> +		kfree(data);
>  		return 0;
> -	return sprintf(buf, "%d\n", !data[TPM_GET_CAP_PERM_DISABLE_IDX]);
> +	}
> +
> +	rc = sprintf(buf, "%d\n", !data[TPM_GET_CAP_PERM_DISABLE_IDX]);
> +
> +	kfree(data);
> +	return rc;
>  }
>  EXPORT_SYMBOL_GPL(tpm_show_enabled);
>  
>  ssize_t tpm_show_active(struct device * dev, struct device_attribute * attr,
>  			char *buf)
>  {
> -	u8 data[max_t(int, ARRAY_SIZE(tpm_cap), 35)];
> +	u8 *data;
>  	ssize_t rc;
>  
>  	struct tpm_chip *chip = dev_get_drvdata(dev);
>  	if (chip == NULL)
>  		return -ENODEV;
>  
> +	data = kzalloc(TPM_INTERNAL_RESULT_SIZE, GFP_KERNEL);
> +	if (!data)
> +		return -ENOMEM;
> +
>  	memcpy(data, tpm_cap, sizeof(tpm_cap));
>  	data[TPM_CAP_IDX] = TPM_CAP_FLAG;
>  	data[TPM_CAP_SUBCAP_IDX] = TPM_CAP_FLAG_PERM;
>  
> -	rc = transmit_cmd(chip, data, sizeof(data),
> -			"attemtping to determine the permanent state");
> -	if (rc)
> +	rc = transmit_cmd(chip, data, TPM_INTERNAL_RESULT_SIZE,
> +			"attemtping to determine the permanent active state");
> +	if (rc) {
> +		kfree(data);
>  		return 0;
> -	return sprintf(buf, "%d\n", !data[TPM_GET_CAP_PERM_INACTIVE_IDX]);
> +	}
> +
> +	rc = sprintf(buf, "%d\n", !data[TPM_GET_CAP_PERM_INACTIVE_IDX]);
> +
> +	kfree(data);
> +	return rc;
>  }
>  EXPORT_SYMBOL_GPL(tpm_show_active);
>  
>  ssize_t tpm_show_owned(struct device * dev, struct device_attribute * attr,
>  			char *buf)
>  {
> -	u8 data[sizeof(tpm_cap)];
> +	u8 *data;
>  	ssize_t rc;
>  
>  	struct tpm_chip *chip = dev_get_drvdata(dev);
>  	if (chip == NULL)
>  		return -ENODEV;
>  
> +	data = kzalloc(TPM_INTERNAL_RESULT_SIZE, GFP_KERNEL);
> +	if (!data)
> +		return -ENOMEM;
> +
>  	memcpy(data, tpm_cap, sizeof(tpm_cap));
>  	data[TPM_CAP_IDX] = TPM_CAP_PROP;
>  	data[TPM_CAP_SUBCAP_IDX] = TPM_CAP_PROP_OWNER;
>  
> -	rc = transmit_cmd(chip, data, sizeof(data),
> +	rc = transmit_cmd(chip, data, TPM_INTERNAL_RESULT_SIZE,
>  			"attempting to determine the owner state");
> -	if (rc)
> +	if (rc) {
> +		kfree(data);
>  		return 0;
> -	return sprintf(buf, "%d\n", data[TPM_GET_CAP_RET_BOOL_1_IDX]);
> +	}
> +
> +	rc = sprintf(buf, "%d\n", data[TPM_GET_CAP_RET_BOOL_1_IDX]);
> +
> +	kfree(data);
> +	return rc;
>  }
>  EXPORT_SYMBOL_GPL(tpm_show_owned);
>  
>  ssize_t tpm_show_temp_deactivated(struct device * dev,
>  				struct device_attribute * attr, char *buf)
>  {
> -	u8 data[sizeof(tpm_cap)];
> +	u8 *data;
>  	ssize_t rc;
>  
>  	struct tpm_chip *chip = dev_get_drvdata(dev);
>  	if (chip == NULL)
>  		return -ENODEV;
>  
> +	data = kzalloc(TPM_INTERNAL_RESULT_SIZE, GFP_KERNEL);
> +	if (!data)
> +		return -ENOMEM;
> +
>  	memcpy(data, tpm_cap, sizeof(tpm_cap));
>  	data[TPM_CAP_IDX] = TPM_CAP_FLAG;
>  	data[TPM_CAP_SUBCAP_IDX] = TPM_CAP_FLAG_VOL;
>  
> -	rc = transmit_cmd(chip, data, sizeof(data),
> +	rc = transmit_cmd(chip, data, TPM_INTERNAL_RESULT_SIZE,
>  			"attempting to determine the temporary state");
> -	if (rc)
> +	if (rc) {
> +		kfree(data);
>  		return 0;
> -	return sprintf(buf, "%d\n", data[TPM_GET_CAP_TEMP_INACTIVE_IDX]);
> +	}
> +
> +	rc = sprintf(buf, "%d\n", data[TPM_GET_CAP_TEMP_INACTIVE_IDX]);
> +
> +	kfree(data);
> +	return rc;
>  }
>  EXPORT_SYMBOL_GPL(tpm_show_temp_deactivated);
>  
> @@ -677,7 +719,7 @@ static const u8 pcrread[] = {
>  ssize_t tpm_show_pcrs(struct device *dev, struct device_attribute *attr,
>  		      char *buf)
>  {
> -	u8 data[max_t(int, max(ARRAY_SIZE(tpm_cap), ARRAY_SIZE(pcrread)), 30)];
> +	u8 *data;
>  	ssize_t rc;
>  	int i, j, num_pcrs;
>  	__be32 index;
> @@ -687,21 +729,27 @@ ssize_t tpm_show_pcrs(struct device *dev
>  	if (chip == NULL)
>  		return -ENODEV;
>  
> +	data = kzalloc(TPM_INTERNAL_RESULT_SIZE, GFP_KERNEL);
> +	if (!data)
> +		return -ENOMEM;
> +
>  	memcpy(data, tpm_cap, sizeof(tpm_cap));
>  	data[TPM_CAP_IDX] = TPM_CAP_PROP;
>  	data[TPM_CAP_SUBCAP_IDX] = TPM_CAP_PROP_PCR;
>  
> -	rc = transmit_cmd(chip, data, sizeof(data),
> +	rc = transmit_cmd(chip, data, TPM_INTERNAL_RESULT_SIZE,
>  			"attempting to determine the number of PCRS");
> -	if (rc)
> +	if (rc) {
> +		kfree(data);
>  		return 0;
> +	}
>  
>  	num_pcrs = be32_to_cpu(*((__be32 *) (data + 14)));
>  	for (i = 0; i < num_pcrs; i++) {
>  		memcpy(data, pcrread, sizeof(pcrread));
>  		index = cpu_to_be32(i);
>  		memcpy(data + 10, &index, 4);
> -		rc = transmit_cmd(chip, data, sizeof(data),
> +		rc = transmit_cmd(chip, data, TPM_INTERNAL_RESULT_SIZE,
>  				"attempting to read a PCR");
>  		if (rc)
>  			goto out;
> @@ -711,6 +759,7 @@ ssize_t tpm_show_pcrs(struct device *dev
>  		str += sprintf(str, "\n");
>  	}
>  out:
> +	kfree(data);
>  	return str - buf;
>  }
>  EXPORT_SYMBOL_GPL(tpm_show_pcrs);
> @@ -794,7 +843,7 @@ static const u8 cap_version[] = {
>  ssize_t tpm_show_caps(struct device *dev, struct device_attribute *attr,
>  		      char *buf)
>  {
> -	u8 data[max_t(int, max(ARRAY_SIZE(tpm_cap), ARRAY_SIZE(cap_version)), 30)];
> +	u8 *data;
>  	ssize_t rc;
>  	char *str = buf;
>  
> @@ -802,21 +851,27 @@ ssize_t tpm_show_caps(struct device *dev
>  	if (chip == NULL)
>  		return -ENODEV;
>  
> +	data = kzalloc(TPM_INTERNAL_RESULT_SIZE, GFP_KERNEL);
> +	if (!data)
> +		return -ENOMEM;
> +
>  	memcpy(data, tpm_cap, sizeof(tpm_cap));
>  	data[TPM_CAP_IDX] = TPM_CAP_PROP;
>  	data[TPM_CAP_SUBCAP_IDX] = TPM_CAP_PROP_MANUFACTURER;
>  
> -	rc = transmit_cmd(chip, data, sizeof(data),
> +	rc = transmit_cmd(chip, data, TPM_INTERNAL_RESULT_SIZE,
>  			"attempting to determine the manufacturer");
> -	if (rc)
> +	if (rc) {
> +		kfree(data);
>  		return 0;
> +	}
>  
>  	str += sprintf(str, "Manufacturer: 0x%x\n",
>  		       be32_to_cpu(*((__be32 *) (data + TPM_GET_CAP_RET_UINT32_1_IDX))));
>  
>  	memcpy(data, cap_version, sizeof(cap_version));
>  	data[CAP_VERSION_IDX] = CAP_VERSION_1_1;
> -	rc = transmit_cmd(chip, data, sizeof(data),
> +	rc = transmit_cmd(chip, data, TPM_INTERNAL_RESULT_SIZE,
>  			"attempting to determine the 1.1 version");
>  	if (rc)
>  		goto out;
> @@ -827,6 +882,7 @@ ssize_t tpm_show_caps(struct device *dev
>  		       (int) data[17]);
>  
>  out:
> +	kfree(data);
>  	return str - buf;
>  }
>  EXPORT_SYMBOL_GPL(tpm_show_caps);
> @@ -834,7 +890,7 @@ EXPORT_SYMBOL_GPL(tpm_show_caps);
>  ssize_t tpm_show_caps_1_2(struct device * dev,
>  			  struct device_attribute * attr, char *buf)
>  {
> -	u8 data[max_t(int, max(ARRAY_SIZE(tpm_cap), ARRAY_SIZE(cap_version)), 30)];
> +	u8 *data;
>  	ssize_t len;
>  	char *str = buf;
>  
> @@ -842,15 +898,20 @@ ssize_t tpm_show_caps_1_2(struct device 
>  	if (chip == NULL)
>  		return -ENODEV;
>  
> +	data = kzalloc(TPM_INTERNAL_RESULT_SIZE, GFP_KERNEL);
> +	if (!data)
> +		return -ENOMEM;
> +
>  	memcpy(data, tpm_cap, sizeof(tpm_cap));
>  	data[TPM_CAP_IDX] = TPM_CAP_PROP;
>  	data[TPM_CAP_SUBCAP_IDX] = TPM_CAP_PROP_MANUFACTURER;
>  
> -	if ((len = tpm_transmit(chip, data, sizeof(data))) <=
> +	if ((len = tpm_transmit(chip, data, TPM_INTERNAL_RESULT_SIZE)) <=
>  	    TPM_ERROR_SIZE) {
>  		dev_dbg(chip->dev, "A TPM error (%d) occurred "
>  			"attempting to determine the manufacturer\n",
>  			be32_to_cpu(*((__be32 *) (data + TPM_RET_CODE_IDX))));
> +		kfree(data);
>  		return 0;
>  	}
>  
> @@ -860,7 +921,7 @@ ssize_t tpm_show_caps_1_2(struct device 
>  	memcpy(data, cap_version, sizeof(cap_version));
>  	data[CAP_VERSION_IDX] = CAP_VERSION_1_2;
>  
> -	if ((len = tpm_transmit(chip, data, sizeof(data))) <=
> +	if ((len = tpm_transmit(chip, data, TPM_INTERNAL_RESULT_SIZE)) <=
>  	    TPM_ERROR_SIZE) {
>  		dev_err(chip->dev, "A TPM error (%d) occurred "
>  			"attempting to determine the 1.2 version\n",
> @@ -873,6 +934,7 @@ ssize_t tpm_show_caps_1_2(struct device 
>  		       (int) data[19]);
>  
>  out:
> +	kfree(data);
>  	return str - buf;
>  }
>  EXPORT_SYMBOL_GPL(tpm_show_caps_1_2);
> 

      parent reply	other threads:[~2008-07-02 11:41 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-06-05 20:23 [PATCH] tpm:increase size of internal TPM response buffers Marcin Obara
2008-06-11 23:09 ` [tpmdd-devel] " Debora Velarde
2008-07-02 11:36 ` Marcel Selhorst [this message]

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=486B6827.3060205@selhorst.net \
    --to=tpm@selhorst.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=marcin_obara@users.sourceforge.net \
    --cc=tpmdd-devel@lists.sourceforge.net \
    /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