Zend: fix overflow handling bug in non-x86 fast_add_function()
authorArd Biesheuvel <ard.biesheuvel@linaro.org>
Tue, 10 Dec 2013 11:07:46 +0000 (12:07 +0100)
committerArd Biesheuvel <ard.biesheuvel@linaro.org>
Tue, 10 Dec 2013 11:12:14 +0000 (12:12 +0100)
The 'result' argument of fast_add_function() may alias with either
of its operands (or both). Take care not to write to 'result' before
reading op1 and op2.

Zend/zend_operators.h

index 0152e03fa68c4bb6c0ad9603b2455e5545a96369..5c6fc869e7db29ede49885d2d98400a9b1368a1f 100644 (file)
@@ -643,13 +643,18 @@ static zend_always_inline int fast_add_function(zval *result, zval *op1, zval *o
                          "n"(ZVAL_OFFSETOF_TYPE)
                        : "rax","cc");
 #else
-                       Z_LVAL_P(result) = Z_LVAL_P(op1) + Z_LVAL_P(op2);
+                       /*
+                        * 'result' may alias with op1 or op2, so we need to
+                        * ensure that 'result' is not updated until after we
+                        * have read the values of op1 and op2.
+                        */
 
                        if (UNEXPECTED((Z_LVAL_P(op1) & LONG_SIGN_MASK) == (Z_LVAL_P(op2) & LONG_SIGN_MASK)
-                               && (Z_LVAL_P(op1) & LONG_SIGN_MASK) != (Z_LVAL_P(result) & LONG_SIGN_MASK))) {
+                               && (Z_LVAL_P(op1) & LONG_SIGN_MASK) != ((Z_LVAL_P(op1) + Z_LVAL_P(op2)) & LONG_SIGN_MASK))) {
                                Z_DVAL_P(result) = (double) Z_LVAL_P(op1) + (double) Z_LVAL_P(op2);
                                Z_TYPE_P(result) = IS_DOUBLE;
                        } else {
+                               Z_LVAL_P(result) = Z_LVAL_P(op1) + Z_LVAL_P(op2);
                                Z_TYPE_P(result) = IS_LONG;
                        }
 #endif