Home
last modified time | relevance | path

Searched refs:si_call_addr (Results 1 – 13 of 13) sorted by relevance

/linux/Documentation/translations/zh_CN/userspace-api/
H A Dseccomp_filter.rst92 ``siginfo->si_call_addr`` 会展示系统调用指令的位置, ``siginfo->si_syscall``
274 - ``SECCOMP_RET_TRAP`` 的返回值会设置一个指向给定vsyscall入口的 ``si_call_addr``,
288 ``siginfo->si_call_addr`` 。)不要检测其他条件:未来内核可能会改进vsyscall模拟,
/linux/kernel/entry/
H A Dsyscall_user_dispatch.c27 info.si_call_addr = (void __user *)KSTK_EIP(current); in trigger_sigsys()
/linux/include/uapi/asm-generic/
H A Dsiginfo.h166 #define si_call_addr _sifields._sigsys._call_addr macro
/linux/fs/
H A Dsignalfd.c142 new.ssi_call_addr = (long) kinfo->si_call_addr; in signalfd_copyinfo()
/linux/Documentation/userspace-api/
H A Dseccomp_filter.rst106 task without executing the system call. ``siginfo->si_call_addr``
346 - A return value of ``SECCOMP_RET_TRAP`` will set a ``si_call_addr`` pointing to
367 ``SECCOMP_RET_TRAP``, use ``siginfo->si_call_addr``.) Do not check any other
/linux/kernel/
H A Dsignal.c1850 info.si_call_addr = (void __user *)KSTK_EIP(current); in force_sig_seccomp()
3496 to->si_call_addr = ptr_to_compat(from->si_call_addr); in copy_siginfo_to_external32()
3582 to->si_call_addr = compat_ptr(from->si_call_addr); in post_copy_siginfo_from_user32()
4802 CHECK_OFFSET(si_call_addr); in siginfo_buildtime_checks()
/linux/arch/x86/kernel/
H A Dsignal_32.c503 static_assert(offsetof(siginfo32_t, si_call_addr) == 0x0C);
H A Dsignal_64.c518 static_assert(offsetof(siginfo_t, si_call_addr) == 0x10);
/linux/arch/arm/kernel/
H A Dsignal.c715 static_assert(offsetof(siginfo_t, si_call_addr) == 0x0c);
/linux/arch/arm64/kernel/
H A Dsignal32.c493 static_assert(offsetof(compat_siginfo_t, si_call_addr) == 0x0c);
H A Dsignal.c1401 static_assert(offsetof(siginfo_t, si_call_addr) == 0x10);
/linux/arch/m68k/kernel/
H A Dsignal.c637 BUILD_BUG_ON(offsetof(siginfo_t, si_call_addr) != 0x0c); in siginfo_build_tests()
/linux/tools/testing/selftests/seccomp/
H A Dseccomp_bpf.c1147 &(TRAP_info.si_call_addr); in TEST_F()