Skip to content

Commit 1f83206

Browse files
committed
labs/templates: Update 7-kvm-vmm skel
Update assignment 7: kvm vmm skel to fix several build errors. * Add `-Iinclude/` to CFLAGS * Fix Makefile rules for the guests * Add `#endif`s to the header files * Halt at the end of the 32 bits guest * Fix structure names in vmm.c Signed-off-by: Stefan Jumarea <[email protected]>
1 parent 94dbd7b commit 1f83206

File tree

8 files changed

+31
-21
lines changed

8 files changed

+31
-21
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
1-
CFLAGS = -Wall -Wextra -O2
1+
CFLAGS = -g -Wall -Wextra -O0 -Iinclude/
22

3-
run64: kvm-hello-world
3+
.PHONY: run
4+
run: kvm-hello-world
45
./kvm-hello-world
56

6-
kvm-hello-world: vmm.o payload.o virtual_machine.o virtual_cpu.o
7+
kvm-hello-world: vmm.o payload.o
78
$(CC) $^ -o $@
89

9-
payload.o: payload.ld guest64.img.o guest16.o
10-
$(LD) -T $< -o $@
10+
payload.o: payload.ld guest_16_bits/guest16.o guest64.img.o
11+
$(LD) -r -T $< -o $@
1112

12-
guest64.o: guest_code.c
13+
guest64.o: guest_32_bits/guest_code.c
1314
$(CC) $(CFLAGS) -m64 -ffreestanding -fno-pic -c -o $@ $^
1415

1516
guest64.img: guest64.o
16-
$(LD) -T guest.ld $^ -o $@
17+
$(LD) -T guest_32_bits/guest.ld $^ -o $@
1718

1819
%.img.o: %.img
1920
$(LD) -b binary -r $^ -o $@
2021

2122
.PHONY: clean
2223
clean:
23-
$(RM) kvm-hello-world kvm-hello-world.o payload.o \
24-
*.o *.img
24+
$(RM) kvm-hello-world vmm.o payload.o guest_16_bits/guest16.o \
25+
guest64.o guest64.img guest64.img.o
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.code16
2-
.global code16, code16_end
2+
.global guest16, guest16_end
33
guest16:
44
movw $42, %ax
55
movw %ax, 0x400
66
hlt
7-
guest16_end:
7+
guest16_end:

tools/labs/templates/assignments/7-kvm-vmm/skel/guest_32_bits/guest_code.c

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#include <stdint.h>
12
#include "device.h"
23

34
// Phys addr memory layout:
@@ -48,6 +49,7 @@ void
4849
__attribute__((noreturn))
4950
__attribute__((section(".start")))
5051
_start(void) {
52+
const char *p;
5153

5254
for (p = "Hello, world!\n"; *p; ++p)
5355
outb(0xE9, *p);
@@ -57,4 +59,5 @@ _start(void) {
5759
/* TODO: Using the paravirtualized driver we have written for SIMVIRTIO, send
5860
"Ana are mere!\n" */
5961

62+
asm("hlt" : /* empty */ : "a" (42) : "memory");
6063
}

tools/labs/templates/assignments/7-kvm-vmm/skel/include/vcpu.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,6 @@
6161
typedef struct vcpu {
6262
int fd;
6363
struct kvm_run *kvm_run;
64-
} virtual_cpu;
64+
} virtual_cpu;
65+
66+
#endif

tools/labs/templates/assignments/7-kvm-vmm/skel/include/vm.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@ typedef struct vm {
66
int sys_fd;
77
int fd;
88
char *mem;
9-
} virtual_machine;
9+
} virtual_machine;
10+
11+
#endif

tools/labs/templates/assignments/7-kvm-vmm/skel/payload.ld

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ SECTIONS
22
{
33
.payload16 0 : {
44
guest16 = .;
5-
guest16.o(.text)
5+
guest_16_bits/guest16.o(.text)
66
guest16_end = .;
77
}
88
.payload64 0 : AT(LOADADDR(.payload16)+SIZEOF(.payload16)) {
99
guest64 = .;
1010
guest64.img.o
1111
guest64_end = .;
1212
}
13-
}
13+
}

tools/labs/templates/assignments/7-kvm-vmm/skel/vmm.c

+8-6
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,19 @@ int main(int argc, char **argv) {
1818
UNUSED_PARAMETER(argv);
1919
struct vm virtual_machine;
2020
struct vcpu virtual_cpu;
21+
struct kvm_regs regs;
22+
uint16_t memval;
2123

2224
/* TODO: Initialize the VM. We will use 0x100000 bytes for the memory */
2325
/* TODO: Initialize the VCPU */
24-
/* TODO: Setup real mode. We will use guest_16_bits to test this.
26+
/* TODO: Setup real mode. We will use guest_16_bits to test this. */
2527
/* TODO: IF real mode works all right. We can try to set up long mode*/
2628

2729
for (;;) {
2830
/* TODO: Run the VCPU with KVM_RUN */
2931

3032
/* TODO: Handle VMEXITs */
31-
switch (vcpu->kvm_run->exit_reason) {
33+
switch (virtual_cpu.kvm_run->exit_reason) {
3234
case KVM_EXIT_HLT: {goto check;}
3335
case KVM_EXIT_MMIO: {
3436
/* TODO: Handle MMIO read/write. Data is available in the shared memory at
@@ -42,13 +44,13 @@ int main(int argc, char **argv) {
4244

4345
fprintf(stderr, "\nGot exit_reason %d,"
4446
" expected KVM_EXIT_HLT (%d)\n",
45-
vcpu->kvm_run->exit_reason, KVM_EXIT_HLT);
47+
virtual_cpu.kvm_run->exit_reason, KVM_EXIT_HLT);
4648
exit(1);
4749
}
4850

4951
/* We verify that the guest code ran accordingly */
5052
check:
51-
if (ioctl(vcpu->fd, KVM_GET_REGS, &regs) < 0) {
53+
if (ioctl(virtual_cpu.fd, KVM_GET_REGS, &regs) < 0) {
5254
perror("KVM_GET_REGS");
5355
exit(1);
5456
}
@@ -60,7 +62,7 @@ int main(int argc, char **argv) {
6062
}
6163

6264
/* Verify that the guest has written 42 at 0x400 */
63-
memcpy(&memval, &vm->mem[0x400], sz);
65+
memcpy(&memval, &virtual_machine.mem[0x400], sizeof(uint16_t));
6466
if (memval != 42) {
6567
printf("Wrong result: memory at 0x400 is %lld\n",
6668
(unsigned long long)memval);
@@ -69,4 +71,4 @@ int main(int argc, char **argv) {
6971

7072
printf("%s\n", "Finished vmm");
7173
return 0;
72-
}
74+
}

0 commit comments

Comments
 (0)