aboutsummaryrefslogtreecommitdiff
path: root/kernel/kprobes.c
AgeCommit message (Expand)AuthorFilesLines
5 hourskprobe/ftrace: fix build error due to bad function definitionHEADmasterGravatar Linus Torvalds 1-1/+1
6 hoursMerge tag 'probes-v6.10' of git://git.kernel.org/pub/scm/linux/kernel/git/tra...Gravatar Linus Torvalds 1-0/+6
7 hoursMerge tag 'sysctl-6.10-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/...Gravatar Linus Torvalds 1-1/+0
2 dayskprobe/ftrace: bail out if ftrace was killedGravatar Stephen Brennan 1-0/+6
4 dayskprobes: remove dependency on CONFIG_MODULESGravatar Mike Rapoport (IBM) 1-21/+34
4 daysmm: introduce execmem_alloc() and execmem_free()Gravatar Mike Rapoport (IBM) 1-4/+4
2024-04-24kprobes: Remove the now superfluous sentinel elements from ctl_table arrayGravatar Joel Granados 1-1/+0
2024-04-10kprobes: Fix possible use-after-free issue on kprobe registrationGravatar Zheng Yejian 1-6/+12
2024-02-08kprobes: Remove unnecessary initial values of variablesGravatar Li zeming 1-2/+2
2023-12-01kprobes: consistent rcu api usage for kretprobe holderGravatar JP Kobryn 1-2/+2
2023-10-18kprobes: kretprobe scalability improvementGravatar wuqiang.matt 1-52/+39
2023-08-23kernel: kprobes: Use struct_size()Gravatar Ruan Jinjie 1-4/+2
2023-07-29kprobes: Prohibit probing on CFI preamble symbolGravatar Masami Hiramatsu (Google) 1-1/+13
2023-07-12Merge tag 'probes-fixes-v6.5-rc1' of git://git.kernel.org/pub/scm/linux/kerne...Gravatar Linus Torvalds 1-4/+4
2023-07-11kernel: kprobes: Remove unnecessary ‘0’ valuesGravatar Li zeming 1-3/+3
2023-07-11kprobes: Remove unnecessary ‘NULL’ values from correct_ret_addrGravatar Li zeming 1-1/+1
2023-06-06fprobe: Pass return address to the handlersGravatar Masami Hiramatsu (Google) 1-0/+1
2023-02-21x86/kprobes: Fix arch_check_optimized_kprobe check within optimized_kprobe rangeGravatar Yang Jihong 1-1/+1
2023-02-21x86/kprobes: Fix __recover_optprobed_insn check optimizing logicGravatar Yang Jihong 1-1/+1
2023-02-21kprobes: Fix to handle forcibly unoptimized kprobes on freeing_listGravatar Masami Hiramatsu (Google) 1-13/+10
2022-12-15kprobes: kretprobe events missing on 2-core KVM guestGravatar wuqiang 1-6/+2
2022-11-28kprobes: Fix check for probe enabled in kill_kprobe()Gravatar Li Huafei 1-8/+8
2022-11-18kprobes: Skip clearing aggrprobe's post_handler in kprobe-on-ftrace caseGravatar Li Huafei 1-1/+7
2022-11-04kprobe: reverse kp->flags when arm_kprobe failedGravatar Li Qiang 1-1/+4
2022-10-03Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextGravatar Jakub Kicinski 1-1/+5
2022-09-26kprobes: Add new KPROBE_FLAG_ON_FUNC_ENTRY kprobe flagGravatar Jiri Olsa 1-1/+5
2022-09-08kprobes: Prohibit probes in gate areaGravatar Christian A. Ehrhardt 1-0/+1
2022-08-20kprobes: don't call disarm_kprobe() for disabled kprobesGravatar Kuniyuki Iwashima 1-4/+5
2022-08-02kprobes: Forbid probing on trampoline and BPF code areasGravatar Chen Zhongjin 1-1/+2
2022-05-29Merge tag 'trace-v5.19' of git://git.kernel.org/pub/scm/linux/kernel/git/rost...Gravatar Linus Torvalds 1-73/+71
2022-05-26kprobes: Fix build errors with CONFIG_KRETPROBES=nGravatar Masami Hiramatsu 1-73/+71
2022-04-26kprobes: Fix KRETPROBES when CONFIG_KRETPROBE_ON_RETHOOK is setGravatar Adam Zabrocki 1-1/+1
2022-03-28kprobes: Use rethook for kretprobe if possibleGravatar Masami Hiramatsu 1-20/+104
2022-03-15x86/ibt,kprobes: Cure sym+0 equals fentry woesGravatar Peter Zijlstra 1-14/+52
2022-03-15x86/ibt,ftrace: Search for __fentry__ locationGravatar Peter Zijlstra 1-6/+2
2022-01-22kprobe: move sysctl_kprobes_optimization to kprobes.cGravatar Xiaoming Ni 1-4/+26
2021-12-01kprobes: Limit max data_size of the kretprobe instancesGravatar Masami Hiramatsu 1-0/+3
2021-11-01Merge tag 'trace-v5.16' of git://git.kernel.org/pub/scm/linux/kernel/git/rost...Gravatar Linus Torvalds 1-227/+280
2021-10-21kprobes: convert tests to kunitGravatar Sven Schnelle 1-3/+0
2021-10-05sched: Move kprobes cleanup out of finish_task_switch()Gravatar Thomas Gleixner 1-4/+4
2021-09-30x86/kprobes: Fixup return address in generic trampoline handlerGravatar Masami Hiramatsu 1-0/+11
2021-09-30kprobes: Enable stacktrace from pt_regs in kretprobe handlerGravatar Masami Hiramatsu 1-0/+7
2021-09-30kprobes: Add kretprobe_find_ret_addr() for searching return addressGravatar Masami Hiramatsu 1-26/+83
2021-09-30kprobes: treewide: Remove trampoline_address from kretprobe_trampoline_handler()Gravatar Masami Hiramatsu 1-2/+1
2021-09-30kprobes: treewide: Replace arch_deref_entry_point() with dereference_symbol_d...Gravatar Masami Hiramatsu 1-6/+1
2021-09-30kprobes: Use bool type for functions which returns boolean valueGravatar Masami Hiramatsu 1-13/+13
2021-09-30kprobes: treewide: Use 'kprobe_opcode_t *' for the code address in get_optimi...Gravatar Masami Hiramatsu 1-5/+5
2021-09-30kprobes: Add assertions for required lockGravatar Masami Hiramatsu 1-7/+12
2021-09-30kprobes: Fix coding style issuesGravatar Masami Hiramatsu 1-114/+122
2021-09-30kprobes: treewide: Cleanup the error messages for kprobesGravatar Masami Hiramatsu 1-20/+16