forked from copy/v86
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild-state.js
executable file
·100 lines (82 loc) · 2.9 KB
/
build-state.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#!/usr/bin/env node
"use strict";
const path = require("path");
// TODO:
// - Timeout
console.log("Don't forget to run `make all` before running this script");
var fs = require("fs");
var V86 = require("./../../../build/libv86.js").V86;
const V86_ROOT = path.join(__dirname, "../../..");
var OUTPUT_FILE = path.join(V86_ROOT, "images/debian-state-base.bin");
process.stdin.setRawMode(true);
process.stdin.resume();
process.stdin.setEncoding("utf8");
process.stdin.on("data", handle_key);
var emulator = new V86({
bios: { url: path.join(V86_ROOT, "/bios/seabios.bin") },
vga_bios: { url: path.join(V86_ROOT, "/bios/vgabios.bin") },
autostart: true,
memory_size: 1024 * 1024 * 1024,
vga_memory_size: 8 * 1024 * 1024,
network_relay_url: "<UNUSED>",
bzimage_initrd_from_filesystem: true,
// enable communication b/w JavaScript and v86 on serial port 1 (input) and 2 (output)
uart1: true,
uart2: true,
// Remove unneeded security features since running in a sandbox (spectre_v2=off, pti=off).
// Make state file half the size by setting "page_poison=on", i.e. when free memory, Linux doesn't overwrite with random bytes.
// Set "rootflags=trans=virtio,cache=none --> doesn't help with FS cache"
cmdline: "rw init=/bin/systemd root=host9p console=ttyS0 spectre_v2=off pti=off page_poison=on",
filesystem: {
basefs: {
url: path.join(V86_ROOT, "/images/debian-base-fs.json"),
},
baseurl: path.join(V86_ROOT, "/images/debian-9p-rootfs-flat/"),
},
screen_dummy: true,
});
console.log("Now booting, please stand by ...");
var boot_start = Date.now();
var serial_text = "";
let booted = false;
emulator.add_listener("serial0-output-byte", function(byte)
{
var c = String.fromCharCode(byte);
process.stdout.write(c);
serial_text += c;
if(!booted && serial_text.endsWith("root@localhost:~# "))
{
console.error("\nBooted in %d", (Date.now() - boot_start) / 1000);
booted = true;
// Sync and drop caches: Makes it safer to change the filesystem as fewer files are rendered
// Disable kernel logging with dmesg (drop_caches outputs things to ttyS0 even if run it on another port)
emulator.serial0_send("dmesg -n 1; sync; echo 3 >/proc/sys/vm/drop_caches; cd ~/tutorial; history -c\n");
setTimeout(async function ()
{
const s = await emulator.save_state();
fs.writeFile(OUTPUT_FILE, new Uint8Array(s), function(e)
{
if(e) throw e;
console.error("Saved as " + OUTPUT_FILE);
stop();
});
}, 10 * 1000);
}
});
function handle_key(c)
{
if(c === "\u0003")
{
// ctrl c
stop();
}
else
{
emulator.serial0_send(c);
}
}
function stop()
{
emulator.stop();
process.stdin.pause();
}