From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id E37A94BA9F6; Sat, 5 Sep 2026 18:59:09 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1788634751; cv=none; b=M0k9ebJ1qb9/moe3Og6UEr8MdtqkPgcT2GvsEYHC332DCU1s8zFxE8UK7/ok129vjlbAKtZL69DvvAs2UTsopnVd/SRHNPFEZ4IsHsDEmqfZGwuLXO5flMU8kmVsAZQev1RFkzjSAF6Of43tEg/t5iXTojNRI8qHemZGGNfklzo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1788634751; c=relaxed/simple; bh=oSD60cQawABeLqx3vcMU2QHda2B48didm1wTjLi7cpk=; h=Date:Message-ID:From:To:Cc:Subject:References:MIME-Version: Content-Type; b=hlQRJZNY59C+STpj99xzjS8gwTtq22JYfLyoeN3Qim7WF9dFg+ks8/B2cxVHAXrFmlRi9GjnaFBAEYem8PquoG4GG7S3hs0idp32TbimKgh/hEYWZN3yW9XdoguJaoaTrlK0/mbGsyMe7fyRWw0SDQMO1wDkFmC/uZwJaME4YN0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=oz8ige+y; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="oz8ige+y" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 590DF1F00A3A; Sat, 5 Sep 2026 18:59:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1788634749; bh=b4xEFOjaf6964s3Vf5wDg28hYnaJ+cv6T0xKNa+cMXY=; h=Date:From:To:Cc:Subject:References; b=oz8ige+yX8r+wlk3A3kBCUjMhPVPLYjhql828qYIfumKblYkMlFC25T/xsBgc+4VO Ih4bvcqIe3Ij+NQnmhvMndDax5DOdNWtkDwIVtXoZJuWKuYs+TZJef/SmnE0fE3y2K BRLz6h9g82CiiEGeIo3tsJC1NI0z35WWTMb1e7HfVkz1/9aZ7CLFmPn7tzaJ/fK3/H TY5C/JTIZjsVjUt/MYwErr0tCKmhuMbASKXKZ7u+mj6s3FxHi7LDhbIOTw677yG91g u5DeN2tpGrxyovEFVan/nlHoekLmVEG0f1/0vMy68pe9EaTQKEHv2g8mGaRqf8aYyD clj9915po2cyA== Date: Sat, 05 Sep 2026 20:59:06 +0200 Message-ID: <20260905185839.716693014@kernel.org> User-Agent: quilt/0.69 From: Thomas Gleixner To: LKML Cc: "Cc: Hyunwoo Kim" , Oleg Nesterov , Frederic Weisbecker , Christian Brauner , Peter Zijlstra , John Stultz , Ingo Molnar , Alexander Viro , "Eric W. Biederman" , stable@vger.kernel.org Subject: [patch V2 2/8] exec: Cleanup POSIX timers right after de_thread() References: <20260905181551.738186850@kernel.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 From: Hyunwoo Kim A per-thread CPU timer holds a reference to the PID of the thread it is attached to and, while it is armed, its node is queued in that thread's posix_cputimers. The task is looked up by that PID. When a non-leader thread exec()s, de_thread() changes which task owns that PID. pid_task(timer->it.cpu.pid, PIDTYPE_PID) then returns NULL, but the node is still queued on tsk, which is alive. timer_lock_sighand() takes a failed lookup to mean that the node is already dequeued, so it has nothing to undo. begin_new_exec() calls posix_cpu_timers_exit(me) right after exec_task_namespaces() and that removes the leftover node, so the state normally stays invisible. But bprm->point_of_no_return is set before de_thread(), so if unshare_files(), set_mm_exe_file(), exec_mmap() or exec_task_namespaces() fails, the task dies before it gets there. exit_itimers() then frees the k_itimer while its node is still queued, and reaping tsk later erases that freed node from the rbtree. In short: the non-leader thread B the parent timer_create(CLOCK_THREAD_CPUTIME_ID) timer_settime() arm_timer() // the node is queued on B execve() de_thread(B) exchange_tids(B, leader) // B's PID now belongs to the leader release_task(leader) __exit_signal(leader) posix_cpu_timers_exit(leader) // cleans leader's queue, not B's __unhash_process(leader) // that PID has no task anymore exec_mmap() mmap_read_lock_killable(old_mm) kill(B, SIGKILL) // -EINTR get_signal() do_exit() exit_itimers() posix_timer_delete() posix_cpu_timer_del() posix_timer_unhash_and_free() // freed while still queued wait4() release_task(B) posix_cpu_timers_exit(B) cleanup_timerqueue() timerqueue_del() // use-after-free Move the POSIX timer cleanup right after de_thread() before any of the later failure conditions brings the task into do_exit(). [ tglx: Move the cleanup right after de_thread() ] Fixes: 55e8c8eb2c7b ("posix-cpu-timers: Store a reference to a pid not a task") Signed-off-by: Hyunwoo Kim Signed-off-by: Thomas Gleixner Cc: stable@vger.kernel.org Link: https://patch.msgid.link/ao7Q8miiuLAPVnWv@v4bel --- Changes in v3: Move the cleanup right after de_thread() - Oleg Rework change log Changes in v2: - Add the trigger sequence and the KASAN log to the commit message. - v1: https://lore.kernel.org/all/anfgrsPlUdwBhdrp@v4bel/ --- fs/exec.c | 29 +++++++++++++++++++++-------- 1 file changed, 21 insertions(+), 8 deletions(-) --- a/fs/exec.c +++ b/fs/exec.c @@ -1115,6 +1115,17 @@ static struct file *bprm_identity_file(c return bprm->file; } +static void posixtimer_exec(struct task_struct *me) +{ +#ifdef CONFIG_POSIX_TIMERS + spin_lock_irq(&me->sighand->siglock); + posix_cpu_timers_exit(me); + spin_unlock_irq(&me->sighand->siglock); + exit_itimers(me); + flush_itimer_signals(); +#endif +} + /* * Calling this is the point of no return. None of the failures will be * seen by userspace since either the process is already taking a fatal @@ -1152,6 +1163,16 @@ int begin_new_exec(struct linux_binprm * retval = de_thread(me); if (retval) goto out; + + /* + * This must be done here to ensure that POSIX CPU timers which were + * armed on the current task are dequeued from me::posix_cputimers. + * Otherwise in case of a TID switch the deletion of the related POSIX + * timer would not remove an enqueued timer because the TID lookup + * of the old TID fails. + */ + posixtimer_exec(me); + /* see the comment in check_unsafe_exec() */ current->fs->in_exec = 0; /* @@ -1192,14 +1213,6 @@ int begin_new_exec(struct linux_binprm * if (retval) goto out_unlock; -#ifdef CONFIG_POSIX_TIMERS - spin_lock_irq(&me->sighand->siglock); - posix_cpu_timers_exit(me); - spin_unlock_irq(&me->sighand->siglock); - exit_itimers(me); - flush_itimer_signals(); -#endif - /* * Make the signal table private. */