From: Behan Webster <behanw@converseincode.com>
To: herbert@gondor.apana.org.au, davem@davemloft.net
Cc: linux-crypto@vger.kernel.org, linux-kernel@vger.kernel.org,
"Jan-Simon Möller" <dl9pf@gmx.de>,
pageexec@freemail.hu, "Behan Webster" <behanw@converseincode.com>
Subject: [PATCH 2/2] Remove VLAIS usage from crypto/testmgr.c
Date: Tue, 30 Oct 2012 14:37:29 -0400 [thread overview]
Message-ID: <1351622249-18084-3-git-send-email-behanw@converseincode.com> (raw)
In-Reply-To: <1351622249-18084-1-git-send-email-behanw@converseincode.com>
From: Jan-Simon Möller <dl9pf@gmx.de>
The use of variable length arrays in structs (VLAIS) in the Linux Kernel code
precludes the use of compilers which don't implement VLAIS (for instance the
Clang compiler). This patch instead allocates the appropriate amount of memory
using an char array.
Patch from series at
http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20120507/142707.html
by PaX Team.
Signed-off-by: Jan-Simon Möller <dl9pf@gmx.de>
Cc: pageexec@freemail.hu
Signed-off-by: Behan Webster <behanw@converseincode.com>
---
crypto/testmgr.c | 23 +++++++++++++----------
1 file changed, 13 insertions(+), 10 deletions(-)
diff --git a/crypto/testmgr.c b/crypto/testmgr.c
index 941d75c..5b7b3a6 100644
--- a/crypto/testmgr.c
+++ b/crypto/testmgr.c
@@ -1578,16 +1578,19 @@ static int alg_test_crc32c(const struct alg_test_desc *desc,
}
do {
- struct {
- struct shash_desc shash;
- char ctx[crypto_shash_descsize(tfm)];
- } sdesc;
-
- sdesc.shash.tfm = tfm;
- sdesc.shash.flags = 0;
-
- *(u32 *)sdesc.ctx = le32_to_cpu(420553207);
- err = crypto_shash_final(&sdesc.shash, (u8 *)&val);
+ char sdesc[sizeof(struct shash_desc)
+ + crypto_shash_descsize(tfm)
+ + CRYPTO_MINALIGN] CRYPTO_MINALIGN_ATTR;
+ struct shash_desc *shash = (struct shash_desc *)sdesc;
+ u32 *ctx = (u32 *)((unsigned long)(sdesc
+ + sizeof(struct shash_desc) + CRYPTO_MINALIGN - 1)
+ & ~(CRYPTO_MINALIGN - 1));
+
+ shash->tfm = tfm;
+ shash->flags = 0;
+
+ *ctx = le32_to_cpu(420553207);
+ err = crypto_shash_final(shash, (u8 *)&val);
if (err) {
printk(KERN_ERR "alg: crc32c: Operation failed for "
"%s: %d\n", driver, err);
--
1.7.9.5
next prev parent reply other threads:[~2012-10-30 18:37 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-30 18:37 [PATCH 0/2] Removing the use of VLAIS from the Linux Kernel Behan Webster
2012-10-30 18:37 ` [PATCH 1/2] Remove VLAIS usage from crypto/hmac.c Behan Webster
2012-10-30 18:37 ` Behan Webster [this message]
2012-10-31 8:45 ` [PATCH 2/2] Remove VLAIS usage from crypto/testmgr.c Jussi Kivilinna
2012-10-31 16:41 ` [PATCH 0/2] Removing the use of VLAIS from the Linux Kernel David Miller
2012-11-01 0:41 ` Herbert Xu
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=1351622249-18084-3-git-send-email-behanw@converseincode.com \
--to=behanw@converseincode.com \
--cc=davem@davemloft.net \
--cc=dl9pf@gmx.de \
--cc=herbert@gondor.apana.org.au \
--cc=linux-crypto@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=pageexec@freemail.hu \
/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