1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
From a83e51744e99995d82bbaae2e03999a82f6aae43 Mon Sep 17 00:00:00 2001
From: Andy Fiddaman <omnios@citrus-it.co.uk>
Date: Wed, 4 Nov 2020 16:16:25 +0000
Subject: Use the illumos libc SSP implementation for
-fstack-protector
---
gcc/config/i386/sol2.h | 17 +++++++++++++++++
gcc/configure | 2 +-
gcc/configure.ac | 2 +-
3 files changed, 19 insertions(+), 2 deletions(-)
diff --git a/gcc/config/i386/sol2.h b/gcc/config/i386/sol2.h
index 05e5e1a4949..c95e1ba3046 100644
--- a/gcc/config/i386/sol2.h
+++ b/gcc/config/i386/sol2.h
@@ -259,3 +259,20 @@ along with GCC; see the file COPYING3. If not see
#ifndef USE_GLD
#define USE_HIDDEN_LINKONCE 0
#endif
+
+/*
+ * As of 5788, the illumos libc includes support for the stack protector
+ * __stack_chk_fail() function and for the __stack_chk_guard variable.
+ * That means that, for most cases, no extra objects need to be linked in
+ * when compiling with one of the -fstack-protector options.
+ * However, for 32-bit PIC/PIE objects, the gcc stack protector emits a
+ * function call to __stack_chk_fail_local(); this symbol is provided in
+ * illumos via the libssp_ns.a object. The spec below includes this in the
+ * link when appropriate.
+ */
+#if defined(TARGET_LIBC_PROVIDES_SSP)
+#define LINK_SSP_SPEC "%{fstack-protector|fstack-protector-all|" \
+ "fstack-protector-strong|fstack-protector-explicit:" \
+ DEF_ARCH32_SPEC("-lssp_ns") \
+ "}"
+#endif
diff --git a/gcc/configure b/gcc/configure
index 15d0d5de891..0c5febd3883 100755
--- a/gcc/configure
+++ b/gcc/configure
@@ -28996,7 +28996,7 @@ fi
# realistically usable GNU/Hurd configurations.
# All supported versions of musl provide it as well
gcc_cv_libc_provides_ssp=yes;;
- *-*-darwin* | *-*-freebsd* | *-*-netbsd*)
+ *-*-darwin* | *-*-freebsd* | *-*-netbsd* | *-*-solaris2*)
ac_fn_cxx_check_func "$LINENO" "__stack_chk_fail" "ac_cv_func___stack_chk_fail"
if test "x$ac_cv_func___stack_chk_fail" = x""yes; then :
gcc_cv_libc_provides_ssp=yes
diff --git a/gcc/configure.ac b/gcc/configure.ac
index a11c1a0bebb..3833ccb2499 100644
--- a/gcc/configure.ac
+++ b/gcc/configure.ac
@@ -5760,7 +5760,7 @@ AC_CACHE_CHECK(__stack_chk_fail in target C library,
# realistically usable GNU/Hurd configurations.
# All supported versions of musl provide it as well
gcc_cv_libc_provides_ssp=yes;;
- *-*-darwin* | *-*-freebsd* | *-*-netbsd*)
+ *-*-darwin* | *-*-freebsd* | *-*-netbsd* | *-*-solaris2*)
AC_CHECK_FUNC(__stack_chk_fail,[gcc_cv_libc_provides_ssp=yes],
[echo "no __stack_chk_fail on this target"])
;;
|