about summary refs log tree commit diff
path: root/sysdeps/aarch64/dl-tunables.list
diff options
context:
space:
mode:
authorSzabolcs Nagy <szabolcs.nagy@arm.com>2023-07-17 08:31:05 +0100
committerSzabolcs Nagy <szabolcs.nagy@arm.com>2024-02-02 15:58:11 +0000
commit200010339f4fa0449a7bd76555931881eaea916c (patch)
tree838c67f8ca1093e3b26c6a1c392ac5b6a83d28ad /sysdeps/aarch64/dl-tunables.list
parent56253d5f47330f502dd6bc8f3e12eeabf6c20a8b (diff)
downloadglibc-200010339f4fa0449a7bd76555931881eaea916c.tar.gz
glibc-200010339f4fa0449a7bd76555931881eaea916c.tar.xz
glibc-200010339f4fa0449a7bd76555931881eaea916c.zip
aarch64: Add glibc.cpu.aarch64_gcs tunable
This tunable is for controlling the GCS status. It is the argument to
the PR_SET_SHADOW_STACK_STATUS prctl, by default 0, so GCS is disabled.

The status is stored into GL(dl_aarch64_gcs) early and only applied
later, since enabling GCS is tricky: it must happen on a top level
stack frame. (Using GL instead of GLRO because it may need updates
depending on loaded libraries that happen after readonly protection
is applied, however library marking based GCS setting is not yet
implemented.)
Diffstat (limited to 'sysdeps/aarch64/dl-tunables.list')
-rw-r--r--sysdeps/aarch64/dl-tunables.list5
1 files changed, 5 insertions, 0 deletions
diff --git a/sysdeps/aarch64/dl-tunables.list b/sysdeps/aarch64/dl-tunables.list
index 92c6cbfa92..c08be86932 100644
--- a/sysdeps/aarch64/dl-tunables.list
+++ b/sysdeps/aarch64/dl-tunables.list
@@ -21,5 +21,10 @@ glibc {
     name {
       type: STRING
     }
+    aarch64_gcs {
+      type: UINT_64
+      minval: 0
+      default: 0
+    }
   }
 }