aboutsummaryrefslogtreecommitdiff
path: root/lib/xixanta/src
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mssola@mssola.com>2026-07-08 21:13:00 +0200
committerMiquel Sabaté Solà <mssola@mssola.com>2026-07-08 21:27:49 +0200
commit0664f0bad653ca750d320e513f685ab0c852f359 (patch)
tree29c077834217c30f88b669864400cdb9099a26a5 /lib/xixanta/src
parent34243afa568ffeb6433200062f0d3c9bc7c2c0ca (diff)
downloadtools.nes-0664f0bad653ca750d320e513f685ab0c852f359.tar.gz
tools.nes-0664f0bad653ca750d320e513f685ab0c852f359.zip
Add a warning for unknown cross-mapping references
Some segments, like the 'vectors' one, will reference code that is outside of its mapping. But in some other configurations, segments cannot make these cross-mapping references so happily. Imagine: .segment "SWAPPABLE" .proc foo rts .endproc .segment "FIXED" jsr foo Here the assembler will properly detect the address of 'foo' in the context of the 'SWAPPABLE' segment. But what this assembler doesn't know is that this segment is swappable (e.g. UNROM chip). Hence, if the bank being mapped right now is not the one containing the 'SWAPPABLE' segment, then the address computed for 'foo' and used in that 'jsr' instruction will point to something else entirely. This would be similar to a use-after-free bug. This is something that can only be inspected at runtime, and so the assembler cannot be of much help here. Hence, this commit adds a warning so the programmer can understand the potentially dangerous operation. All of that being said, this commit also adds support for "asan:safe" or "check:safe", which is a magic comment that the programmer can write to re-assure the assembler that this operation is fine (e.g. there is a guarantee that the mapped bank is that one we are expecting). Hence, the code above could now be written like so: jsr foo ; check:safe Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
Diffstat (limited to 'lib/xixanta/src')
-rw-r--r--lib/xixanta/src/assembler.rs84
-rw-r--r--lib/xixanta/src/node.rs2
-rw-r--r--lib/xixanta/src/object.rs5
-rw-r--r--lib/xixanta/src/parser.rs15
4 files changed, 105 insertions, 1 deletions
diff --git a/lib/xixanta/src/assembler.rs b/lib/xixanta/src/assembler.rs
index 5b72fb5..98ae19d 100644
--- a/lib/xixanta/src/assembler.rs
+++ b/lib/xixanta/src/assembler.rs
@@ -156,6 +156,11 @@ struct Assembler<'a> {
// sanitizer.
asan_next_ignore: bool,
+ // Whether the next bundle should be marked as safe. That is, whether the
+ // checker can skip some of the checks for the bundle being produced from
+ // the next node.
+ asan_next_safe: bool,
+
// The amount of bytes to reserve for the next variable assignment.
asan_next_reserve: usize,
@@ -172,6 +177,13 @@ struct Assembler<'a> {
// Stack of pending definitions. The last element from this list is the list
// to be set to the next PendingNode push.
pending_defines: Vec<Vec<PendingDefine>>,
+
+ // List of objects that have been visited while evaluating a node. Reset
+ // this vector before calling evaluate_node(), and check the results
+ // afterwards to check which objects are evaluated along the way. The item
+ // is a tuple where the first member is the String identifier of the
+ // variable/address/label/etc. that is being stored in the second member.
+ objects_visited: Vec<(String, Object)>,
}
/// The result to be given at the end of `assembler::assemble` and
@@ -435,10 +447,12 @@ impl<'a> Assembler<'a> {
allow_unused: false,
asan_enabled: false,
asan_next_ignore: false,
+ asan_next_safe: false,
asan_next_reserve: 1,
asan_stack_definition: None,
macro_context: vec![],
pending_defines: vec![],
+ objects_visited: vec![],
}
}
@@ -846,6 +860,7 @@ impl<'a> Assembler<'a> {
affected_on_page: false,
resolved: false,
negative: false,
+ safe: false,
},
node: None,
mapping: self.current_mapping,
@@ -879,6 +894,8 @@ impl<'a> Assembler<'a> {
self.stage = Stage::Bundling;
for node in nodes {
+ let mut next_safe = false;
+
match &node.node_type {
// Initialize the label to the offset address of the current
// segment. Note that this is only the offset from the beginning
@@ -929,6 +946,10 @@ impl<'a> Assembler<'a> {
next_ignore = true;
self.asan_next_ignore = true;
}
+ NodeType::Comment(CommentType::AsanSafe) => {
+ next_safe = true;
+ self.asan_next_safe = true;
+ }
NodeType::Instruction => {
self.literal_mode = None;
match self.evaluate_node(node) {
@@ -1001,7 +1022,12 @@ impl<'a> Assembler<'a> {
_ => {}
}
- // Keep `self.asan_next_ignore` to false if possible.
+ // Keep 'self.asan_next_safe' to false if possible.
+ if !next_safe {
+ self.asan_next_safe = false;
+ }
+
+ // Keep 'self.asan_next_ignore' to false if possible.
if next_ignore {
next_ignore = false;
} else {
@@ -1069,12 +1095,54 @@ impl<'a> Assembler<'a> {
}
}
+ // Reset the 'objects_visited' list so the evaluate_node() next to
+ // this can tell us the objects that were actually visited on this
+ // call.
+ self.objects_visited = vec![];
+
self.literal_mode = None;
match self.evaluate_node(&pn.node) {
Ok(mut bundle) => {
let current = &self.mappings[pn.mapping].segments[pn.segment];
bundle.address = current.bundles[pn.bundle_index].address;
+ // The first check deals on whether there is any reference
+ // that crosses the mapping boundary. There are two
+ // exceptions to this check:
+ //
+ // 1. We are currently on the Vector segment, which
+ // basically references addresses outside of it, and
+ // that is to be expected and safe.
+ // 2. If the bundle was marked as "safe" by the programmer
+ // via the asan:safe/check:safe comment.
+ //
+ // Otherwise iterate over the objects that were visited over
+ // the previous evaluate_node() call, and check for
+ // potentially dangerous cross references. Since we cannot
+ // be certain about these references, they are merely
+ // warnings, not errors.
+ if !current.bundles[pn.bundle_index].safe
+ && !matches!(self.mappings[pn.mapping].section_type, SectionType::Vector)
+ {
+ for (name, object) in &self.objects_visited {
+ if pn.mapping != object.mapping {
+ let reference =
+ &self.mappings[object.mapping].segments[object.segment].name;
+
+ self.warnings.push(Error {
+ line: pn.node.value.line,
+ message: format!(
+ "referencing '{name}' from '{}', which belongs to the '{reference}' segment",
+ current.name
+ ),
+ source: self.source_for(&pn.node),
+ global: false,
+ expanded_from: pn.macro_context.clone(),
+ });
+ }
+ }
+ }
+
// If we are trying to 'jmp'/'jsr' right into the next
// instruction, then warn the programmer about it. This
// looks silly but in practice it might happen inside of a
@@ -1610,6 +1678,10 @@ impl<'a> Assembler<'a> {
current.offset += bundle.size as usize;
current.segments[self.current_segment].offset += bundle.size as usize;
+ // Mark this bundle as reference-safe, so the checker afterwards doesn't
+ // complain on different checks.
+ bundle.safe = self.asan_next_safe;
+
if !bundle.resolved {
self.pending.push(PendingNode {
mapping: self.current_mapping,
@@ -1891,6 +1963,7 @@ impl<'a> Assembler<'a> {
affected_on_page: false,
resolved: false,
negative: false,
+ safe: false,
}),
Stage::Crunching => {
match self.context.get_relative_label(
@@ -1977,6 +2050,7 @@ impl<'a> Assembler<'a> {
affected_on_page: false,
resolved: true,
negative: false,
+ safe: false,
})
}
@@ -2043,6 +2117,7 @@ impl<'a> Assembler<'a> {
affected_on_page: false,
resolved: true,
negative: false,
+ safe: false,
})
}
@@ -2130,6 +2205,7 @@ impl<'a> Assembler<'a> {
affected_on_page: false,
resolved: true,
negative: false,
+ safe: false,
})
}
@@ -2641,6 +2717,7 @@ impl<'a> Assembler<'a> {
affected_on_page: false,
resolved: true,
negative: false,
+ safe: false,
})
}
@@ -2892,6 +2969,11 @@ impl<'a> Assembler<'a> {
fn evaluate_variable(&mut self, node: &PNode) -> Result<Bundle, Error> {
match self.context.get_variable(&node.value, &self.mappings) {
Ok(mut value) => {
+ // Push this variable into the "visited objects" list. This list
+ // is to be cleared out or consumed by the caller.
+ self.objects_visited
+ .push((node.value.value.clone(), value.clone()));
+
// If the given variable has a zero value AND we are resolving
// pending nodes AND the variable has a node object in it, then
// chances are that this is a macro call with an argument to be
diff --git a/lib/xixanta/src/node.rs b/lib/xixanta/src/node.rs
index d91177e..4f25158 100644
--- a/lib/xixanta/src/node.rs
+++ b/lib/xixanta/src/node.rs
@@ -275,6 +275,7 @@ pub enum CommentType {
AsanReserve(usize),
AsanStack(Range<usize>),
AsanIgnore,
+ AsanSafe,
}
/// The PNode type.
@@ -378,6 +379,7 @@ impl fmt::Display for NodeType {
CommentType::AsanReserve(_) => write!(f, ";; asan:reserve"),
CommentType::AsanStack(_) => write!(f, ";; asan:stack"),
CommentType::AsanIgnore => write!(f, ";; asan:ignore"),
+ CommentType::AsanSafe => write!(f, ";; asan:safe"),
},
}
}
diff --git a/lib/xixanta/src/object.rs b/lib/xixanta/src/object.rs
index 64d4298..b263469 100644
--- a/lib/xixanta/src/object.rs
+++ b/lib/xixanta/src/object.rs
@@ -32,6 +32,10 @@ pub struct Bundle {
/// used for internal purposes only.
pub resolved: bool,
+ /// Whether the programmer assured that the line that resulted into this
+ /// Bundle was safe to perform cross-mapping references.
+ pub safe: bool,
+
/// Whether we have to consider the bundle to contain a negative number.
/// This comes from the fact that we just have a bunch of signednessless
/// bytes, but using the negative unary operator will give us a hint on how
@@ -67,6 +71,7 @@ impl Bundle {
cycles: 0,
affected_on_page: false,
resolved: true,
+ safe: false,
negative: false,
}
}
diff --git a/lib/xixanta/src/parser.rs b/lib/xixanta/src/parser.rs
index e004fd9..03039f1 100644
--- a/lib/xixanta/src/parser.rs
+++ b/lib/xixanta/src/parser.rs
@@ -249,6 +249,21 @@ impl Parser {
source: self.current_source,
});
}
+ "check:safe" | "asan:safe" => {
+ self.nodes.last_mut().unwrap().push(PNode {
+ node_type: NodeType::Comment(CommentType::AsanSafe),
+ value: PString {
+ value: cmd,
+ line: self.line,
+ start,
+ end: offset - 1,
+ },
+ left: None,
+ right: None,
+ args: None,
+ source: self.current_source,
+ });
+ }
&_ => {}
}