Linux kernel -stable discussions
 help / color / mirror / Atom feed
From: Greg KH <gregkh@linuxfoundation.org>
To: thomas.lendacky@amd.com, herbert@gondor.apana.org.au,
	stable@vger.kernel.org
Subject: Re: FAILED: patch "[PATCH] crypto: ccp - Don't assume export/import areas are aligned" failed to apply to 4.4-stable tree
Date: Sat, 9 Apr 2016 16:54:33 -0700	[thread overview]
Message-ID: <20160409235433.GA3662@kroah.com> (raw)
In-Reply-To: <1460245682188129@kroah.com>

Oops, nevermind, this was my fault, I've applied this to all of the
needed trees now, sorry for the noise,

greg k-h


On Sat, Apr 09, 2016 at 04:48:02PM -0700, gregkh@linuxfoundation.org wrote:
> 
> The patch below does not apply to the 4.4-stable tree.
> If someone wants it applied there, or to any other stable or longterm
> tree, then please email the backport, including the original git commit
> id to <stable@vger.kernel.org>.
> 
> thanks,
> 
> greg k-h
> 
> ------------------ original commit in Linus's tree ------------------
> 
> >From b31dde2a5cb1bf764282abf934266b7193c2bc7c Mon Sep 17 00:00:00 2001
> From: Tom Lendacky <thomas.lendacky@amd.com>
> Date: Tue, 2 Feb 2016 11:38:21 -0600
> Subject: [PATCH] crypto: ccp - Don't assume export/import areas are aligned
> 
> Use a local variable for the exported and imported state so that
> alignment is not an issue. On export, set a local variable from the
> request context and then memcpy the contents of the local variable to
> the export memory area. On import, memcpy the import memory area into
> a local variable and then use the local variable to set the request
> context.
> 
> Cc: <stable@vger.kernel.org> # 3.14.x-
> Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com>
> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
> 
> diff --git a/drivers/crypto/ccp/ccp-crypto-aes-cmac.c b/drivers/crypto/ccp/ccp-crypto-aes-cmac.c
> index 6a2d836eb2d9..d095452b8828 100644
> --- a/drivers/crypto/ccp/ccp-crypto-aes-cmac.c
> +++ b/drivers/crypto/ccp/ccp-crypto-aes-cmac.c
> @@ -223,12 +223,15 @@ static int ccp_aes_cmac_digest(struct ahash_request *req)
>  static int ccp_aes_cmac_export(struct ahash_request *req, void *out)
>  {
>  	struct ccp_aes_cmac_req_ctx *rctx = ahash_request_ctx(req);
> -	struct ccp_aes_cmac_exp_ctx *state = out;
> +	struct ccp_aes_cmac_exp_ctx state;
>  
> -	state->null_msg = rctx->null_msg;
> -	memcpy(state->iv, rctx->iv, sizeof(state->iv));
> -	state->buf_count = rctx->buf_count;
> -	memcpy(state->buf, rctx->buf, sizeof(state->buf));
> +	state.null_msg = rctx->null_msg;
> +	memcpy(state.iv, rctx->iv, sizeof(state.iv));
> +	state.buf_count = rctx->buf_count;
> +	memcpy(state.buf, rctx->buf, sizeof(state.buf));
> +
> +	/* 'out' may not be aligned so memcpy from local variable */
> +	memcpy(out, &state, sizeof(state));
>  
>  	return 0;
>  }
> @@ -236,12 +239,15 @@ static int ccp_aes_cmac_export(struct ahash_request *req, void *out)
>  static int ccp_aes_cmac_import(struct ahash_request *req, const void *in)
>  {
>  	struct ccp_aes_cmac_req_ctx *rctx = ahash_request_ctx(req);
> -	const struct ccp_aes_cmac_exp_ctx *state = in;
> +	struct ccp_aes_cmac_exp_ctx state;
> +
> +	/* 'in' may not be aligned so memcpy to local variable */
> +	memcpy(&state, in, sizeof(state));
>  
> -	rctx->null_msg = state->null_msg;
> -	memcpy(rctx->iv, state->iv, sizeof(rctx->iv));
> -	rctx->buf_count = state->buf_count;
> -	memcpy(rctx->buf, state->buf, sizeof(rctx->buf));
> +	rctx->null_msg = state.null_msg;
> +	memcpy(rctx->iv, state.iv, sizeof(rctx->iv));
> +	rctx->buf_count = state.buf_count;
> +	memcpy(rctx->buf, state.buf, sizeof(rctx->buf));
>  
>  	return 0;
>  }
> diff --git a/drivers/crypto/ccp/ccp-crypto-sha.c b/drivers/crypto/ccp/ccp-crypto-sha.c
> index a67128a7af23..7002c6b283e5 100644
> --- a/drivers/crypto/ccp/ccp-crypto-sha.c
> +++ b/drivers/crypto/ccp/ccp-crypto-sha.c
> @@ -210,14 +210,17 @@ static int ccp_sha_digest(struct ahash_request *req)
>  static int ccp_sha_export(struct ahash_request *req, void *out)
>  {
>  	struct ccp_sha_req_ctx *rctx = ahash_request_ctx(req);
> -	struct ccp_sha_exp_ctx *state = out;
> +	struct ccp_sha_exp_ctx state;
>  
> -	state->type = rctx->type;
> -	state->msg_bits = rctx->msg_bits;
> -	state->first = rctx->first;
> -	memcpy(state->ctx, rctx->ctx, sizeof(state->ctx));
> -	state->buf_count = rctx->buf_count;
> -	memcpy(state->buf, rctx->buf, sizeof(state->buf));
> +	state.type = rctx->type;
> +	state.msg_bits = rctx->msg_bits;
> +	state.first = rctx->first;
> +	memcpy(state.ctx, rctx->ctx, sizeof(state.ctx));
> +	state.buf_count = rctx->buf_count;
> +	memcpy(state.buf, rctx->buf, sizeof(state.buf));
> +
> +	/* 'out' may not be aligned so memcpy from local variable */
> +	memcpy(out, &state, sizeof(state));
>  
>  	return 0;
>  }
> @@ -225,14 +228,17 @@ static int ccp_sha_export(struct ahash_request *req, void *out)
>  static int ccp_sha_import(struct ahash_request *req, const void *in)
>  {
>  	struct ccp_sha_req_ctx *rctx = ahash_request_ctx(req);
> -	const struct ccp_sha_exp_ctx *state = in;
> -
> -	rctx->type = state->type;
> -	rctx->msg_bits = state->msg_bits;
> -	rctx->first = state->first;
> -	memcpy(rctx->ctx, state->ctx, sizeof(rctx->ctx));
> -	rctx->buf_count = state->buf_count;
> -	memcpy(rctx->buf, state->buf, sizeof(rctx->buf));
> +	struct ccp_sha_exp_ctx state;
> +
> +	/* 'in' may not be aligned so memcpy to local variable */
> +	memcpy(&state, in, sizeof(state));
> +
> +	rctx->type = state.type;
> +	rctx->msg_bits = state.msg_bits;
> +	rctx->first = state.first;
> +	memcpy(rctx->ctx, state.ctx, sizeof(rctx->ctx));
> +	rctx->buf_count = state.buf_count;
> +	memcpy(rctx->buf, state.buf, sizeof(rctx->buf));
>  
>  	return 0;
>  }
> 
> --
> To unsubscribe from this list: send the line "unsubscribe stable" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

      reply	other threads:[~2016-04-09 23:54 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-09 23:48 FAILED: patch "[PATCH] crypto: ccp - Don't assume export/import areas are aligned" failed to apply to 4.4-stable tree gregkh
2016-04-09 23:54 ` Greg KH [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=20160409235433.GA3662@kroah.com \
    --to=gregkh@linuxfoundation.org \
    --cc=herbert@gondor.apana.org.au \
    --cc=stable@vger.kernel.org \
    --cc=thomas.lendacky@amd.com \
    /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