blob: 8dcbac6475f1da1fabc5a2432c97d2e53d7f145f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/*
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <Kernel/Arch/x86/ASM_wrapper.h>
namespace Kernel {
class SmapDisabler {
public:
ALWAYS_INLINE SmapDisabler()
: m_flags(cpu_flags())
{
stac();
}
ALWAYS_INLINE ~SmapDisabler()
{
if (!(m_flags & 0x40000))
clac();
}
private:
const FlatPtr m_flags;
};
}
|