From: Marek Vasut <marex@denx.de>
To: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Cc: "linux-arm-kernel@lists.infradead.org"
<linux-arm-kernel@lists.infradead.org>,
Steve Capper <steve.capper@linaro.org>,
Catalin Marinas <catalin.marinas@arm.com>,
"linux-crypto@vger.kernel.org" <linux-crypto@vger.kernel.org>
Subject: Re: [PATCH] arm64: SHA-224/SHA-256 using ARMv8 Crypto Extensions
Date: Fri, 28 Mar 2014 06:15:05 +0100 [thread overview]
Message-ID: <201403280615.05438.marex@denx.de> (raw)
In-Reply-To: <CAKv+Gu9NJaq049MbT2soL=1DEUwUEvCgHo2jKLNtVW_3D6QzEA@mail.gmail.com>
On Thursday, March 27, 2014 at 02:23:41 PM, Ard Biesheuvel wrote:
> On 24 March 2014 21:36, Marek Vasut <marex@denx.de> wrote:
> > On Thursday, March 20, 2014 at 03:48:06 PM, Ard Biesheuvel wrote:
> >> This patch adds support for the SHA-224 and SHA-256 hash algorithms
> >> using the NEON based SHA-256 instructions that were introduced in ARM
> >> v8.
> >>
> >> Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
> >> ---
> >
> > [...]
> >
> >> + * Copyright (c) Alan Smithee.
> >
> > Email contact is missing here.
> >
> > [...]
>
> Actually, this is mostly copied from the original sha1_generic.c. In
> fact, my current v2 (which I will post shortly) has been reworked to
> such an extent that I am contemplating dropping this attribution
> altogether.
OK
> >> +static int sha224_init(struct shash_desc *desc)
> >> +{
> >> + struct sha256_state *sctx = shash_desc_ctx(desc);
> >> +
> >> + *sctx = (struct sha256_state){
> >
> > This cast is interesting, I don't quite understand it. Can you please
> > explain that to me ?
>
> http://gcc.gnu.org/onlinedocs/gcc/Compound-Literals.html
I have to wonder how many people will stumble across this and will wonder about
the same honestly. Sure, it's a valid construct, but it's quite strange in my
opinion. On the other hand, if noone else is against writing it like so, I won't
push it ...
> >> + .state = {
> >> + SHA224_H0, SHA224_H1, SHA224_H2, SHA224_H3,
> >> + SHA224_H4, SHA224_H5, SHA224_H6, SHA224_H7,
> >> + }
> >> + };
> >> + return 0;
> >> +}
> >
> > [...]
> >
> >> +static int sha224_final(struct shash_desc *desc, u8 *out)
> >> +{
> >> + struct sha256_state *sctx = shash_desc_ctx(desc);
> >> + __be32 *dst = (__be32 *)out;
> >> + int i;
> >> +
> >> + sha2_final(desc);
> >> +
> >> + for (i = 0; i < SHA224_DIGEST_SIZE / sizeof(*dst); i++)
> >> + dst[i] = cpu_to_be32(sctx->state[i]);
> >
> > Won't this cause unaligned access if *dst is not aligned to 32 bytes ?
>
> arm64 does not care about that, but I agree it would be better (and
> more explicit) to use put_unaligned() here, and leave it up to the
> architecture to allow it or work around it.
> WIll update that in v2.
OK, thanks!
> Thanks for the review.
Best regards,
Marek Vasut
WARNING: multiple messages have this Message-ID (diff)
From: marex@denx.de (Marek Vasut)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] arm64: SHA-224/SHA-256 using ARMv8 Crypto Extensions
Date: Fri, 28 Mar 2014 06:15:05 +0100 [thread overview]
Message-ID: <201403280615.05438.marex@denx.de> (raw)
In-Reply-To: <CAKv+Gu9NJaq049MbT2soL=1DEUwUEvCgHo2jKLNtVW_3D6QzEA@mail.gmail.com>
On Thursday, March 27, 2014 at 02:23:41 PM, Ard Biesheuvel wrote:
> On 24 March 2014 21:36, Marek Vasut <marex@denx.de> wrote:
> > On Thursday, March 20, 2014 at 03:48:06 PM, Ard Biesheuvel wrote:
> >> This patch adds support for the SHA-224 and SHA-256 hash algorithms
> >> using the NEON based SHA-256 instructions that were introduced in ARM
> >> v8.
> >>
> >> Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
> >> ---
> >
> > [...]
> >
> >> + * Copyright (c) Alan Smithee.
> >
> > Email contact is missing here.
> >
> > [...]
>
> Actually, this is mostly copied from the original sha1_generic.c. In
> fact, my current v2 (which I will post shortly) has been reworked to
> such an extent that I am contemplating dropping this attribution
> altogether.
OK
> >> +static int sha224_init(struct shash_desc *desc)
> >> +{
> >> + struct sha256_state *sctx = shash_desc_ctx(desc);
> >> +
> >> + *sctx = (struct sha256_state){
> >
> > This cast is interesting, I don't quite understand it. Can you please
> > explain that to me ?
>
> http://gcc.gnu.org/onlinedocs/gcc/Compound-Literals.html
I have to wonder how many people will stumble across this and will wonder about
the same honestly. Sure, it's a valid construct, but it's quite strange in my
opinion. On the other hand, if noone else is against writing it like so, I won't
push it ...
> >> + .state = {
> >> + SHA224_H0, SHA224_H1, SHA224_H2, SHA224_H3,
> >> + SHA224_H4, SHA224_H5, SHA224_H6, SHA224_H7,
> >> + }
> >> + };
> >> + return 0;
> >> +}
> >
> > [...]
> >
> >> +static int sha224_final(struct shash_desc *desc, u8 *out)
> >> +{
> >> + struct sha256_state *sctx = shash_desc_ctx(desc);
> >> + __be32 *dst = (__be32 *)out;
> >> + int i;
> >> +
> >> + sha2_final(desc);
> >> +
> >> + for (i = 0; i < SHA224_DIGEST_SIZE / sizeof(*dst); i++)
> >> + dst[i] = cpu_to_be32(sctx->state[i]);
> >
> > Won't this cause unaligned access if *dst is not aligned to 32 bytes ?
>
> arm64 does not care about that, but I agree it would be better (and
> more explicit) to use put_unaligned() here, and leave it up to the
> architecture to allow it or work around it.
> WIll update that in v2.
OK, thanks!
> Thanks for the review.
Best regards,
Marek Vasut
next prev parent reply other threads:[~2014-03-28 5:15 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-20 14:48 [PATCH] arm64: SHA-224/SHA-256 using ARMv8 Crypto Extensions Ard Biesheuvel
2014-03-20 14:48 ` Ard Biesheuvel
2014-03-24 20:36 ` Marek Vasut
2014-03-24 20:36 ` Marek Vasut
2014-03-27 13:23 ` Ard Biesheuvel
2014-03-27 13:23 ` Ard Biesheuvel
2014-03-28 5:15 ` Marek Vasut [this message]
2014-03-28 5:15 ` Marek Vasut
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=201403280615.05438.marex@denx.de \
--to=marex@denx.de \
--cc=ard.biesheuvel@linaro.org \
--cc=catalin.marinas@arm.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-crypto@vger.kernel.org \
--cc=steve.capper@linaro.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.