]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
nptl: initialize rseq area prior to registration
authorMichael Jeanson <mjeanson@efficios.com>
Thu, 7 Nov 2024 21:23:49 +0000 (22:23 +0100)
committerMichael Jeanson <mjeanson@efficios.com>
Fri, 6 Dec 2024 16:01:45 +0000 (16:01 +0000)
Per the rseq syscall documentation, 3 fields are required to be
initialized by userspace prior to registration, they are 'cpu_id',
'rseq_cs' and 'flags'. Since we have no guarantee that 'struct pthread'
is cleared on all architectures, explicitly set those 3 fields prior to
registration.

Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
Reviewed-by: Florian Weimer <fweimer@redhat.com>
(cherry picked from commit 97f60abd25628425971f07e9b0e7f8eec0741235)

nptl/descr.h
sysdeps/unix/sysv/linux/rseq-internal.h

index 0171576c237efa1c666ccb7d46940c367901a6b3..4ec2df7a264a30eb55ecfa96d26eb82d1809f753 100644 (file)
@@ -414,6 +414,8 @@ struct pthread
     {
       uint32_t cpu_id_start;
       uint32_t cpu_id;
+      uint64_t rseq_cs;
+      uint32_t flags;
     };
     char pad[32];              /* Original rseq area size.  */
   } rseq_area __attribute__ ((aligned (32)));
index 226ba59a2416606215d7a8cb97bb37c798b7b6e9..8fd26f335ea26451bb6be87f02e5cbb03c0b23c4 100644 (file)
@@ -51,11 +51,21 @@ rseq_register_current_thread (struct pthread *self, bool do_rseq)
         /* The initial implementation used only 20 bytes out of 32,
            but still expected size 32.  */
         size = RSEQ_AREA_SIZE_INITIAL;
+
+      /* Initialize the rseq fields that are read by the kernel on
+         registration, there is no guarantee that struct pthread is
+         cleared on all architectures.  */
+      THREAD_SETMEM (self, rseq_area.cpu_id, RSEQ_CPU_ID_UNINITIALIZED);
+      THREAD_SETMEM (self, rseq_area.rseq_cs, 0);
+      THREAD_SETMEM (self, rseq_area.flags, 0);
+
       int ret = INTERNAL_SYSCALL_CALL (rseq, &self->rseq_area,
                                        size, 0, RSEQ_SIG);
       if (!INTERNAL_SYSCALL_ERROR_P (ret))
         return true;
     }
+  /* When rseq is disabled by tunables or the registration fails, inform
+     userspace by setting 'cpu_id' to RSEQ_CPU_ID_REGISTRATION_FAILED.  */
   THREAD_SETMEM (self, rseq_area.cpu_id, RSEQ_CPU_ID_REGISTRATION_FAILED);
   return false;
 }