Skip to content

Commit 0c0b403

Browse files
committed
Auto merge of #106195 - Nilstrieb:no-more-being-clueless-whether-it-really-is-a-literal, r=compiler-errors
Improve heuristics whether `format_args` string is a source literal Previously, it only checked whether there was _a_ literal at the span of the first argument, not whether the literal actually matched up. This caused issues when a proc macro was generating a different literal with the same span. This requires an annoying special case for literals ending in `\n` because otherwise `println` wouldn't give detailed diagnostics anymore which would be bad. Fixes #106191
2 parents 11a338a + 31b490d commit 0c0b403

File tree

5 files changed

+105
-23
lines changed

5 files changed

+105
-23
lines changed

compiler/rustc_parse_format/src/lib.rs

+51-5
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ pub use Flag::*;
2020
pub use Piece::*;
2121
pub use Position::*;
2222

23+
use rustc_lexer::unescape;
2324
use std::iter;
2425
use std::str;
2526
use std::string;
@@ -56,6 +57,13 @@ impl InnerWidthMapping {
5657
}
5758
}
5859

60+
/// Whether the input string is a literal. If yes, it contains the inner width mappings.
61+
#[derive(Clone, PartialEq, Eq)]
62+
enum InputStringKind {
63+
NotALiteral,
64+
Literal { width_mappings: Vec<InnerWidthMapping> },
65+
}
66+
5967
/// The type of format string that we are parsing.
6068
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
6169
pub enum ParseMode {
@@ -306,7 +314,11 @@ impl<'a> Parser<'a> {
306314
append_newline: bool,
307315
mode: ParseMode,
308316
) -> Parser<'a> {
309-
let (width_map, is_literal) = find_width_map_from_snippet(snippet, style);
317+
let input_string_kind = find_width_map_from_snippet(s, snippet, style);
318+
let (width_map, is_literal) = match input_string_kind {
319+
InputStringKind::Literal { width_mappings } => (width_mappings, true),
320+
InputStringKind::NotALiteral => (Vec::new(), false),
321+
};
310322
Parser {
311323
mode,
312324
input: s,
@@ -844,20 +856,40 @@ impl<'a> Parser<'a> {
844856
/// written code (code snippet) and the `InternedString` that gets processed in the `Parser`
845857
/// in order to properly synthesise the intra-string `Span`s for error diagnostics.
846858
fn find_width_map_from_snippet(
859+
input: &str,
847860
snippet: Option<string::String>,
848861
str_style: Option<usize>,
849-
) -> (Vec<InnerWidthMapping>, bool) {
862+
) -> InputStringKind {
850863
let snippet = match snippet {
851864
Some(ref s) if s.starts_with('"') || s.starts_with("r\"") || s.starts_with("r#") => s,
852-
_ => return (vec![], false),
865+
_ => return InputStringKind::NotALiteral,
853866
};
854867

855868
if str_style.is_some() {
856-
return (vec![], true);
869+
return InputStringKind::Literal { width_mappings: Vec::new() };
857870
}
858871

872+
// Strip quotes.
859873
let snippet = &snippet[1..snippet.len() - 1];
860874

875+
// Macros like `println` add a newline at the end. That technically doens't make them "literals" anymore, but it's fine
876+
// since we will never need to point our spans there, so we lie about it here by ignoring it.
877+
// Since there might actually be newlines in the source code, we need to normalize away all trailing newlines.
878+
// If we only trimmed it off the input, `format!("\n")` would cause a mismatch as here we they actually match up.
879+
// Alternatively, we could just count the trailing newlines and only trim one from the input if they don't match up.
880+
let input_no_nl = input.trim_end_matches('\n');
881+
let Ok(unescaped) = unescape_string(snippet) else {
882+
return InputStringKind::NotALiteral;
883+
};
884+
885+
let unescaped_no_nl = unescaped.trim_end_matches('\n');
886+
887+
if unescaped_no_nl != input_no_nl {
888+
// The source string that we're pointing at isn't our input, so spans pointing at it will be incorrect.
889+
// This can for example happen with proc macros that respan generated literals.
890+
return InputStringKind::NotALiteral;
891+
}
892+
861893
let mut s = snippet.char_indices();
862894
let mut width_mappings = vec![];
863895
while let Some((pos, c)) = s.next() {
@@ -936,7 +968,21 @@ fn find_width_map_from_snippet(
936968
_ => {}
937969
}
938970
}
939-
(width_mappings, true)
971+
972+
InputStringKind::Literal { width_mappings }
973+
}
974+
975+
fn unescape_string(string: &str) -> Result<string::String, unescape::EscapeError> {
976+
let mut buf = string::String::new();
977+
let mut error = Ok(());
978+
unescape::unescape_literal(string, unescape::Mode::Str, &mut |_, unescaped_char| {
979+
match unescaped_char {
980+
Ok(c) => buf.push(c),
981+
Err(err) => error = Err(err),
982+
}
983+
});
984+
985+
error.map(|_| buf)
940986
}
941987

942988
// Assert a reasonable size for `Piece`

compiler/rustc_span/src/source_map.rs

+12-17
Original file line numberDiff line numberDiff line change
@@ -964,45 +964,40 @@ impl SourceMap {
964964

965965
/// Finds the width of the character, either before or after the end of provided span,
966966
/// depending on the `forwards` parameter.
967+
#[instrument(skip(self, sp))]
967968
fn find_width_of_character_at_span(&self, sp: Span, forwards: bool) -> u32 {
968969
let sp = sp.data();
969970

970971
if sp.lo == sp.hi && !forwards {
971-
debug!("find_width_of_character_at_span: early return empty span");
972+
debug!("early return empty span");
972973
return 1;
973974
}
974975

975976
let local_begin = self.lookup_byte_offset(sp.lo);
976977
let local_end = self.lookup_byte_offset(sp.hi);
977-
debug!(
978-
"find_width_of_character_at_span: local_begin=`{:?}`, local_end=`{:?}`",
979-
local_begin, local_end
980-
);
978+
debug!("local_begin=`{:?}`, local_end=`{:?}`", local_begin, local_end);
981979

982980
if local_begin.sf.start_pos != local_end.sf.start_pos {
983-
debug!("find_width_of_character_at_span: begin and end are in different files");
981+
debug!("begin and end are in different files");
984982
return 1;
985983
}
986984

987985
let start_index = local_begin.pos.to_usize();
988986
let end_index = local_end.pos.to_usize();
989-
debug!(
990-
"find_width_of_character_at_span: start_index=`{:?}`, end_index=`{:?}`",
991-
start_index, end_index
992-
);
987+
debug!("start_index=`{:?}`, end_index=`{:?}`", start_index, end_index);
993988

994989
// Disregard indexes that are at the start or end of their spans, they can't fit bigger
995990
// characters.
996991
if (!forwards && end_index == usize::MIN) || (forwards && start_index == usize::MAX) {
997-
debug!("find_width_of_character_at_span: start or end of span, cannot be multibyte");
992+
debug!("start or end of span, cannot be multibyte");
998993
return 1;
999994
}
1000995

1001996
let source_len = (local_begin.sf.end_pos - local_begin.sf.start_pos).to_usize();
1002-
debug!("find_width_of_character_at_span: source_len=`{:?}`", source_len);
997+
debug!("source_len=`{:?}`", source_len);
1003998
// Ensure indexes are also not malformed.
1004999
if start_index > end_index || end_index > source_len - 1 {
1005-
debug!("find_width_of_character_at_span: source indexes are malformed");
1000+
debug!("source indexes are malformed");
10061001
return 1;
10071002
}
10081003

@@ -1017,10 +1012,10 @@ impl SourceMap {
10171012
} else {
10181013
return 1;
10191014
};
1020-
debug!("find_width_of_character_at_span: snippet=`{:?}`", snippet);
1015+
debug!("snippet=`{:?}`", snippet);
10211016

10221017
let mut target = if forwards { end_index + 1 } else { end_index - 1 };
1023-
debug!("find_width_of_character_at_span: initial target=`{:?}`", target);
1018+
debug!("initial target=`{:?}`", target);
10241019

10251020
while !snippet.is_char_boundary(target - start_index) && target < source_len {
10261021
target = if forwards {
@@ -1033,9 +1028,9 @@ impl SourceMap {
10331028
}
10341029
}
10351030
};
1036-
debug!("find_width_of_character_at_span: target=`{:?}`", target);
1031+
debug!("target=`{:?}`", target);
10371032
}
1038-
debug!("find_width_of_character_at_span: final target=`{:?}`", target);
1033+
debug!("final target=`{:?}`", target);
10391034

10401035
if forwards { (target - end_index) as u32 } else { (end_index - target) as u32 }
10411036
}

src/test/ui/fmt/auxiliary/format-string-proc-macro.rs

+13-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55

66
extern crate proc_macro;
77

8-
use proc_macro::{Literal, Span, TokenStream, TokenTree};
8+
use proc_macro::{Delimiter, Group, Ident, Literal, Punct, Spacing, Span, TokenStream, TokenTree};
9+
use std::iter::FromIterator;
910

1011
#[proc_macro]
1112
pub fn foo_with_input_span(input: TokenStream) -> TokenStream {
@@ -26,3 +27,14 @@ pub fn err_with_input_span(input: TokenStream) -> TokenStream {
2627

2728
TokenStream::from(TokenTree::Literal(lit))
2829
}
30+
31+
#[proc_macro]
32+
pub fn respan_to_invalid_format_literal(input: TokenStream) -> TokenStream {
33+
let mut s = Literal::string("{");
34+
s.set_span(input.into_iter().next().unwrap().span());
35+
TokenStream::from_iter([
36+
TokenTree::from(Ident::new("format", Span::call_site())),
37+
TokenTree::from(Punct::new('!', Spacing::Alone)),
38+
TokenTree::from(Group::new(Delimiter::Parenthesis, TokenTree::from(s).into())),
39+
])
40+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// aux-build:format-string-proc-macro.rs
2+
3+
extern crate format_string_proc_macro;
4+
5+
fn main() {
6+
format_string_proc_macro::respan_to_invalid_format_literal!("¡");
7+
//~^ ERROR invalid format string: expected `'}'` but string was terminated
8+
format_args!(r#concat!("¡ {"));
9+
//~^ ERROR invalid format string: expected `'}'` but string was terminated
10+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
error: invalid format string: expected `'}'` but string was terminated
2+
--> $DIR/respanned-literal-issue-106191.rs:6:65
3+
|
4+
LL | format_string_proc_macro::respan_to_invalid_format_literal!("¡");
5+
| ^^^ expected `'}'` in format string
6+
|
7+
= note: if you intended to print `{`, you can escape it using `{{`
8+
9+
error: invalid format string: expected `'}'` but string was terminated
10+
--> $DIR/respanned-literal-issue-106191.rs:8:18
11+
|
12+
LL | format_args!(r#concat!("¡ {"));
13+
| ^^^^^^^^^^^^^^^^^^^^^^^ expected `'}'` in format string
14+
|
15+
= note: if you intended to print `{`, you can escape it using `{{`
16+
= note: this error originates in the macro `concat` (in Nightly builds, run with -Z macro-backtrace for more info)
17+
18+
error: aborting due to 2 previous errors
19+

0 commit comments

Comments
 (0)