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