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:   Mon, 14 Oct 2019 23:03:09 +0300
From:   Jarkko Sakkinen <jarkko.sakkinen@...ux.intel.com>
To:     Pavel Tatashin <pasha.tatashin@...een.com>
Cc:     jmorris@...ei.org, sashal@...nel.org, peterhuewe@....de,
        jgg@...pe.ca, linux-kernel@...r.kernel.org,
        linux-doc@...r.kernel.org, linux-integrity@...r.kernel.org,
        linux-kernel@...rosoft.com, thiruan@...rosoft.com,
        bryankel@...rosoft.com, tee-dev@...ts.linaro.org,
        ilias.apalodimas@...aro.org, sumit.garg@...aro.org,
        rdunlap@...radead.org
Subject: Re: [PATCH] ftpm: add shutdown call back

On Fri, Oct 11, 2019 at 10:57:21AM -0400, Pavel Tatashin wrote:
> From: thiruan <thiruan@...rosoft.com>
> 
> add shutdown call back to close existing session with fTPM TA
> to support kexec scenario.
> 
> Signed-off-by: Thirupathaiah Annapureddy <thiruan@...rosoft.com>
> Signed-off-by: Pavel Tatashin <pasha.tatashin@...een.com>

Use the correct tag in the short summary (tpm/tpm_ftpm_tee).

> ---
>  drivers/char/tpm/tpm_ftpm_tee.c | 22 ++++++++++++++++++++++
>  1 file changed, 22 insertions(+)
> 
> diff --git a/drivers/char/tpm/tpm_ftpm_tee.c b/drivers/char/tpm/tpm_ftpm_tee.c
> index 6640a14dbe48..c245be6f4015 100644
> --- a/drivers/char/tpm/tpm_ftpm_tee.c
> +++ b/drivers/char/tpm/tpm_ftpm_tee.c
> @@ -328,6 +328,27 @@ static int ftpm_tee_remove(struct platform_device *pdev)
>  	return 0;
>  }
>  
> +/**
> + * ftpm_tee_shutdown - shutdown the TPM device
> + * @pdev: the platform_device description.
> + *
> + * Return:
> + * 	none.

Do not document return values for a void function. The last three lines
do not serve any purpose.

> + */
> +static void ftpm_tee_shutdown(struct platform_device *pdev)
> +{
> +	struct ftpm_tee_private *pvt_data = dev_get_drvdata(&pdev->dev);
> +
> +	/* Free the shared memory pool */
> +	tee_shm_free(pvt_data->shm);

Is it unexpected that calling tee_shm_free() free's a shared memory
pool? A comment here implies exactly that.

> +	/* close the existing session with fTPM TA*/
> +	tee_client_close_session(pvt_data->ctx, pvt_data->session);

Ditto.

> +
> +	/* close the context with TEE driver */
> +	tee_client_close_context(pvt_data->ctx);

Ditto.

> +}
> +
>  static const struct of_device_id of_ftpm_tee_ids[] = {
>  	{ .compatible = "microsoft,ftpm" },
>  	{ }
> @@ -341,6 +362,7 @@ static struct platform_driver ftpm_tee_driver = {
>  	},
>  	.probe = ftpm_tee_probe,
>  	.remove = ftpm_tee_remove,
> +	.shutdown = ftpm_tee_shutdown,
>  };
>  
>  module_platform_driver(ftpm_tee_driver);
> -- 
> 2.23.0
> 

/Jarkko

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ