/* * This struct defines the way the registers are stored on the stack during * a system call/exception. If you add a register here, please also add it to * regoffset_table[] in arch/loongarch/kernel/ptrace.c.
*/ struct pt_regs { /* Main processor registers. */ unsignedlong regs[32];
/* Original syscall arg0. */ unsignedlong orig_a0;
/* Query offset/name of register from its name/offset */ externint regs_query_register_offset(constchar *name); #define MAX_REG_OFFSET (offsetof(struct pt_regs, __last) - sizeof(unsignedlong))
/** * regs_get_register() - get register value from its offset * @regs: pt_regs from which register value is gotten. * @offset: offset number of the register. * * regs_get_register returns the value of a register. The @offset is the * offset of the register in struct pt_regs address which specified by @regs. * If @offset is bigger than MAX_REG_OFFSET, this returns 0.
*/ staticinlineunsignedlong regs_get_register(struct pt_regs *regs, unsignedint offset)
{ if (unlikely(offset > MAX_REG_OFFSET)) return 0;
/** * regs_within_kernel_stack() - check the address in the stack * @regs: pt_regs which contains kernel stack pointer. * @addr: address which is checked. * * regs_within_kernel_stack() checks @addr is within the kernel stack page(s). * If @addr is within the kernel stack, it returns true. If not, returns false.
*/ staticinlineint regs_within_kernel_stack(struct pt_regs *regs, unsignedlong addr)
{ return ((addr & ~(THREAD_SIZE - 1)) ==
(kernel_stack_pointer(regs) & ~(THREAD_SIZE - 1)));
}
/** * regs_get_kernel_stack_nth() - get Nth entry of the stack * @regs: pt_regs which contains kernel stack pointer. * @n: stack entry number. * * regs_get_kernel_stack_nth() returns @n th entry of the kernel stack which * is specified by @regs. If the @n th entry is NOT in the kernel stack, * this returns 0.
*/ staticinlineunsignedlong regs_get_kernel_stack_nth(struct pt_regs *regs, unsignedintn)
{ unsignedlong *addr = (unsignedlong *)kernel_stack_pointer(regs);
/** * regs_get_kernel_argument() - get Nth function argument in kernel * @regs: pt_regs of that context * @n: function argument number (start from 0) * * regs_get_argument() returns @n th argument of the function call. * Note that this chooses most probably assignment, in some case * it can be incorrect. * This is expected to be called from kprobes or ftrace with regs * where the top of stack is the return address.
*/ staticinlineunsignedlong regs_get_kernel_argument(struct pt_regs *regs, unsignedint n)
{ #define NR_REG_ARGUMENTS 8 staticconstunsignedint args[] = {
offsetof(struct pt_regs, regs[4]),
offsetof(struct pt_regs, regs[5]),
offsetof(struct pt_regs, regs[6]),
offsetof(struct pt_regs, regs[7]),
offsetof(struct pt_regs, regs[8]),
offsetof(struct pt_regs, regs[9]),
offsetof(struct pt_regs, regs[10]),
offsetof(struct pt_regs, regs[11]),
};
if (n < NR_REG_ARGUMENTS) return regs_get_register(regs, args[n]); else {
n -= NR_REG_ARGUMENTS; return regs_get_kernel_stack_nth(regs, n);
}
}
/* * Does the process account for user or for system time?
*/ #define user_mode(regs) (((regs)->csr_prmd & PLV_MASK) == PLV_USER)
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.