Files
kernel_common_drivers/drivers/debug/kprobes.c
T
qiankun.wang e081e66c5c tty: add initargs to reduce useless count [2/2]
PD#SWPL-202314

Problem:
reduce useless check when count is too big

Solution:
reduce useless check when count is too big

Verify:
sc2

Change-Id: I933237758b6b4647bfcee74a1027e2ce4dc39fc4
Signed-off-by: qiankun.wang <qiankun.wang@amlogic.com>
2025-08-14 06:38:44 -07:00

165 lines
3.9 KiB
C

// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
*/
#include <linux/irqflags.h>
#include <linux/moduleparam.h>
#include <linux/module.h>
#include <linux/kprobes.h>
#include <linux/stop_machine.h>
#include <linux/amlogic/gki_module.h>
#ifdef CONFIG_ARM64
#include <asm/daifflags.h>
#endif
#include "main.h"
static DEFINE_PER_CPU(unsigned long, kprobe_busy_flags);
static int kprobe_busy_disable_irq;
module_param(kprobe_busy_disable_irq, int, 0644);
static int __nocfi __kprobes kprobe_busy_begin_pre_handler(struct kprobe *p, struct pt_regs *regs)
{
if (kprobe_busy_disable_irq) {
#ifdef CONFIG_ARM64
//save and disable irq
__this_cpu_write(kprobe_busy_flags, regs->pstate & DAIF_MASK);
regs->pstate |= DAIF_MASK;
//directly return to lr (eg: kretprobe_trampoline_handler)
instruction_pointer_set(regs, regs->regs[30]);
#endif
#ifdef CONFIG_ARM
//save and disable irq
__this_cpu_write(kprobe_busy_flags, regs->ARM_cpsr & PSR_I_BIT);
regs->ARM_cpsr |= PSR_I_BIT;
//directly return to lr (eg: kretprobe_trampoline_handler)
instruction_pointer_set(regs, regs->ARM_lr);
#endif
//no need continue do single-step
return 1;
}
//if kprobe_busy_disable_irq not enable, continue origin function
return 0;
}
static struct kprobe kp_kprobe_busy_begin = {
.symbol_name = "kprobe_busy_begin",
.pre_handler = kprobe_busy_begin_pre_handler,
};
static int __nocfi __kprobes kprobe_busy_end_pre_handler(struct kprobe *p, struct pt_regs *regs)
{
if (kprobe_busy_disable_irq) {
unsigned long flags = __this_cpu_read(kprobe_busy_flags);
#ifdef CONFIG_ARM64
//restore irq
regs->pstate &= ~DAIF_MASK;
regs->pstate |= flags;
//directly return to lr (eg: kretprobe_trampoline_handler)
instruction_pointer_set(regs, regs->regs[30]);
#endif
#ifdef CONFIG_ARM
//restore irq
regs->ARM_cpsr &= ~PSR_I_BIT;
regs->ARM_cpsr |= flags;
//directly return to lr (eg: kretprobe_trampoline_handler)
instruction_pointer_set(regs, regs->ARM_lr);
#endif
//no need continue do single-step
return 1;
}
//if kprobe_busy_disable_irq not enable, continue origin function
return 0;
}
static struct kprobe kp_kprobe_busy_end = {
.symbol_name = "kprobe_busy_end",
.pre_handler = kprobe_busy_end_pre_handler,
};
#include <linux/tty.h>
static int ignore_check_tty_count = 20000;
module_param(ignore_check_tty_count, int, 0644);
static int check_tty_en;
static int check_tty_en_setup(char *buf)
{
if (!buf)
return -EINVAL;
if (kstrtoint(buf, 0, &check_tty_en)) {
pr_err("check_tty_en error: %s\n", buf);
return -EINVAL;
}
pr_info("check_tty_en = %d\n", check_tty_en);
return 1;
}
__setup("check_tty_en=", check_tty_en_setup);
static int __nocfi __kprobes check_tty_count_pre_handler(struct kprobe *p, struct pt_regs *regs)
{
#ifdef CONFIG_ARM64
struct tty_struct *tty = (struct tty_struct *)regs->regs[0];
if (tty->count >= ignore_check_tty_count) {
//directly return to lr (eg: kretprobe_trampoline_handler)
instruction_pointer_set(regs, regs->regs[30]);
return 1;
}
#endif
#ifdef CONFIG_ARM
struct tty_struct *tty = (struct tty_struct *)regs->ARM_r0;
if (tty->count >= ignore_check_tty_count) {
//directly return to lr (eg: kretprobe_trampoline_handler)
instruction_pointer_set(regs, regs->ARM_lr);
return 1;
}
#endif
return 0;
}
static struct kprobe kp_check_tty_count = {
.symbol_name = "check_tty_count",
.pre_handler = check_tty_count_pre_handler,
};
int aml_kprobes_init(void)
{
int ret;
if (check_tty_en) {
ret = register_kprobe(&kp_check_tty_count);
if (ret)
pr_err("register_kprobe: kp_check_tty_count failed:%d\n", ret);
}
ret = register_kprobe(&kp_kprobe_busy_begin);
if (ret) {
pr_err("register_kprobe: kp_kprobe_busy_begin failed:%d\n", ret);
return 1;
}
ret = register_kprobe(&kp_kprobe_busy_end);
if (ret) {
pr_err("register_kprobe: kp_kprobe_busy_end failed:%d\n", ret);
unregister_kprobe(&kp_kprobe_busy_begin);
return 1;
}
kprobe_busy_disable_irq = 1;
return 0;
}