2020-06-26 10:21:16 -07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
#ifndef __SELFTESTS_X86_HELPERS_H
|
|
|
|
#define __SELFTESTS_X86_HELPERS_H
|
|
|
|
|
2025-02-25 17:07:21 -08:00
|
|
|
#include <signal.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2020-06-26 10:21:16 -07:00
|
|
|
#include <asm/processor-flags.h>
|
|
|
|
|
2025-02-25 17:07:21 -08:00
|
|
|
#include "../kselftest.h"
|
|
|
|
|
2020-06-26 10:21:16 -07:00
|
|
|
static inline unsigned long get_eflags(void)
|
|
|
|
{
|
|
|
|
#ifdef __x86_64__
|
2020-11-02 11:54:02 -08:00
|
|
|
return __builtin_ia32_readeflags_u64();
|
2020-06-26 10:21:16 -07:00
|
|
|
#else
|
2020-11-02 11:54:02 -08:00
|
|
|
return __builtin_ia32_readeflags_u32();
|
2020-06-26 10:21:16 -07:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void set_eflags(unsigned long eflags)
|
|
|
|
{
|
|
|
|
#ifdef __x86_64__
|
2020-11-02 11:54:02 -08:00
|
|
|
__builtin_ia32_writeeflags_u64(eflags);
|
2020-06-26 10:21:16 -07:00
|
|
|
#else
|
2020-11-02 11:54:02 -08:00
|
|
|
__builtin_ia32_writeeflags_u32(eflags);
|
2020-06-26 10:21:16 -07:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2025-02-25 17:07:21 -08:00
|
|
|
static inline void sethandler(int sig, void (*handler)(int, siginfo_t *, void *), int flags)
|
|
|
|
{
|
|
|
|
struct sigaction sa;
|
|
|
|
|
|
|
|
memset(&sa, 0, sizeof(sa));
|
|
|
|
sa.sa_sigaction = handler;
|
|
|
|
sa.sa_flags = SA_SIGINFO | flags;
|
|
|
|
sigemptyset(&sa.sa_mask);
|
|
|
|
if (sigaction(sig, &sa, 0))
|
|
|
|
ksft_exit_fail_msg("sigaction failed");
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void clearhandler(int sig)
|
|
|
|
{
|
|
|
|
struct sigaction sa;
|
|
|
|
|
|
|
|
memset(&sa, 0, sizeof(sa));
|
|
|
|
sa.sa_handler = SIG_DFL;
|
|
|
|
sigemptyset(&sa.sa_mask);
|
|
|
|
if (sigaction(sig, &sa, 0))
|
|
|
|
ksft_exit_fail_msg("sigaction failed");
|
|
|
|
}
|
|
|
|
|
2020-06-26 10:21:16 -07:00
|
|
|
#endif /* __SELFTESTS_X86_HELPERS_H */
|