diff options
author | Christian Duerr <contact@christianduerr.com> | 2022-01-08 21:24:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-08 20:24:42 +0000 |
commit | ed35d033aeae0fa054756dac7f91ea8527203a4e (patch) | |
tree | fe6edf25db835a020bb49f0cda68ad820565e60f /alacritty_terminal | |
parent | 5aa8046c7ff807c8831eac7aa51923078b324a7a (diff) | |
download | alacritty-ed35d033aeae0fa054756dac7f91ea8527203a4e.tar.gz alacritty-ed35d033aeae0fa054756dac7f91ea8527203a4e.zip |
Fix fullwidth char regex search infinite loop
This resolves an issue where the regex search could loop indefinitely
when the end point was defined in a location containing a fullwidth
character, thus skipping over the end before termination.
Fixes #5753.
Diffstat (limited to 'alacritty_terminal')
-rw-r--r-- | alacritty_terminal/src/term/search.rs | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/alacritty_terminal/src/term/search.rs b/alacritty_terminal/src/term/search.rs index 07403b67..e34fd1b4 100644 --- a/alacritty_terminal/src/term/search.rs +++ b/alacritty_terminal/src/term/search.rs @@ -205,6 +205,7 @@ impl<T> Term<T> { let mut state = dfa.start_state(); let mut last_wrapped = false; let mut regex_match = None; + let mut done = false; let mut cell = iter.cell(); self.skip_fullwidth(&mut iter, &mut cell, direction); @@ -239,7 +240,7 @@ impl<T> Term<T> { } // Stop once we've reached the target point. - if point == end { + if point == end || done { break; } @@ -254,7 +255,12 @@ impl<T> Term<T> { iter.cell() }, }; + + // Check for completion before potentially skipping over fullwidth characters. + done = iter.point() == end; + self.skip_fullwidth(&mut iter, &mut cell, direction); + let wrapped = cell.flags.contains(Flags::WRAPLINE); c = cell.c; @@ -701,6 +707,26 @@ mod tests { } #[test] + fn end_on_fullwidth() { + let term = mock_term("jarr🦇"); + + let start = Point::new(Line(0), Column(0)); + let end = Point::new(Line(0), Column(4)); + + // Ensure ending without a match doesn't loop indefinitely. + let dfas = RegexSearch::new("x").unwrap(); + assert_eq!(term.regex_search_right(&dfas, start, end), None); + + let dfas = RegexSearch::new("x").unwrap(); + let match_end = Point::new(Line(0), Column(5)); + assert_eq!(term.regex_search_right(&dfas, start, match_end), None); + + // Ensure match is captured when only partially inside range. + let dfas = RegexSearch::new("jarr🦇").unwrap(); + assert_eq!(term.regex_search_right(&dfas, start, end), Some(start..=match_end)); + } + + #[test] fn wrapping() { #[rustfmt::skip] let term = mock_term("\ |