summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/platform/kvm/kvm_const.go
blob: 1d5c77ff476ee7d7374ff6031662df783f8ccda6 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// Copyright 2018 The gVisor Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package kvm

// KVM ioctls.
//
// Only the ioctls we need in Go appear here; some additional ioctls are used
// within the assembly stubs (KVM_INTERRUPT, etc.).
const (
	_KVM_CREATE_VM              = 0xae01
	_KVM_GET_VCPU_MMAP_SIZE     = 0xae04
	_KVM_CREATE_VCPU            = 0xae41
	_KVM_SET_TSS_ADDR           = 0xae47
	_KVM_RUN                    = 0xae80
	_KVM_NMI                    = 0xae9a
	_KVM_CHECK_EXTENSION        = 0xae03
	_KVM_INTERRUPT              = 0x4004ae86
	_KVM_SET_MSRS               = 0x4008ae89
	_KVM_SET_USER_MEMORY_REGION = 0x4020ae46
	_KVM_SET_REGS               = 0x4090ae82
	_KVM_SET_SREGS              = 0x4138ae84
	_KVM_GET_REGS               = 0x8090ae81
	_KVM_GET_SUPPORTED_CPUID    = 0xc008ae05
	_KVM_SET_CPUID2             = 0x4008ae90
	_KVM_SET_SIGNAL_MASK        = 0x4004ae8b
)

// KVM exit reasons.
const (
	_KVM_EXIT_EXCEPTION       = 0x1
	_KVM_EXIT_IO              = 0x2
	_KVM_EXIT_HYPERCALL       = 0x3
	_KVM_EXIT_DEBUG           = 0x4
	_KVM_EXIT_HLT             = 0x5
	_KVM_EXIT_MMIO            = 0x6
	_KVM_EXIT_IRQ_WINDOW_OPEN = 0x7
	_KVM_EXIT_SHUTDOWN        = 0x8
	_KVM_EXIT_FAIL_ENTRY      = 0x9
	_KVM_EXIT_INTERNAL_ERROR  = 0x11
	_KVM_EXIT_SYSTEM_EVENT    = 0x18
)

// KVM capability options.
const (
	_KVM_CAP_MAX_VCPUS       = 0x42
	_KVM_CAP_ARM_VM_IPA_SIZE = 0xa5
)

// KVM limits.
const (
	_KVM_NR_VCPUS         = 0xff
	_KVM_NR_INTERRUPTS    = 0x100
	_KVM_NR_CPUID_ENTRIES = 0x100
)

// KVM kvm_memory_region::flags.
const (
	_KVM_MEM_LOG_DIRTY_PAGES = uint32(1) << 0
	_KVM_MEM_READONLY        = uint32(1) << 1
	_KVM_MEM_FLAGS_NONE      = 0
)