04bfb0
From 7e5b390a008ccad094a39c350f385d58e8a5102a Mon Sep 17 00:00:00 2001
04bfb0
From: Karl Williamson <khw@cpan.org>
04bfb0
Date: Fri, 3 May 2019 13:57:47 -0600
04bfb0
Subject: [PATCH] Remove undefined behavior from IV shifting
04bfb0
MIME-Version: 1.0
04bfb0
Content-Type: text/plain; charset=UTF-8
04bfb0
Content-Transfer-Encoding: 8bit
04bfb0
04bfb0
It is undefined behavior to shift a negative integer to the left.  This
04bfb0
commit avoids that by treating the value as unsigned, then casting back
04bfb0
to integer for return.
04bfb0
04bfb0
Petr Písař: Ported to 5.30.0 from
04bfb0
814735a391b874af8f00eaf89469e5ec7f38cd4aa.
04bfb0
04bfb0
Signed-off-by: Petr Písař <ppisar@redhat.com>
04bfb0
---
04bfb0
 asan_ignore |  5 -----
04bfb0
 pp.c        | 21 ++++++++++++++++++++-
04bfb0
 2 files changed, 20 insertions(+), 6 deletions(-)
04bfb0
04bfb0
diff --git a/asan_ignore b/asan_ignore
04bfb0
index e0f5685..f520546 100644
04bfb0
--- a/asan_ignore
04bfb0
+++ b/asan_ignore
04bfb0
@@ -18,11 +18,6 @@
04bfb0
 
04bfb0
 fun:Perl_pp_i_*
04bfb0
 
04bfb0
-# Perl's << is defined as using the underlying C's << operator, with the
04bfb0
-# same undefined behaviour for shifts greater than the word size.
04bfb0
-# (UVs normally, IVs with 'use integer')
04bfb0
-
04bfb0
-fun:Perl_pp_left_shift
04bfb0
 
04bfb0
 # this function numifies the field width in eg printf "%10f".
04bfb0
 # It has its own overflow detection, so don't warn about it
04bfb0
diff --git a/pp.c b/pp.c
04bfb0
index 7afb090..3ca04e1 100644
04bfb0
--- a/pp.c
04bfb0
+++ b/pp.c
04bfb0
@@ -1991,10 +1991,29 @@ static IV S_iv_shift(IV iv, int shift, bool left)
04bfb0
        shift = -shift;
04bfb0
        left = !left;
04bfb0
    }
04bfb0
+
04bfb0
    if (UNLIKELY(shift >= IV_BITS)) {
04bfb0
        return iv < 0 && !left ? -1 : 0;
04bfb0
    }
04bfb0
-   return left ? iv << shift : iv >> shift;
04bfb0
+   /* For left shifts, perl 5 has chosen to treat the value as unsigned for
04bfb0
+    * the * purposes of shifting, then cast back to signed.  This is very
04bfb0
+    * different from perl 6:
04bfb0
+    *
04bfb0
+    * $ perl6 -e 'say -2 +< 5'
04bfb0
+    * -64
04bfb0
+    *
04bfb0
+    * $ ./perl -le 'print -2 << 5'
04bfb0
+    * 18446744073709551552
04bfb0
+    * */
04bfb0
+   if (left) {
04bfb0
+       if (iv == IV_MIN) { /* Casting this to a UV is undefined behavior */
04bfb0
+           return 0;
04bfb0
+       }
04bfb0
+       return (IV) (((UV) iv) << shift);
04bfb0
+   }
04bfb0
+
04bfb0
+   /* Here is right shift */
04bfb0
+   return iv >> shift;
04bfb0
 }
04bfb0
 
04bfb0
 #define UV_LEFT_SHIFT(uv, shift) S_uv_shift(uv, shift, TRUE)
04bfb0
-- 
04bfb0
2.20.1
04bfb0