Use absolute positioning after OSC sequences#74
Open
seh wants to merge 1 commit intocharmbracelet:mainfrom
Open
Use absolute positioning after OSC sequences#74seh wants to merge 1 commit intocharmbracelet:mainfrom
seh wants to merge 1 commit intocharmbracelet:mainfrom
Conversation
da0bcd5 to
d0ffe9e
Compare
Sending OSC (Operating System Command) sequences to terminals can induce inconsistency in the expected cursor position. When we write an OSC sequence to the terminal, it may move the cursor unpredictably, leaving "ultraviolet"'s cached cursor position unknowingly incorrect. To defend against this vulnerability, detect OSC sequences in the TerminalRenderer type's "Write" and "WriteString" methods, and, upon detecting such sequences, force the next cursor movement to use absolute positioning (CUP) rather than relative movements. Doing so ensures that we restore proper cursor synchronization after having pushed these OSC sequences through to the terminal. The material change in behavior only applies when the "tRelativeCursor" flag is unset (typically in the so-called alternate screen buffer mode), where absolute cursor positioning is available but the consequent inconsistency can cause visible rendering artifacts (such as stale lines not being overwritten as intended).
d0ffe9e to
dee387f
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Sending OSC (Operating System Command) sequences to terminals can induce inconsistency in the expected cursor position. When we write an OSC sequence to the terminal, it may move the cursor unpredictably, leaving ultraviolet's cached cursor position unknowingly incorrect.
To defend against this vulnerability, detect OSC sequences in the
TerminalRenderertype'sWriteandWriteStringmethods, and, upon detecting such sequences, force the next cursor movement to use absolute positioning (CUP) rather than relative movements. Doing so ensures that we restore proper cursor synchronization after having pushed these OSC sequences through to the terminal.The material change in behavior only applies when the
tRelativeCursorflag is unset (typically in the so-called alternate screen buffer mode), where absolute cursor positioning is available but the consequent inconsistency can cause visible rendering artifacts (such as stale lines not being overwritten as intended).CONTRIBUTING.md.