bn/bn_exp.c: explain 'volatile' in MOD_EXP_CTIME_COPY_FROM_PREBUF.
authorAndy Polyakov <appro@openssl.org>
Thu, 26 May 2016 19:40:09 +0000 (21:40 +0200)
committerAndy Polyakov <appro@openssl.org>
Fri, 27 May 2016 20:58:49 +0000 (22:58 +0200)
Reviewed-by: Tim Hudson <tjh@openssl.org>
crypto/bn/bn_exp.c

index 25c05fadbadbcb2607c5f77e547e459e0c1f8cd4..d334cf705bb385bad0c78a90db395b0840892b0d 100644 (file)
@@ -527,6 +527,14 @@ static int MOD_EXP_CTIME_COPY_FROM_PREBUF(BIGNUM *b, int top,
 {
     int i, j;
     int width = 1 << window;
+    /*
+     * We declare table 'volatile' in order to discourage compiler
+     * from reordering loads from the table. Concern is that if
+     * reordered in specific manner loads might give away the
+     * information we are trying to conceal. Some would argue that
+     * compiler can reorder them anyway, but it can as well be
+     * argued that doing so would be violation of standard...
+     */
     volatile BN_ULONG *table = (volatile BN_ULONG *)buf;
 
     if (bn_wexpand(b, top) == NULL)