summaryrefslogtreecommitdiff
path: root/kernel/ptrace.c
AgeCommit message (Expand)AuthorFilesLines
2024-02-23ptrace_attach: shift send(SIGSTOP) into ptrace_set_stopped()Oleg Nesterov1-8/+5
2024-01-09Merge tag 'mm-nonmm-stable-2024-01-09-10-33' of git://git.kernel.org/pub/scm/...Linus Torvalds1-12/+1
2023-12-11__ptrace_unlink: kill the obsolete "FIXME" codeOleg Nesterov1-12/+1
2023-11-29ptrace: Convert ptrace_attach() to use lock guardsPeter Zijlstra1-67/+61
2023-10-19mm: make __access_remote_vm() staticLorenzo Stoakes1-1/+1
2023-04-16ptrace: Provide set/get interface for syscall user dispatchGregory Price1-0/+9
2022-12-27rseq: Introduce extensible rseq ABIMathieu Desnoyers1-1/+1
2022-09-07freezer,sched: Rewrite core freezer logicPeter Zijlstra1-1/+1
2022-07-09ptrace: fix clearing of JOBCTL_TRACED in ptrace_unfreeze_traced()Sven Schnelle1-1/+1
2022-06-04Merge tag 'ptrace_stop-cleanup-for-v5.19' of git://git.kernel.org/pub/scm/lin...Linus Torvalds1-59/+28
2022-05-11sched,signal,ptrace: Rework TASK_TRACED, TASK_STOPPED statePeter Zijlstra1-3/+13
2022-05-11ptrace: Always take siglock in ptrace_resumeEric W. Biederman1-11/+2
2022-05-11ptrace: Don't change __stateEric W. Biederman1-13/+8
2022-05-11ptrace: Document that wait_task_inactive can't failEric W. Biederman1-11/+3
2022-05-11ptrace: Reimplement PTRACE_KILL by always sending SIGKILLEric W. Biederman1-3/+2
2022-05-11ptrace: Remove arch_ptrace_attachEric W. Biederman1-18/+0
2022-04-30ptrace: remove redudant check of #ifdef PTRACE_SINGLESTEPTiezhu Yang1-6/+0
2022-03-22ptrace: Check PTRACE_O_SUSPEND_SECCOMP permission on PTRACE_SEIZEJann Horn1-15/+32
2022-01-08ptrace: Remove second setting of PT_SEIZED in ptrace_attachEric W. Biederman1-2/+0
2021-06-18sched: Change task_struct::statePeter Zijlstra1-6/+6
2021-05-12ptrace: make ptrace() fail if the tracee changed its pid unexpectedlyOleg Nesterov1-1/+17
2021-04-20Merge tag 'v5.12-rc8' into sched/core, to pick up fixesIngo Molnar1-1/+1
2021-03-27Revert "kernel: treat PF_IO_WORKER like PF_KTHREAD for ptrace/signals"Jens Axboe1-1/+1
2021-03-17rseq, ptrace: Add PTRACE_GET_RSEQ_CONFIGURATION requestPiotr Figiel1-0/+25
2021-02-22kernel: treat PF_IO_WORKER like PF_KTHREAD for ptrace/signalsJens Axboe1-1/+1
2020-12-15Merge branch 'akpm' (patches from Andrew)Linus Torvalds1-1/+1
2020-12-15mm: cleanup: remove unused tsk arg from __access_remote_vmJohn Hubbard1-1/+1
2020-12-15Merge tag 'core-entry-2020-12-14' of git://git.kernel.org/pub/scm/linux/kerne...Linus Torvalds1-8/+8
2020-11-17ptrace: Set PF_SUPERPRIV when checking capabilityMickaël Salaün1-11/+5
2020-11-16ptrace: Migrate TIF_SYSCALL_EMU to use SYSCALL_WORK flagGabriel Krisman Bertazi1-5/+5
2020-11-16ptrace: Migrate to use SYSCALL_TRACE flagGabriel Krisman Bertazi1-3/+3
2020-01-18ptrace: reintroduce usage of subjective credentials in ptrace_has_cap()Christian Brauner1-5/+10
2019-07-17ptrace: add PTRACE_GET_SYSCALL_INFO requestElvira Khabirova1-1/+100
2019-07-08Merge tag 'arm64-upstream' of git://git.kernel.org/pub/scm/linux/kernel/git/a...Linus Torvalds1-0/+3
2019-07-04ptrace: Fix ->ptracer_cred handling for PTRACE_TRACEMEJann Horn1-3/+1
2019-06-12Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/ebi...Linus Torvalds1-2/+18
2019-06-11ptrace: restore smp_rmb() in __ptrace_may_access()Jann Horn1-0/+10
2019-06-05ptrace: move clearing of TIF_SYSCALL_EMU flag to coreSudeep Holla1-0/+3
2019-05-30signal/ptrace: Don't leak unitialized kernel memory with PTRACE_PEEK_SIGINFOEric W. Biederman1-2/+8
2019-05-21treewide: Add SPDX license identifier for missed filesThomas Gleixner1-0/+1
2019-03-29ptrace: take into account saved_sigmask in PTRACE{GET,SET}SIGMASKAndrei Vagin1-2/+13
2019-01-04Remove 'type' argument from access_ok() functionLinus Torvalds1-2/+2
2018-11-28ptrace: Remove unused ptrace_may_access_sched() and MODE_IBRSThomas Gleixner1-10/+0
2018-10-24Merge branch 'siginfo-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...Linus Torvalds1-14/+12
2018-10-03signal: Distinguish between kernel_siginfo and siginfoEric W. Biederman1-5/+5
2018-10-03signal: Introduce copy_siginfo_from_user and use it's return valueEric W. Biederman1-7/+5
2018-09-26x86/speculation: Apply IBPB more strictly to avoid cross-process data leakJiri Kosina1-0/+10
2018-09-11signal: Use SEND_SIG_PRIV not SEND_SIG_FORCED with SIGKILL and SIGSTOPEric W. Biederman1-2/+2
2018-02-07pids: introduce find_get_task_by_vpid() helperMike Rapoport1-21/+6
2018-02-01Merge branch 'next-seccomp' of git://git.kernel.org/pub/scm/linux/kernel/git/...Linus Torvalds1-0/+4