This is an archive of the discontinued LLVM Phabricator instance.

[sanitizer-common] Reduce ANSI color sequences that have no effect.
Needs RevisionPublic

Authored by aarongreen on Jun 11 2019, 5:16 PM.

Details

Summary

sanitizer_common's consumers use SanitizerCommonDecorator to color their output in various cases. In some cases they end up emitting several escape sequences in a row that don't end up having any effect, e.g. PrintShadowBytes will transition to bold+color, print a byte, transition to default, transition back to bold+color, etc. This extra transitions end up being passed to the RawWrite call in sanitizer_printf.cc. If the implementation of RawWrite has a fixed buffer size (e.g. as in sanitizer_fuchsia.cc), this can cause the buffer to be consumed unnecessary and even end up breaking the line in the middle of an escape sequence.

This change attempts to mitigate that problem by providing SanitizerCommonDecorator::Compact, which removes sequences that would simply be overwritten by subsequent sequences.

Diff Detail

Event Timeline

aarongreen created this revision.Jun 11 2019, 5:16 PM
Herald added a project: Restricted Project. · View Herald TranscriptJun 11 2019, 5:16 PM
Herald added subscribers: llvm-commits, Restricted Project, mgorny, kubamracek. · View Herald Transcript
phosek added inline comments.Jun 16 2019, 10:17 PM
compiler-rt/lib/sanitizer_common/sanitizer_report_decorator.cc
23

Why not internal_strncmp(s, "\033[0", 3) != 0?

120

nit: space between for and (

149

Can you use braces for else for consistency?

compiler-rt/lib/sanitizer_common/tests/sanitizer_printf_test.cc
192

nit: separate with empty line from the class declaration

aarongreen marked 4 inline comments as done.

Addresses phosek's comments.

compiler-rt/lib/sanitizer_common/sanitizer_report_decorator.cc
23

There's a difference between '0' and '\0'.

vitalybuka added inline comments.
compiler-rt/lib/sanitizer_common/sanitizer_report_decorator.h
40

pleas clang-format

vitalybuka added inline comments.
compiler-rt/lib/sanitizer_common/sanitizer_report_decorator.h
45

just move ansi_ check into ToStr()

vitalybuka added inline comments.Jul 30 2019, 4:50 PM
compiler-rt/lib/sanitizer_common/sanitizer_report_decorator.cc
22

lets consume chars to simplify indexing

static const char* getCode(const char* s, char* code) {
    if (internal_strncmp(s, "\033[", 2) != 0 || s[2] == '\0' || s[3] != 'm') 
      return nullptr;
   *code = s[2];
    return s + 4;
}
SanitizerCommonDecorator::ToKind(const char *s) {
  char c;
  if (!(s = getCode(s, &c))
    return kUnknown;

  switch(c)
   ....

  if (!(s = getCode(s, &c))
    return kBold;

 switch(c) {
     ....

}
89

please remove SanitizerCommonDecorator::StrLen or replace with internal_strln( ToKind() )

107

z->out?

129

why do you need to check for "*s < 0x7f"

138

if (z != s) can be omitted

compiler-rt/lib/sanitizer_common/tests/sanitizer_printf_test.cc
196

ASNI -> ANSI

225
229

this test logic is quite fancy, it's going to be harder to debug when it detected a bug
I would prefer simple tests where easy to see from the code what was actual input and expected output:

SanitizerCommonDecorator::Compact(GetParam().input);
EXPECT_STREQ(GetParam().input, GetParam().expected);
vitalybuka requested changes to this revision.Aug 2 2019, 12:23 PM
This revision now requires changes to proceed.Aug 2 2019, 12:23 PM
aarongreen marked 6 inline comments as done.

Addressed vitalybuka's comments. The end result is a bit smaller and more elegant than before. I did end up needing to move some code for ColorizeReport (defined in sanitizer_common.h) in order to avoid causing problems in scudo's small-binary build.

aarongreen marked an inline comment as done.Aug 14 2019, 10:40 AM
aarongreen added inline comments.
compiler-rt/lib/sanitizer_common/sanitizer_report_decorator.cc
22

That doesn't quite work: the colors are 2 chars, i.e. 31.

I've made getCode use internal_simple_strtoll to return an s64 instead, and advance a const char **s_ptr. That way, each call consumes a '\033[...m' sequence and returns the number represented by '...'

I can't promise it's faster, but hopefully it's clearer?

129

0x7f is DEL, and above that isn't ascii. Printable chars should be 0x21 (!) to 0x7e (~).

compiler-rt/lib/sanitizer_common/tests/sanitizer_printf_test.cc
196

seplling is hrad.

vitalybuka added inline comments.Aug 14 2019, 12:44 PM
compiler-rt/lib/sanitizer_common/sanitizer_common.cpp
99 ↗(On Diff #215165)

INLINE is not necessary

can this be?

return SANITIZER_FUCHSIA || report_file.SupportsColors();
compiler-rt/lib/sanitizer_common/sanitizer_report_decorator.cpp
58 ↗(On Diff #215165)

should these be kDefault

59 ↗(On Diff #215165)
DecorationKind prev = kUnknown;
DecorationKind next = kUnknown;
69 ↗(On Diff #215165)

code uses "code = kUnknown;" to only break the loop
if we wrap this into function:

const char* getCode(const char* &in, DecorationKind &next) {
while (true) {
    if (internal_strncmp(in, "\033[", 2) != 0)
      return in;
    const char* endptr = in + 2;
    s64 code = internal_simple_strtoll(endptr, &endptr, 10);
    if (endptr <= in + 2 || *endptr++ != 'm')
       return in;

    switch (code) {
        case kDefault:
        case kBold:
          break;
        case kBlack:
        case kRed:
        case kGreen:
        case kYellow:
        case kBlue:
        case kMagenta:
        case kCyan:
        case kWhite:
          if (next == kBold)
            break;
        default:
           return in;
    }
    next = static_cast<DecorationKind>(code);
}
}

we don't need kUnknown at all

83 ↗(On Diff #215165)

why next must be kBold?

91 ↗(On Diff #215165)

increment "endptr" right after != 'm' check, so we know where 1 is from

99 ↗(On Diff #215165)

why? // Not null-terminated!
ToStr returns regular c-strings

LGTM as-is with few questions and suggestions

vitalybuka requested changes to this revision.Oct 16 2019, 2:25 PM
This revision now requires changes to proceed.Oct 16 2019, 2:25 PM