Blame SOURCES/gcc48-rh1469697-3.patch

13f101
commit a3e2ba88eb09c1eed2f7ed6e17660b345464bb90
13f101
Author: law <law@138bc75d-0d04-0410-961f-82ee72b054a4>
13f101
Date:   Wed Sep 20 05:05:12 2017 +0000
13f101
13f101
    2017-09-18  Jeff Law  <law@redhat.com>
13f101
    
13f101
            * explow.c: Include "params.h" and "dumpfile.h".
13f101
            (anti_adjust_stack_and_probe_stack_clash): New function.
13f101
            (get_stack_check_protect): Likewise.
13f101
            (compute_stack_clash_protection_loop_data): Likewise.
13f101
            (emit_stack_clash_protection_loop_start): Likewise.
13f101
            (emit_stack_clash_protection_loop_end): Likewise.
13f101
            (allocate_dynamic_stack_space): Use get_stack_check_protect.
13f101
            Use anti_adjust_stack_and_probe_stack_clash.
13f101
            * explow.h (compute_stack_clash_protection_loop_data): Prototype.
13f101
            (emit_stack_clash_protection_loop_start): Likewise.
13f101
            (emit_stack_clash_protection_loop_end): Likewise.
13f101
            * rtl.h (get_stack_check_protect): Prototype.
13f101
            * target.def (stack_clash_protection_final_dynamic_probe): New hook.
13f101
            * targhooks.c (default_stack_clash_protection_final_dynamic_probe): New.
13f101
            * targhooks.h (default_stack_clash_protection_final_dynamic_probe):
13f101
            Prototype.
13f101
            * doc/tm.texi.in (TARGET_STACK_CLASH_PROTECTION_FINAL_DYNAMIC_PROBE):
13f101
            Add @hook.
13f101
            * doc/tm.texi: Rebuilt.
13f101
            * config/alpha/alpha.c (alpha_expand_prologue): Likewise.
13f101
            * config/i386/i386.c (ix86_expand_prologue): Likewise.
13f101
            * config/ia64/ia64.c (ia64_expand_prologue): Likewise.
13f101
            * config/mips/mips.c (mips_expand_prologue): Likewise.
13f101
            * config/rs6000/rs6000.c (rs6000_emit_prologue): Likewise.
13f101
            * config/sparc/sparc.c (sparc_expand_prologue): Likewise.
13f101
            (sparc_flat_expand_prologue): Likewise.
13f101
    
13f101
            * gcc.dg/stack-check-3.c: New test.
13f101
    
13f101
    git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@252995 138bc75d-0d04-0410-961f-82ee72b054a4
13f101
13f101
diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c
13f101
index 2874b8454a9..5402f5213d6 100644
13f101
--- a/gcc/config/alpha/alpha.c
13f101
+++ b/gcc/config/alpha/alpha.c
13f101
@@ -7625,7 +7625,7 @@ alpha_expand_prologue (void)
13f101
 
13f101
   probed_size = frame_size;
13f101
   if (flag_stack_check)
13f101
-    probed_size += STACK_CHECK_PROTECT;
13f101
+    probed_size += get_stack_check_protect ();
13f101
 
13f101
   if (probed_size <= 32768)
13f101
     {
13f101
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c
13f101
index e36726ba722..d996fd160e8 100644
13f101
--- a/gcc/config/i386/i386.c
13f101
+++ b/gcc/config/i386/i386.c
13f101
@@ -10544,12 +10544,12 @@ ix86_expand_prologue (void)
13f101
 	  HOST_WIDE_INT size = allocate;
13f101
 
13f101
 	  if (TARGET_64BIT && size >= (HOST_WIDE_INT) 0x80000000)
13f101
-	    size = 0x80000000 - STACK_CHECK_PROTECT - 1;
13f101
+	    size = 0x80000000 - get_stack_check_protect () - 1;
13f101
 
13f101
 	  if (TARGET_STACK_PROBE)
13f101
-	    ix86_emit_probe_stack_range (0, size + STACK_CHECK_PROTECT);
13f101
+	    ix86_emit_probe_stack_range (0, size + get_stack_check_protect ());
13f101
 	  else
13f101
-	    ix86_emit_probe_stack_range (STACK_CHECK_PROTECT, size);
13f101
+	    ix86_emit_probe_stack_range (get_stack_check_protect (), size);
13f101
 	}
13f101
     }
13f101
 
13f101
diff --git a/gcc/config/ia64/ia64.c b/gcc/config/ia64/ia64.c
13f101
index 50bbad6661c..390983936e8 100644
13f101
--- a/gcc/config/ia64/ia64.c
13f101
+++ b/gcc/config/ia64/ia64.c
13f101
@@ -3435,7 +3435,7 @@ ia64_expand_prologue (void)
13f101
     current_function_static_stack_size = current_frame_info.total_size;
13f101
 
13f101
   if (flag_stack_check == STATIC_BUILTIN_STACK_CHECK)
13f101
-    ia64_emit_probe_stack_range (STACK_CHECK_PROTECT,
13f101
+    ia64_emit_probe_stack_range (get_stack_check_protect (),
13f101
 				 current_frame_info.total_size,
13f101
 				 current_frame_info.n_input_regs
13f101
 				   + current_frame_info.n_local_regs);
13f101
diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c
13f101
index 41c5d6b6b1f..9b7eb678f19 100644
13f101
--- a/gcc/config/mips/mips.c
13f101
+++ b/gcc/config/mips/mips.c
13f101
@@ -10746,7 +10746,7 @@ mips_expand_prologue (void)
13f101
     current_function_static_stack_size = size;
13f101
 
13f101
   if (flag_stack_check == STATIC_BUILTIN_STACK_CHECK && size)
13f101
-    mips_emit_probe_stack_range (STACK_CHECK_PROTECT, size);
13f101
+    mips_emit_probe_stack_range (get_stack_check_protect (), size);
13f101
 
13f101
   /* Save the registers.  Allocate up to MIPS_MAX_FIRST_STACK_STEP
13f101
      bytes beforehand; this is enough to cover the register save area
13f101
diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c
13f101
index 15583055895..a9052c6becf 100644
13f101
--- a/gcc/config/rs6000/rs6000.c
13f101
+++ b/gcc/config/rs6000/rs6000.c
13f101
@@ -23214,7 +23214,8 @@ rs6000_emit_prologue (void)
13f101
     current_function_static_stack_size = info->total_size;
13f101
 
13f101
   if (flag_stack_check == STATIC_BUILTIN_STACK_CHECK && info->total_size)
13f101
-    rs6000_emit_probe_stack_range (STACK_CHECK_PROTECT, info->total_size);
13f101
+    rs6000_emit_probe_stack_range (get_stack_check_protect (),
13f101
+				   info->total_size);
13f101
 
13f101
   if (TARGET_FIX_AND_CONTINUE)
13f101
     {
13f101
diff --git a/gcc/config/sparc/sparc.c b/gcc/config/sparc/sparc.c
13f101
index e5d326cdf23..e5e93c80261 100644
13f101
--- a/gcc/config/sparc/sparc.c
13f101
+++ b/gcc/config/sparc/sparc.c
13f101
@@ -5431,7 +5431,7 @@ sparc_expand_prologue (void)
13f101
     current_function_static_stack_size = size;
13f101
 
13f101
   if (flag_stack_check == STATIC_BUILTIN_STACK_CHECK && size)
13f101
-    sparc_emit_probe_stack_range (STACK_CHECK_PROTECT, size);
13f101
+    sparc_emit_probe_stack_range (get_stack_check_protect (), size);
13f101
 
13f101
   if (size == 0)
13f101
     ; /* do nothing.  */
13f101
@@ -5533,7 +5533,7 @@ sparc_flat_expand_prologue (void)
13f101
     current_function_static_stack_size = size;
13f101
 
13f101
   if (flag_stack_check == STATIC_BUILTIN_STACK_CHECK && size)
13f101
-    sparc_emit_probe_stack_range (STACK_CHECK_PROTECT, size);
13f101
+    sparc_emit_probe_stack_range (get_stack_check_protect (), size);
13f101
 
13f101
   if (sparc_save_local_in_regs_p)
13f101
     emit_save_or_restore_local_in_regs (stack_pointer_rtx, SPARC_STACK_BIAS,
13f101
diff --git a/gcc/doc/tm.texi b/gcc/doc/tm.texi
13f101
index 6b18a2724bc..eeef757bf5b 100644
13f101
--- a/gcc/doc/tm.texi
13f101
+++ b/gcc/doc/tm.texi
13f101
@@ -3571,6 +3571,10 @@ GCC computed the default from the values of the above macros and you will
13f101
 normally not need to override that default.
13f101
 @end defmac
13f101
 
13f101
+@deftypefn {Target Hook} bool TARGET_STACK_CLASH_PROTECTION_FINAL_DYNAMIC_PROBE (rtx @var{residual})
13f101
+Some targets make optimistic assumptions about the state of stack probing when they emit their prologues.  On such targets a probe into the end of any dynamically allocated space is likely required for safety against stack clash style attacks.  Define this variable to return nonzero if such a probe is required or zero otherwise.  You need not define this macro if it would always have the value zero.
13f101
+@end deftypefn
13f101
+
13f101
 @need 2000
13f101
 @node Frame Registers
13f101
 @subsection Registers That Address the Stack Frame
13f101
diff --git a/gcc/doc/tm.texi.in b/gcc/doc/tm.texi.in
13f101
index 7d0b3c73b2f..6707ca87236 100644
13f101
--- a/gcc/doc/tm.texi.in
13f101
+++ b/gcc/doc/tm.texi.in
13f101
@@ -3539,6 +3539,8 @@ GCC computed the default from the values of the above macros and you will
13f101
 normally not need to override that default.
13f101
 @end defmac
13f101
 
13f101
+@hook TARGET_STACK_CLASH_PROTECTION_FINAL_DYNAMIC_PROBE
13f101
+
13f101
 @need 2000
13f101
 @node Frame Registers
13f101
 @subsection Registers That Address the Stack Frame
13f101
diff --git a/gcc/explow.c b/gcc/explow.c
13f101
index 7da8bc75f19..2526e8513b7 100644
13f101
--- a/gcc/explow.c
13f101
+++ b/gcc/explow.c
13f101
@@ -40,8 +40,11 @@ along with GCC; see the file COPYING3.  If not see
13f101
 #include "target.h"
13f101
 #include "common/common-target.h"
13f101
 #include "output.h"
13f101
+#include "params.h"
13f101
+#include "dumpfile.h"
13f101
 
13f101
 static rtx break_out_memory_refs (rtx);
13f101
+static void anti_adjust_stack_and_probe_stack_clash (rtx);
13f101
 
13f101
 
13f101
 /* Truncate and perhaps sign-extend C as appropriate for MODE.  */
13f101
@@ -1140,6 +1143,29 @@ update_nonlocal_goto_save_area (void)
13f101
   emit_stack_save (SAVE_NONLOCAL, &r_save);
13f101
 }
13f101
 
13f101
+/* Return the number of bytes to "protect" on the stack for -fstack-check.
13f101
+
13f101
+   "protect" in the context of -fstack-check means how many bytes we
13f101
+   should always ensure are available on the stack.  More importantly
13f101
+   this is how many bytes are skipped when probing the stack.
13f101
+
13f101
+   On some targets we want to reuse the -fstack-check prologue support
13f101
+   to give a degree of protection against stack clashing style attacks.
13f101
+
13f101
+   In that scenario we do not want to skip bytes before probing as that
13f101
+   would render the stack clash protections useless.
13f101
+
13f101
+   So we never use STACK_CHECK_PROTECT directly.  Instead we indirect though
13f101
+   this helper which allows us to provide different values for
13f101
+   -fstack-check and -fstack-clash-protection.  */
13f101
+HOST_WIDE_INT
13f101
+get_stack_check_protect (void)
13f101
+{
13f101
+  if (flag_stack_clash_protection)
13f101
+    return 0;
13f101
+ return STACK_CHECK_PROTECT;
13f101
+}
13f101
+
13f101
 /* Return an rtx representing the address of an area of memory dynamically
13f101
    pushed on the stack.
13f101
 
13f101
@@ -1393,7 +1419,7 @@ allocate_dynamic_stack_space (rtx size, unsigned size_align,
13f101
     probe_stack_range (STACK_OLD_CHECK_PROTECT + STACK_CHECK_MAX_FRAME_SIZE,
13f101
 		       size);
13f101
   else if (flag_stack_check == STATIC_BUILTIN_STACK_CHECK)
13f101
-    probe_stack_range (STACK_CHECK_PROTECT, size);
13f101
+    probe_stack_range (get_stack_check_protect (), size);
13f101
 
13f101
   /* Don't let anti_adjust_stack emit notes.  */
13f101
   suppress_reg_args_size = true;
13f101
@@ -1451,6 +1477,8 @@ allocate_dynamic_stack_space (rtx size, unsigned size_align,
13f101
 
13f101
       if (flag_stack_check && STACK_CHECK_MOVING_SP)
13f101
 	anti_adjust_stack_and_probe (size, false);
13f101
+      else if (flag_stack_clash_protection)
13f101
+	anti_adjust_stack_and_probe_stack_clash (size);
13f101
       else
13f101
 	anti_adjust_stack (size);
13f101
 
13f101
@@ -1712,6 +1740,219 @@ probe_stack_range (HOST_WIDE_INT first, rtx size)
13f101
     }
13f101
 }
13f101
 
13f101
+/* Compute parameters for stack clash probing a dynamic stack
13f101
+   allocation of SIZE bytes.
13f101
+
13f101
+   We compute ROUNDED_SIZE, LAST_ADDR, RESIDUAL and PROBE_INTERVAL.
13f101
+
13f101
+   Additionally we conditionally dump the type of probing that will
13f101
+   be needed given the values computed.  */
13f101
+
13f101
+void
13f101
+compute_stack_clash_protection_loop_data (rtx *rounded_size, rtx *last_addr,
13f101
+					  rtx *residual,
13f101
+					  HOST_WIDE_INT *probe_interval,
13f101
+					  rtx size)
13f101
+{
13f101
+  /* Round SIZE down to STACK_CLASH_PROTECTION_PROBE_INTERVAL */
13f101
+  *probe_interval
13f101
+    = 1 << PARAM_VALUE (PARAM_STACK_CLASH_PROTECTION_PROBE_INTERVAL);
13f101
+  *rounded_size = simplify_gen_binary (AND, Pmode, size,
13f101
+				        GEN_INT (-*probe_interval));
13f101
+
13f101
+  /* Compute the value of the stack pointer for the last iteration.
13f101
+     It's just SP + ROUNDED_SIZE.  */
13f101
+  rtx rounded_size_op = force_operand (*rounded_size, NULL_RTX);
13f101
+  *last_addr = force_operand (gen_rtx_fmt_ee (STACK_GROW_OP, Pmode,
13f101
+					      stack_pointer_rtx,
13f101
+					      rounded_size_op),
13f101
+			      NULL_RTX);
13f101
+
13f101
+  /* Compute any residuals not allocated by the loop above.  Residuals
13f101
+     are just the ROUNDED_SIZE - SIZE.  */
13f101
+  *residual = simplify_gen_binary (MINUS, Pmode, size, *rounded_size);
13f101
+
13f101
+  /* Dump key information to make writing tests easy.  */
13f101
+  if (dump_file)
13f101
+    {
13f101
+      if (*rounded_size == CONST0_RTX (Pmode))
13f101
+	fprintf (dump_file,
13f101
+		 "Stack clash skipped dynamic allocation and probing loop.\n");
13f101
+      else if (GET_CODE (*rounded_size) == CONST_INT
13f101
+	       && INTVAL (*rounded_size) <= 4 * *probe_interval)
13f101
+	fprintf (dump_file,
13f101
+		 "Stack clash dynamic allocation and probing inline.\n");
13f101
+      else if (GET_CODE (*rounded_size) == CONST_INT)
13f101
+	fprintf (dump_file,
13f101
+		 "Stack clash dynamic allocation and probing in "
13f101
+		 "rotated loop.\n");
13f101
+      else
13f101
+	fprintf (dump_file,
13f101
+		 "Stack clash dynamic allocation and probing in loop.\n");
13f101
+
13f101
+      if (*residual != CONST0_RTX (Pmode))
13f101
+	fprintf (dump_file,
13f101
+		 "Stack clash dynamic allocation and probing residuals.\n");
13f101
+      else
13f101
+	fprintf (dump_file,
13f101
+		 "Stack clash skipped dynamic allocation and "
13f101
+		 "probing residuals.\n");
13f101
+    }
13f101
+}
13f101
+
13f101
+/* Emit the start of an allocate/probe loop for stack
13f101
+   clash protection.
13f101
+
13f101
+   LOOP_LAB and END_LAB are returned for use when we emit the
13f101
+   end of the loop.
13f101
+
13f101
+   LAST addr is the value for SP which stops the loop.  */
13f101
+void
13f101
+emit_stack_clash_protection_probe_loop_start (rtx *loop_lab,
13f101
+					      rtx *end_lab,
13f101
+					      rtx last_addr,
13f101
+					      bool rotated)
13f101
+{
13f101
+  /* Essentially we want to emit any setup code, the top of loop
13f101
+     label and the comparison at the top of the loop.  */
13f101
+  *loop_lab = gen_label_rtx ();
13f101
+  *end_lab = gen_label_rtx ();
13f101
+
13f101
+  emit_label (*loop_lab);
13f101
+  if (!rotated)
13f101
+    emit_cmp_and_jump_insns (stack_pointer_rtx, last_addr, EQ, NULL_RTX,
13f101
+			     Pmode, 1, *end_lab);
13f101
+}
13f101
+
13f101
+/* Emit the end of a stack clash probing loop.
13f101
+
13f101
+   This consists of just the jump back to LOOP_LAB and
13f101
+   emitting END_LOOP after the loop.  */
13f101
+
13f101
+void
13f101
+emit_stack_clash_protection_probe_loop_end (rtx loop_lab, rtx end_loop,
13f101
+					    rtx last_addr, bool rotated)
13f101
+{
13f101
+  if (rotated)
13f101
+    emit_cmp_and_jump_insns (stack_pointer_rtx, last_addr, NE, NULL_RTX,
13f101
+			     Pmode, 1, loop_lab);
13f101
+  else
13f101
+    emit_jump (loop_lab);
13f101
+
13f101
+  emit_label (end_loop);
13f101
+
13f101
+}
13f101
+
13f101
+/* Adjust the stack pointer by minus SIZE (an rtx for a number of bytes)
13f101
+   while probing it.  This pushes when SIZE is positive.  SIZE need not
13f101
+   be constant.
13f101
+
13f101
+   This is subtly different than anti_adjust_stack_and_probe to try and
13f101
+   prevent stack-clash attacks
13f101
+
13f101
+     1. It must assume no knowledge of the probing state, any allocation
13f101
+	must probe.
13f101
+
13f101
+	Consider the case of a 1 byte alloca in a loop.  If the sum of the
13f101
+	allocations is large, then this could be used to jump the guard if
13f101
+	probes were not emitted.
13f101
+
13f101
+     2. It never skips probes, whereas anti_adjust_stack_and_probe will
13f101
+	skip probes on the first couple PROBE_INTERVALs on the assumption
13f101
+	they're done elsewhere.
13f101
+
13f101
+     3. It only allocates and probes SIZE bytes, it does not need to
13f101
+	allocate/probe beyond that because this probing style does not
13f101
+	guarantee signal handling capability if the guard is hit.  */
13f101
+
13f101
+static void
13f101
+anti_adjust_stack_and_probe_stack_clash (rtx size)
13f101
+{
13f101
+  /* First ensure SIZE is Pmode.  */
13f101
+  if (GET_MODE (size) != VOIDmode && GET_MODE (size) != Pmode)
13f101
+    size = convert_to_mode (Pmode, size, 1);
13f101
+
13f101
+  /* We can get here with a constant size on some targets.  */
13f101
+  rtx rounded_size, last_addr, residual;
13f101
+  HOST_WIDE_INT probe_interval;
13f101
+  compute_stack_clash_protection_loop_data (&rounded_size, &last_addr,
13f101
+					    &residual, &probe_interval, size);
13f101
+
13f101
+  if (rounded_size != CONST0_RTX (Pmode))
13f101
+    {
13f101
+      if (INTVAL (rounded_size) <= 4 * probe_interval)
13f101
+	{
13f101
+	  for (HOST_WIDE_INT i = 0;
13f101
+	       i < INTVAL (rounded_size);
13f101
+	       i += probe_interval)
13f101
+	    {
13f101
+	      anti_adjust_stack (GEN_INT (probe_interval));
13f101
+
13f101
+	      /* The prologue does not probe residuals.  Thus the offset
13f101
+		 here to probe just beyond what the prologue had already
13f101
+		 allocated.  */
13f101
+	      emit_stack_probe (plus_constant (Pmode, stack_pointer_rtx,
13f101
+					       (probe_interval
13f101
+						- GET_MODE_SIZE (word_mode))));
13f101
+	      emit_insn (gen_blockage ());
13f101
+	    }
13f101
+	}
13f101
+      else
13f101
+	{
13f101
+	  rtx loop_lab, end_loop;
13f101
+	  bool rotate_loop = GET_CODE (rounded_size) == CONST_INT;
13f101
+	  emit_stack_clash_protection_probe_loop_start (&loop_lab, &end_loop,
13f101
+							last_addr, rotate_loop);
13f101
+
13f101
+	  anti_adjust_stack (GEN_INT (probe_interval));
13f101
+
13f101
+	  /* The prologue does not probe residuals.  Thus the offset here
13f101
+	     to probe just beyond what the prologue had already allocated.  */
13f101
+	  emit_stack_probe (plus_constant (Pmode, stack_pointer_rtx,
13f101
+					   (probe_interval
13f101
+					    - GET_MODE_SIZE (word_mode))));
13f101
+
13f101
+	  emit_stack_clash_protection_probe_loop_end (loop_lab, end_loop,
13f101
+						      last_addr, rotate_loop);
13f101
+	  emit_insn (gen_blockage ());
13f101
+	}
13f101
+    }
13f101
+
13f101
+  if (residual != CONST0_RTX (Pmode))
13f101
+    {
13f101
+      rtx x = force_reg (Pmode, plus_constant (Pmode, residual,
13f101
+					       -GET_MODE_SIZE (word_mode)));
13f101
+      anti_adjust_stack (residual);
13f101
+      emit_stack_probe (gen_rtx_PLUS (Pmode, stack_pointer_rtx, x));
13f101
+      emit_insn (gen_blockage ());
13f101
+    }
13f101
+
13f101
+  /* Some targets make optimistic assumptions in their prologues about
13f101
+     how the caller may have probed the stack.  Make sure we honor
13f101
+     those assumptions when needed.  */
13f101
+  if (size != CONST0_RTX (Pmode)
13f101
+      && targetm.stack_clash_protection_final_dynamic_probe (residual))
13f101
+    {
13f101
+      /* Ideally we would just probe at *sp.  However, if SIZE is not
13f101
+	 a compile-time constant, but is zero at runtime, then *sp
13f101
+	 might hold live data.  So probe at *sp if we know that
13f101
+	 an allocation was made, otherwise probe into the red zone
13f101
+	 which is obviously undesirable.  */
13f101
+      if (GET_CODE (size) == CONST_INT)
13f101
+	{
13f101
+	  emit_stack_probe (stack_pointer_rtx);
13f101
+	  emit_insn (gen_blockage ());
13f101
+	}
13f101
+      else
13f101
+	{
13f101
+	  emit_stack_probe (plus_constant (Pmode, stack_pointer_rtx,
13f101
+					   -GET_MODE_SIZE (word_mode)));
13f101
+	  emit_insn (gen_blockage ());
13f101
+	}
13f101
+    }
13f101
+}
13f101
+
13f101
+
13f101
 /* Adjust the stack pointer by minus SIZE (an rtx for a number of bytes)
13f101
    while probing it.  This pushes when SIZE is positive.  SIZE need not
13f101
    be constant.  If ADJUST_BACK is true, adjust back the stack pointer
13f101
diff --git a/gcc/rtl.h b/gcc/rtl.h
13f101
index 91f3387c701..ab8ec27418d 100644
13f101
--- a/gcc/rtl.h
13f101
+++ b/gcc/rtl.h
13f101
@@ -1756,6 +1756,17 @@ extern int currently_expanding_to_rtl;
13f101
 /* In explow.c */
13f101
 extern HOST_WIDE_INT trunc_int_for_mode	(HOST_WIDE_INT, enum machine_mode);
13f101
 extern rtx plus_constant (enum machine_mode, rtx, HOST_WIDE_INT);
13f101
+extern HOST_WIDE_INT get_stack_check_protect (void);
13f101
+
13f101
+/* Support for building allocation/probing loops for stack-clash
13f101
+   protection of dyamically allocated stack space.  */
13f101
+extern void compute_stack_clash_protection_loop_data (rtx *, rtx *, rtx *,
13f101
+						      HOST_WIDE_INT *, rtx);
13f101
+extern void emit_stack_clash_protection_probe_loop_start (rtx *, rtx *,
13f101
+							  rtx, bool);
13f101
+extern void emit_stack_clash_protection_probe_loop_end (rtx, rtx,
13f101
+							rtx, bool);
13f101
+
13f101
 
13f101
 /* In rtl.c */
13f101
 extern rtx rtx_alloc_stat (RTX_CODE MEM_STAT_DECL);
13f101
diff --git a/gcc/target.def b/gcc/target.def
13f101
index 4d6081c3121..eb2bd46f7a1 100644
13f101
--- a/gcc/target.def
13f101
+++ b/gcc/target.def
13f101
@@ -2580,6 +2580,13 @@ DEFHOOK
13f101
  void, (void),
13f101
  hook_void_void)
13f101
 
13f101
+DEFHOOK
13f101
+(stack_clash_protection_final_dynamic_probe,
13f101
+ "Some targets make optimistic assumptions about the state of stack probing when they emit their prologues.  On such targets a probe into the end of any dynamically allocated space is likely required for safety against stack clash style attacks.  Define this variable to return nonzero if such a probe is required or zero otherwise.  You need not define this macro if it would always have the value zero.",
13f101
+ bool, (rtx residual),
13f101
+ default_stack_clash_protection_final_dynamic_probe)
13f101
+
13f101
+
13f101
 /* Functions specific to the C family of frontends.  */
13f101
 #undef HOOK_PREFIX
13f101
 #define HOOK_PREFIX "TARGET_C_"
13f101
diff --git a/gcc/targhooks.c b/gcc/targhooks.c
13f101
index f6aa9907225..be23875538d 100644
13f101
--- a/gcc/targhooks.c
13f101
+++ b/gcc/targhooks.c
13f101
@@ -1557,4 +1557,10 @@ default_canonicalize_comparison (int *, rtx *, rtx *, bool)
13f101
 {
13f101
 }
13f101
 
13f101
+bool
13f101
+default_stack_clash_protection_final_dynamic_probe (rtx residual ATTRIBUTE_UNUSED)
13f101
+{
13f101
+  return 0;
13f101
+}
13f101
+
13f101
 #include "gt-targhooks.h"
13f101
diff --git a/gcc/targhooks.h b/gcc/targhooks.h
13f101
index b64274d3ff9..4acf33fae08 100644
13f101
--- a/gcc/targhooks.h
13f101
+++ b/gcc/targhooks.h
13f101
@@ -195,3 +195,4 @@ extern const char *default_pch_valid_p (const void *, size_t);
13f101
 extern void default_asm_output_ident_directive (const char*);
13f101
 
13f101
 extern bool default_member_type_forces_blk (const_tree, enum machine_mode);
13f101
+extern bool default_stack_clash_protection_final_dynamic_probe (rtx);
13f101
diff --git a/gcc/testsuite/gcc.dg/stack-check-3.c b/gcc/testsuite/gcc.dg/stack-check-3.c
13f101
new file mode 100644
13f101
index 00000000000..58fb65649ee
13f101
--- /dev/null
13f101
+++ b/gcc/testsuite/gcc.dg/stack-check-3.c
13f101
@@ -0,0 +1,86 @@
13f101
+/* The goal here is to ensure that dynamic allocations via vlas or
13f101
+   alloca calls receive probing.
13f101
+
13f101
+   Scanning the RTL or assembly code seems like insanity here as does
13f101
+   checking for particular allocation sizes and probe offsets.  For
13f101
+   now we just verify that there's an allocation + probe loop and
13f101
+   residual allocation + probe for f?.  */
13f101
+
13f101
+/* { dg-do compile } */
13f101
+/* { dg-options "-O2 -fstack-clash-protection -fdump-rtl-expand -fno-optimize-sibling-calls --param stack-clash-protection-probe-interval=4096 --param stack-clash-protection-guard-size=4096" } */
13f101
+/* { dg-require-effective-target supports_stack_clash_protection } */
13f101
+
13f101
+__attribute__((noinline, noclone)) void
13f101
+foo (char *p)
13f101
+{
13f101
+  asm volatile ("" : : "r" (p) : "memory");
13f101
+}
13f101
+
13f101
+/* Simple VLA, no other locals. */
13f101
+__attribute__((noinline, noclone)) void
13f101
+f0 (int x)
13f101
+{
13f101
+  char vla[x];
13f101
+  foo (vla);
13f101
+}
13f101
+
13f101
+/* Simple VLA, small local frame.  */
13f101
+__attribute__((noinline, noclone)) void
13f101
+f1 (int x)
13f101
+{
13f101
+  char locals[128];
13f101
+  char vla[x];
13f101
+  foo (vla);
13f101
+}
13f101
+
13f101
+/* Small constant alloca, no other locals. */
13f101
+__attribute__((noinline, noclone)) void
13f101
+f2 (int x)
13f101
+{
13f101
+  char *vla = __builtin_alloca (128);
13f101
+  foo (vla);
13f101
+}
13f101
+
13f101
+/* Big constant alloca, small local frame.  */
13f101
+__attribute__((noinline, noclone)) void
13f101
+f3 (int x)
13f101
+{
13f101
+  char locals[128];
13f101
+  char *vla = __builtin_alloca (16384);
13f101
+  foo (vla);
13f101
+}
13f101
+
13f101
+/* Big constant alloca, small local frame.  */
13f101
+__attribute__((noinline, noclone)) void
13f101
+f3a (int x)
13f101
+{
13f101
+  char locals[128];
13f101
+  char *vla = __builtin_alloca (32768);
13f101
+  foo (vla);
13f101
+}
13f101
+
13f101
+/* Nonconstant alloca, no other locals. */
13f101
+__attribute__((noinline, noclone)) void
13f101
+f4 (int x)
13f101
+{
13f101
+  char *vla = __builtin_alloca (x);
13f101
+  foo (vla);
13f101
+}
13f101
+
13f101
+/* Nonconstant alloca, small local frame.  */
13f101
+__attribute__((noinline, noclone)) void
13f101
+f5 (int x)
13f101
+{
13f101
+  char locals[128];
13f101
+  char *vla = __builtin_alloca (x);
13f101
+  foo (vla);
13f101
+}
13f101
+
13f101
+/* { dg-final { scan-rtl-dump-times "allocation and probing residuals" 7 "expand" } } */
13f101
+
13f101
+
13f101
+/* { dg-final { scan-rtl-dump-times "allocation and probing in loop" 7 "expand" { target callee_realigns_stack } } } */
13f101
+/* { dg-final { scan-rtl-dump-times "allocation and probing in loop" 4 "expand" { target { ! callee_realigns_stack } } } } */
13f101
+/* { dg-final { scan-rtl-dump-times "allocation and probing in rotated loop" 1 "expand" { target { ! callee_realigns_stack } } } } */
13f101
+/* { dg-final { scan-rtl-dump-times "allocation and probing inline" 1 "expand" { target { ! callee_realigns_stack } } } } */
13f101
+/* { dg-final { scan-rtl-dump-times "skipped dynamic allocation and probing loop" 1 "expand" { target { ! callee_realigns_stack } } } } */