crypto/modes/modes_lcl.h: let STRICT_ALIGNMENT be on iOS.
authorAndy Polyakov <appro@openssl.org>
Mon, 11 May 2015 09:20:52 +0000 (11:20 +0200)
committerAndy Polyakov <appro@openssl.org>
Wed, 13 May 2015 14:46:44 +0000 (16:46 +0200)
commit0b45df73d2b4cd52a390f2345ff52fb6705f2eba
tree0b9b9e9706fb6a1070f1b57161a4d5c1518992d4
parent2bd3976ed01e76496a509ecd3443559f2be6f60c
crypto/modes/modes_lcl.h: let STRICT_ALIGNMENT be on iOS.

While ARMv7 in general is capable of unaligned access, not all instructions
actually are. And trouble is that compiler doesn't seem to differentiate
those capable and incapable of unaligned access. As result exceptions could
be observed in xts128.c and ccm128.c modules. Contemporary Linux kernels
handle such exceptions by performing requested operation and resuming
execution as is if it succeeded. While on iOS exception is fatal.
Correct solution is to let STRICT_ALIGNMENT be on all ARM platforms,
but doing so is in formal conflict with FIPS maintenance policy.

Reviewed-by: Dr. Stephen Henson <steve@openssl.org>
crypto/modes/modes_lcl.h