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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
|
use header::Header;
use std::collections::HashMap;
use std::fs::File;
use std::io::{BufRead, BufReader, ErrorKind, Read, Seek, SeekFrom};
use std::path::PathBuf;
use vnf::{Machine, MemoryInitialValue, MemoryPolicy};
/// Version for this program.
const VERSION: &str = "0.1.0";
#[derive(Default)]
struct Args {
file: String,
start: Option<u16>,
assume_function: bool,
nasm: Option<String>,
dump_memory: bool,
until_address: u16,
}
fn print_help() {
println!("Run an NES/Famicom ROM to test its code under a set of conditions.\n");
println!("usage: runrom [OPTIONS] <FILE>\n");
println!("Options:");
println!(" -d, --dump-memory\tShow the memory that has changed after a run.");
println!(" -f, --function\tRun the code by assuming it's a function.");
println!(" -h, --help\t\tPrint this message and quit.");
println!(" -n, --nasm-directory <PATH>\tPath to the .nasm/ directory.");
println!(" -s, --start\t\tAddress from where to start (default: reset vector).");
println!(" -v, --version\t\tPrint version information.");
std::process::exit(0);
}
// Print the given `message` and exit(1).
fn die(message: String) -> ! {
eprintln!("error: {message}");
std::process::exit(1);
}
fn parse_hex_digit(c: char) -> Result<u16, String> {
match c.to_digit(16) {
Some(val) => Ok(val as u16),
None => Err("cannot convert digit to hexadecimal".to_string()),
}
}
fn parse_hex_argument(given: &str) -> Result<u16, String> {
// Skip a leading '$' character.
let arg = if given.starts_with('$') {
given.get(1..).unwrap_or("")
} else {
given
};
let mut chars = arg.chars();
match arg.len() {
0 => Err("you need to provide an address".to_string()),
1 => Ok(parse_hex_digit(chars.next().unwrap())?),
2 => Ok((parse_hex_digit(chars.next().unwrap())? << 4)
+ (parse_hex_digit(chars.next().unwrap())?)),
3 => Ok((parse_hex_digit(chars.next().unwrap())? << 8)
+ (parse_hex_digit(chars.next().unwrap())? << 4)
+ (parse_hex_digit(chars.next().unwrap())?)),
4 => Ok((parse_hex_digit(chars.next().unwrap())? << 12)
+ (parse_hex_digit(chars.next().unwrap())? << 8)
+ (parse_hex_digit(chars.next().unwrap())? << 4)
+ (parse_hex_digit(chars.next().unwrap())?)),
_ => Err("hex literal is too big".to_string()),
}
}
// Fetch the address mapping from the .nasm/addresses.txt file. You need to pass
// the full 'path' to the .nasm/ directory for the project (i.e. the '-n/--nasm'
// option).
fn fetch_addresses(path: PathBuf) -> Result<HashMap<String, usize>, String> {
let mut addresses: HashMap<String, usize> = HashMap::default();
if let Ok(file) = File::open(path.join("addresses.txt")) {
let reader = BufReader::new(file);
for line in reader.lines() {
let line = line.map_err(|e| e.to_string())?;
let columns: Vec<&str> = line.split(',').map(|s| s.trim()).collect();
if columns.len() != 3 {
return Err("badly formatted address file".to_string());
}
let parsed_start = usize::from_str_radix(columns[1], 16)
.map_err(|_| format!("invalid hex value: '{}'", columns[1]))?;
addresses.insert(columns[0].to_string(), parsed_start);
}
}
Ok(addresses)
}
// Parse the given 'val' as if it was an hexadecimal literal. If that fails,
// pick up whether a 'nasm' directory was provided (i.e. '-n/--nasm' option),
// and try to find a mapping on the 'addresses' map. If that map is empty, then
// it will be filled by parsing the "addresses.txt" file from the 'nasm'
// directory.
fn parse_hex_or_reference(
val: String,
nasm: &Option<String>,
addresses: &mut HashMap<String, usize>,
) -> u16 {
match parse_hex_argument(&val) {
Ok(n) => return n,
Err(e) => match nasm {
Some(nasm_path) => {
if addresses.is_empty() {
*addresses = match fetch_addresses(PathBuf::from(nasm_path)) {
Ok(addr) => addr,
Err(err) => die(err),
};
}
match addresses.get(&val) {
Some(v) => return *v as u16,
None => die(format!("could not find '{val}'")),
}
}
None => die(e),
},
}
}
fn parse_arguments() -> Args {
let mut args = std::env::args();
let mut res = Args::default();
let mut start = None;
let mut until_address = None;
// Skip command name.
args.next();
while let Some(arg) = args.next() {
match arg.as_str() {
"-h" | "--help" => print_help(),
"-s" | "--start" => {
if res.start.is_some() {
die("do not specify the '-s/--start' flag twice".to_string());
}
start = args.next();
if start.is_none() {
die("you need to specify a value for the -s/--start flag!".to_string());
}
}
"-d" | "--dump-memory" => {
res.dump_memory = true;
}
"-f" | "--function" => {
res.assume_function = true;
}
"-n" | "--nasm" => match args.next() {
Some(a) => res.nasm = Some(a),
None => die("you need to specify a file for the '-n/--nasm' flag".to_string()),
},
"--until-address" => {
until_address = args.next();
if until_address.is_none() {
die("you need to specify a value for the --until-address flag!".to_string());
}
}
"-v" | "--version" => {
println!("runrom {VERSION}");
std::process::exit(0);
}
_ => {
if arg.starts_with('-') {
die(format!("don't know how to handle the '{arg}' flag"));
}
if !res.file.is_empty() {
die("cannot have multiple source files".to_string());
}
res.file = arg;
}
}
}
// Further handle options which can be either an hexadecimal value or an
// address reference.
let mut addresses = HashMap::new();
if let Some(val) = start {
res.start = Some(parse_hex_or_reference(val, &res.nasm, &mut addresses));
}
res.until_address = match until_address {
Some(val) => parse_hex_or_reference(val, &res.nasm, &mut addresses),
None => 0xFFFF,
};
// And finally, check that a ROM file was actually provided.
if res.file.is_empty() {
die("you need to specify the file to be run".to_string());
}
res
}
// Given a ROM file identified by the `file` parameter, fetch the 16-bit address
// as pointed out by the reset vector.
fn start_from_reset_vector(file: &String) -> u16 {
// 1. Read the ROM header so we fetch the size of PRG ROM.
let Ok(mut input) = File::open(file) else {
die(format!("failed to open the given file '{file}'"));
};
let mut buf = vec![0u8; 0x10];
if let Err(e) = input.read_exact(&mut buf) {
match e.kind() {
ErrorKind::UnexpectedEof => die("malformed ROM file".to_string()),
_ => die(e.to_string()),
}
}
let header = match Header::try_from(buf.as_slice()) {
Ok(h) => h,
Err(e) => die(e.to_string()),
};
// 2. With a known PRG ROM size, fetch the two bytes pertaining to the reset
// vector.
// The two bytes of the reset address are located as follows:
// 1. Skip the ROM header, guaranteed to be exactly 0x10 bytes long.
// 2. Go to the end of PRG ROM.
// 3. -6: NMI addres; -4: reset addres; -2: IRQ address.
let offset: u64 = (0x10 + (header.prg_rom_size * 16 * 1024) - 4)
.try_into()
.unwrap();
if input.seek(SeekFrom::Start(offset)).is_err() {
die("cannot peek into the ROM's reset address".to_string());
};
let mut buf = [0u8; 0x02];
if let Err(e) = input.read_exact(&mut buf) {
match e.kind() {
ErrorKind::UnexpectedEof => die("malformed ROM file".to_string()),
_ => die(e.to_string()),
}
}
((buf[1] as u16) << 8) + buf[0] as u16
}
fn run(
file: &String,
start: u16,
end: u16,
assume_function: bool,
dump_memory: bool,
) -> Result<(), String> {
let mut machine = Machine::from(
file,
start,
#[allow(clippy::single_range_in_vec_init)]
MemoryPolicy {
initial_value: MemoryInitialValue::Fixed(0),
allowed_reads: vec![(0..0x800)],
allowed_writes: vec![(0..0x800)],
minimum_stack_value: 0,
},
)?;
machine.verbose = true;
machine.run_function_mode = assume_function;
machine.until_address(end)?;
if dump_memory {
let mut title = false;
for (idx, cell) in machine.ram.iter().enumerate() {
if cell.reads > 0 || cell.writes > 0 {
if !title {
println!("\n== Memory dump ==\n");
title = true;
}
println!(
"[${:X}] = ${:02X} [reads={}, writes={}]",
idx, cell.value, cell.reads, cell.writes
);
}
}
}
Ok(())
}
fn main() {
let args = parse_arguments();
let start = match args.start {
Some(s) => s,
None => start_from_reset_vector(&args.file),
};
match run(
&args.file,
start,
args.until_address,
args.assume_function,
args.dump_memory,
) {
Ok(m) => m,
Err(e) => {
die(e);
}
}
}
|