This repository has moved permanently to https://github.com/utsaslab/crashmonkey-PM
PMTester is a record and replay tool for testing crash-consistency bugs in Persistent memory file systems. PMTester makes use of the PANDA instrumentation tool for QEMU to trac the writes to memory.
1. Setup panda
1. I made a few hacks in the panda repo to append a terminating string to detect end of communication
with the QEMU monitor (Original PANDA repo : [PANDA](https://www.github.com/panda-re/panda))
git clone https://github.com/jayashreemohan29/panda.git
2. git checkout hack
3. cd panda
4. ./configure
5. cd ..
6. git clone https://github.com/williewillus/panda_scratchpad.git
7. git checkout jaya_dev
8. cd panda
9. ./build.sh --extra-plugins-path=../../panda_scratchpad/personal_plugins --target-list=x86_64-softmmu
Now PANDA is setup and ready.
2. Setup VM
1. Spin up a VM running Ubuntu 16.04 or copy the VM image in my home directory on Chennai machine :
/home/jayashree/projects/panda_scratchpad/vm_new.img
(This VM has a kernel that supports both NOVA and PMFS, kernel 4.13. It also has 2 pmem devices
the first one from 1024MB-1152MB, and the second from 1152MB-1280MB (128MB each))
3. Launch the VM
1. cd panda_scratchpad
2. ./launch_headless.sh vm_new.img 2G
This command launches the VM with 2GB memory, and forwards requests on port 2222, and
opens up the qemu monitor on port 4444
4. Login to the VM and run PMTester
1. Start the VM:
ssh -p 2222 root@localhost
2. Clone the repo : git clone https://github.com/williewillus/panda_scratchpad.git
3. cd panda_scratchpad
4. checkout jaya_dev
5. make
6. Setup mount points and ramdisk
i. mkdir /mnt/ramdisk
ii. mount -t tmpfs -o size=256m tmpfs /mnt/ramdisk
iii. mkdir /mnt/pmem0; mkdir /mnt/pmem1
iv. We assume by default that /dev/pmem0 and /dev/pmem1 devices exist. If they don't,
pass the device paths to the harness using -d <record_dev> and -r <replay_dev> flags.
7. There's one sample workload j-lang150 which does an unaligned write followed by fsync.
To run it on NOVA(default),
./harness build/tests/j-lang150.so
8. To run it on pmfs/ext4-dax, use the -f flag
./harness -f pmfs build/tests/j-lang150.so
./harness -f dax build/tests/j-lang150.so
./harness -f NOVA build/tests/j-lang150.so
(Sorry, the FS names are case sensitive for now. So ensure you type NOVA in caps)
(Default values for tracking range, FS size etc can be found in the file src/main.cpp.
You can pass these in as flags to the harness.
The default IP for commmunicatoing to the QEMU monitor is set to that of chennai machine
So be sure to override it by passing the IP of your machine using -i flag)
8. After the run, a 'diff' file will be generated in the root directory which mentions the
errors that resulted in the bug if the test fails.
- Clone this repo: github.com/williewillus/panda_scratchpad
- Clone panda: github.com/panda-re/panda
- Build panda according to the instructions for Ubuntu 16.04
- When executing the build.sh file, append these options:
./build.sh --extra_plugins_path=<path_to_this_repo>/personal_plugins --target-list=x86_64-softmmu
. This includes our plugin for compilation and only compiles QEMU for x86_64.
- When executing the build.sh file, append these options:
- If the compilation fails saying something about plugins/network, disable that plugin by removing the line "network" from the
<panda_repo>/panda/plugins/config.panda
file.
- Build panda according to the instructions for Ubuntu 16.04
- Retrieve the vm image:
scp <user>@chennai.csres.utexas.edu:/home/vincent/SAS_RESEARCH/vm_clean.img <dest>/vm.img
- It is a very minimal installation of Arch Linux with a passwordless root account, running a build of NOVA on Linux 4.13
- The VM image is big, so you can also download Arch Linux and install it yourself if you don't want to download that much
- Boot QEMU using the launch.sh or launch_headless.sh scripts in this repo
- It assumes the panda repo is a sibling directory of this repo
- The VM can be accessed after it boots in about 30s via ssh:
ssh -p 2222 root@localhost
- Enter the QEMU monitor by doing
telnet localhost 4444
- From here, you can load the writetracker plugin using
load_plugin writetracker start=<start_address>,end=<end_address>
- The plugin can be stopped and unloaded by using
list_plugins
to get writetracker's index (first column), then doingunload_plugin <idx>
- Exit the monitor using ctrl-esc, then
telnet> close
- Whenever the plugin is unloaded, it writes all of its tracked writes into
wt.out
, overwriting of it exists already. - The out file can be read with the
src/reader.cpp
program (very rough frontend right now, and likely to change)
-
NOTE: Currently, I'm having troubles getting NOVA master (4.18) to run in the VM properly (the pmem devices are not being recognized). For now, we should just continue running the vm with the existing 4.13 kernel
-
Clone nova outside the VM:
git clone https://www.github.com/nvsl/linux-nova
- cd into it and
make clean mrproper defconfig nconfig
- in the gui that pops up:
- Set General Setup > Local Version to "-nova"
- Set Processor Type and Features > Transparent Hugepage Support (CONFIG_TRANSPARENT_HUGEPAGE) and Support non-standard NVDIMMs... (CONFIG_X86_PMEM_LEGACY) to "*"
- Set Device Drivers > NVDIMM and DAX and all their subitems to "*"
- Set File Systems > Direct Access (CONFIG_FS_DAX) to "*" and NOVA (CONFIG_FS_NOVA) to "*"
- compile the kernel with
make -j5
- cd into it and
-
Transfer kernel into the (running) VM using
scp -p 2222 arch/x86_64/boot/bzImage root@localhost:/boot/vmlinuz-linux-nova
-
Reboot the VM from SSH