GhostWrite is a security vulnerability that affects the T-Head XuanTie C910, one of the fastest RISC-V chips to date. GhostWrite breaks all security isolations on affected RISC-V hardware. Refer to the GhostWrite website for details and the research paper.
Please find the most up to date citation directly at the top of our website.
At it's core, GhostWrite exploits a single ill-behaving store instruction on the C910, which illegally uses a physical instead of a virtual address as target.
This PoC uses the vse128.v
, though other encodings are available as well.
The instruction is embedded in it's assembled form into the code since the instruction is not (yet) supported by compilers.
Instructions preceding the vulnerable instruction set up the vector extension and set up registers correctly.
The PoC tests if GhostWrite works on the machine by resolving the physical address of a virtual one and then writing to that physical address. Afterwards the caches need to be flushed so that the new value is visible in virtual memory.
The following should work on the machine itself:
gcc -march="rv64gvzve64x" ghostwrite.c -o ghostwrite
The Makefile is configured to produce a statically linked binary (using a cross-compiler).
Simply execute make
.
Run the PoC with root privileges, so that it can setup a mapping to physical memory for observing a write with GhostWrite:
sudo ./ghostwrite
Expected output:
Virtual address: 3fbd3e8000
Physical address: 89f46000
Value before: caaa
Value after: cafe
The output should contain valid virtual and physical addresses. Further, the value after executing GhostWrite with the physical address as target should change. If the values stay the same, i.e., you see "caaa" twice, or the application crashes, the CPU is not affected.
We further ship a Nix flakes based building environment. Install Nix on your system and enable flakes. Then just get a development shell and build the PoC:
nix develop
make