The labs in general require not many lines of code (tens to a few hundred lines), but the code is conceptually complicated and often details matter a lot. So, make sure you do the assigned reading for the labs, read the relevant files through, consult the documentation (the RISC-V manuals etc. are on the readings page) before you write any code. Only when you have a firm grasp of the assignment and solution, then start coding. When you start coding, implement your solution in small steps (the assignments often suggest how to break the problem down in smaller steps) and test whether each steps works before proceeding to the next one.
Although most C programs never need to cast between pointers and integers, operating systems frequently do. Whenever you see an addition involving a memory address, ask yourself whether it is an integer addition or pointer addition and make sure the value being added is appropriately multiplied or not. A few pointer common idioms are in particular worth remembering:
int *p = (int*)100
, then (int)p + 1
and (int)(p + 1)
are different numbers: the first is 101
but the second is 104
. When adding an integer to a pointer, as in the second case, the integer is implicitly multiplied by the size of the object the pointer points to.p[i]
is defined to be the same as *(p+i)
, referring to the i
-th object in the memory pointed to by p
. The above rule for addition helps this definition work when the objects are larger than one byte.&p[i]
is the same as (p+i)
, yielding the address of the i
-th object in the memory pointed to by p
.If you fail a test, make sure you understand why your code fails the test. Insert print statements until you understand what is going on.
You may find that your print statements may produce much output that you would like to search through; one way to do that is to run make qemu inside of script
(run man script on your machine), which logs all console output to a file, which you can then search. Don’t forget to exit script
.
In many cases, print statements will be sufficient, but sometimes being able to single step through some assembly code or inspecting the variables on the stack is helpful. To use gdb with xv6, you need to first do the following steps:
Open your xv6 repo in two windows/terminals . If you are using docker, run docker ps to get the active docker container ID, and run docker exec -it \<container id\> /bin/bash to open another docker window.
Add a line add-auto-load-safe-path /full/path/to/xv6/code/.gdbinit
(e.g., add-auto-load-safe-path /home/xv6/xv6-riscv/.gdbinit
on the container) to the ~/.gdbinit
in your HOME directory (e.g., /home/xv6/.gdbinit
on the container).
In one window, simply run make qemu-gdb, it should print out something ends like this:
c
(continue) in the gdb-multiarch window, now you should see the xv6 system starts as usual on the other window. (See Using the GNU Debugger for helpful GDB tips.)There are also several other tips for debugging xv6 system.
If you want to see what the assembly is that the compiler generates for the kernel or to find out what the instruction is at a particular kernel address, see the file kernel.asm
, which the Makefile
produces when it compiles the kernel. (The Makefile
also produces .asm
for all user programs.)
If the kernel panics, it will print an error message listing the value of the program counter when it crashed; you can search kernel.asm
to find out in which function the program counter was when it crashed, or you can run addr2line -e kernel/kernel pc-value (run man addr2line for details). If you want to get backtrace, restart using gdb: set breakpoint in panic (b panic) when gdb-multiarch starts, followed by c (continue). When the kernel hits the break point, type bt to get a backtrace.
If your kernel hangs (e.g., due to a deadlock) or cannot execute further (e.g., due to a page fault when executing a kernel instruction), you can use gdb to find out where it is hanging. When the kernel appears to hang hit Ctrl-C in the gdb-multiarch window and type bt to get a backtrace.
QEMU has a “monitor” that lets you query the state of the emulated machine. You can get at it by typing Ctrl-a c (the “c” is for console). A particularly useful monitor command is info mem to print the page table. You may need to use the cpu command to select which core info mem looks at, or you could start qemu with make CPUS=1 qemu to cause there to be just one core.