Skip to content

Commit 0ce4f90

Browse files
committed
doc(cpu templates): updated documentation
- Added new `kvm_capabilities` and `vcpu_features` fields descriptions to the `schema.json` - Updated `cpu-templates.md` - Updated `CHANGELOG.md` Signed-off-by: Egor Lazarchuk <[email protected]>
1 parent 60ffe4f commit 0ce4f90

File tree

3 files changed

+59
-8
lines changed

3 files changed

+59
-8
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44

55
### Added
66

7+
- [#3967](https://github.com/firecracker-microvm/firecracker/pull/3967/):
8+
Added new fields to the custom CPU templates. (aarch64 only) `vcpu_features`
9+
field allows modifications of vCPU features enabled during vCPU
10+
initialization. `kvm_capabilities` field allows modifications of KVM
11+
capability checks that Firecracker performs during boot. If any of
12+
these fields are in use, minimal target snapshot version is
13+
restricted to 1.5.
14+
715
### Changed
816

917
- Updated deserialization of `bitmap` for custom CPU templates to allow usage

docs/cpu_templates/cpu-templates.md

+25-8
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ to the guest software by changing the following configuration:
66
- CPUID (x86_64 only)
77
- MSRs (Model Specific Registers, x86_64 only)
88
- ARM registers (aarch64 only)
9+
- vCPU features (aarch64 only)
10+
- KVM capabilities (both x86_64 and aarch64)
911

1012
A combination of the changes to the above entities is called a CPU template.
1113

@@ -128,6 +130,7 @@ curl --unix-socket /tmp/firecracker.socket -i \
128130
-H 'Accept: application/json' \
129131
-H 'Content-Type: application/json' \
130132
-d '{
133+
"kvm_capabilities": ["!56"],
131134
"cpuid_modifiers": [
132135
{
133136
"leaf": "0x1",
@@ -152,10 +155,13 @@ curl --unix-socket /tmp/firecracker.socket -i \
152155

153156
This CPU template will do the following:
154157

158+
- removes check for KVM capability: KVM_CAP_XCRS.
159+
This allows Firecracker to run on old cpus. See [this](https://github.com/firecracker-microvm/firecracker/discussions/3470)
160+
discussion.
155161
- in leaf `0x1`, subleaf `0x0`, register `eax`:
156-
- will clear bits `0b00001111111111000011100100001101`
157-
- will set bits `0b00000000000000110000011011110010`
158-
- will leave bits `0b11110000000000001100000000000000` intact.
162+
- clear bits `0b00001111111111000011100100001101`
163+
- set bits `0b00000000000000110000011011110010`
164+
- leave bits `0b11110000000000001100000000000000` intact.
159165
- in MSR `0x10`, it will clear all bits.
160166

161167
An example of configuring a custom CPU template on ARM:
@@ -166,6 +172,8 @@ curl --unix-socket /tmp/firecracker.socket -i \
166172
-H 'Accept: application/json' \
167173
-H 'Content-Type: application/json' \
168174
-d '{
175+
"kvm_capabilities": ["171", "172"],
176+
"vcpu_features": [{ "index": 0, "bitmap": "0b1100000" }]
169177
"reg_modifiers": [
170178
{
171179
"addr": "0x603000000013c020",
@@ -175,12 +183,21 @@ curl --unix-socket /tmp/firecracker.socket -i \
175183
}'
176184
```
177185

178-
This CPU templates will do the following with the ARM register `0x603000000013c020`:
179-
180-
- will clear bits `0b0000000000001111000000000000111100000000000000000000000000000000`
181-
- will leave bits `0b1111111111110000111111111111000011111111111111111111111111111111`
182-
intact.
186+
This CPU template will do the following:
183187

188+
- add checks for KVM capabilities: KVM_CAP_ARM_PTRAUTH_ADDRESS and KVM_CAP_ARM_PTRAUTH_GENERIC.
189+
These checks are to ensure that the host have capabilities needed for
190+
the vCPU features.
191+
- enable additional vCPU features: KVM_ARM_VCPU_PTRAUTH_ADDRESS and KVM_ARM_VCPU_PTRAUTH_GENERIC
192+
- modify ARM register `0x603000000013c020`:
193+
- clear bits `0b0000000000001111000000000000111100000000000000000000000000000000`
194+
- leave bits `0b1111111111110000111111111111000011111111111111111111111111111111`
195+
intact.
196+
197+
Information about KVM capabilities can be found in the
198+
[kernel source](https://elixir.bootlin.com/linux/latest/source/include/uapi/linux/kvm.h).
199+
Information about vCPU features on aarch64 can be found in the
200+
[kernel source](https://elixir.bootlin.com/linux/latest/source/arch/arm64/include/uapi/asm/kvm.h).
184201
Information on how the ARM register addresses are constructed can be found
185202
in the [KVM API documentation](https://docs.kernel.org/virt/kvm/api.html#kvm-set-one-reg).
186203

docs/cpu_templates/schema.json

+26
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,32 @@
55
"description": "Custom CPU template language description",
66
"type": "object",
77
"properties": {
8+
"kvm_capabilities": {
9+
"type": "array",
10+
"items": {
11+
"description": "Additional KVM capabilities can be added or existing (built-in) capabilities can be removed from the firecracker checks. To add KVM capability to the checklist specify decimal number of the corresponding KVM capability. To remove a KVM capability from the checklist specify decimal number of the corresponding KVM capability with '!' mark in the front. Works on both x86_64 and aarch64.",
12+
"type": "string",
13+
"examples": ["171", "!172"]
14+
}
15+
},
16+
"vcpu_features": {
17+
"type": "array",
18+
"items": {
19+
"description": "vCPU features to enable during vCPU initialization. Only for aarch64.",
20+
"type": "object",
21+
"properties": {
22+
"index": {
23+
"description": "Index into kvm_vcpu_init::features array. As of Linux kernel 6.4.10, only value 0 is allowed.",
24+
"type": "integer"
25+
},
26+
"bitmap": {
27+
"description": "Bitmap for modifying the 32 bit field in kvm_vcpu_init::features. Must be in the format `0b[01x]{1,32}`. Corresponding bits will be cleared (`0`), set (`1`) or left intact (`x`). (`_`) can be used as a separator.",
28+
"type": "string",
29+
"examples": ["0b1100000"]
30+
}
31+
}
32+
}
33+
},
834
"cpuid_modifiers": {
935
"type": "array",
1036
"items": {

0 commit comments

Comments
 (0)