aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Benjamin Barenblat <bbaren@google.com>2022-08-03 19:32:39 -0400
committerGravatar Benjamin Barenblat <bbarenblat@gmail.com>2022-08-03 19:59:56 -0400
commitcd7050613c13dc2989e22e6056378319b6abc66d (patch)
treeb10693380c99e9ddb57f0c76d5709ecc14c0ac95 /src
parent4cd2da52025375106edf0d2b53259b79d77b3234 (diff)
Audit and fix up format strings
Diffstat (limited to 'src')
-rw-r--r--src/frontend/mosh-server.cc4
-rw-r--r--src/terminal/terminalframebuffer.cc30
-rw-r--r--src/tests/test_utils.cc5
3 files changed, 30 insertions, 9 deletions
diff --git a/src/frontend/mosh-server.cc b/src/frontend/mosh-server.cc
index e8a6cb7..f6d2ff3 100644
--- a/src/frontend/mosh-server.cc
+++ b/src/frontend/mosh-server.cc
@@ -807,7 +807,7 @@ static void serve( int host_fd, Terminal::Complete &terminal, ServerConnection &
#ifdef HAVE_UTEMPTER
utempter_remove_record( host_fd );
char tmp[ 64 + NI_MAXHOST ];
- snprintf( tmp, 64 + NI_MAXHOST, "%s via mosh [%d]", host, getpid() );
+ snprintf( tmp, 64 + NI_MAXHOST, "%s via mosh [%ld]", host, static_cast<long int>( getpid() ) );
utempter_add_record( host_fd, tmp );
connected_utmp = true;
@@ -899,7 +899,7 @@ static void serve( int host_fd, Terminal::Complete &terminal, ServerConnection &
utempter_remove_record( host_fd );
char tmp[ 64 ];
- snprintf( tmp, 64, "mosh [%d]", getpid() );
+ snprintf( tmp, 64, "mosh [%ld]", static_cast<long int>( getpid() ) );
utempter_add_record( host_fd, tmp );
connected_utmp = false;
diff --git a/src/terminal/terminalframebuffer.cc b/src/terminal/terminalframebuffer.cc
index 2751f3b..70284a4 100644
--- a/src/terminal/terminalframebuffer.cc
+++ b/src/terminal/terminalframebuffer.cc
@@ -533,28 +533,40 @@ std::string Renditions::sgr( void ) const
if ( get_attribute( invisible ) ) ret.append( ";8" );
if ( foreground_color ) {
+ // Since foreground_color is a 25-bit field, it is promoted to an int when
+ // manipulated. (See [conv.prom] in various C++ standards, e.g.,
+ // https://timsong-cpp.github.io/cppwp/n4659/conv.prom#5.) The correct
+ // printf format specifier is thus %d.
if ( is_true_color( foreground_color ) ) {
- snprintf( col, sizeof( col ), ";38;2;%u;%u;%u",
+ snprintf( col, sizeof( col ), ";38;2;%d;%d;%d",
(foreground_color >> 16) & 0xff,
(foreground_color >> 8) & 0xff,
foreground_color & 0xff);
} else if ( foreground_color > 37 ) { /* use 256-color set */
- snprintf( col, sizeof( col ), ";38;5;%u", foreground_color - 30 );
+ snprintf( col, sizeof( col ), ";38;5;%d", foreground_color - 30 );
} else { /* ANSI foreground color */
- snprintf( col, sizeof( col ), ";%u", static_cast<unsigned int>( foreground_color ) );
+ // Unfortunately, some versions of GCC (notably including GCC 9.3) give
+ // -Wformat warnings when relying on [conv.prom] to promote
+ // foreground_color in calls to printf. Explicitly promote it to silence
+ // the warning.
+ int fg = foreground_color;
+ snprintf( col, sizeof( col ), ";%d", fg );
}
ret.append( col );
}
if ( background_color ) {
+ // See comment above about bit-field promotion; it applies here as well.
if ( is_true_color( background_color ) ) {
- snprintf( col, sizeof( col ), ";48;2;%u;%u;%u",
+ snprintf( col, sizeof( col ), ";48;2;%d;%d;%d",
(background_color >> 16) & 0xff,
(background_color >> 8) & 0xff,
background_color & 0xff);
} else if ( background_color > 47 ) { /* use 256-color set */
- snprintf( col, sizeof( col ), ";48;5;%u", background_color - 40 );
+ snprintf( col, sizeof( col ), ";48;5;%d", background_color - 40 );
} else { /* ANSI background color */
- snprintf( col, sizeof( col ), ";%u", static_cast<unsigned int>( background_color ) );
+ // See comment above about explicit promotion; it applies here as well.
+ int bg = background_color;
+ snprintf( col, sizeof( col ), ";%d", bg );
}
ret.append( col );
}
@@ -630,12 +642,17 @@ bool Cell::compare( const Cell &other ) const
if ( fallback != other.fallback ) {
// ret = true;
+ // Since fallback is a 1-bit field, it is promoted to an int when
+ // manipulated. (See [conv.prom] in various C++ standards, e.g.,
+ // https://timsong-cpp.github.io/cppwp/n4659/conv.prom#5.) The correct
+ // printf format specifier is thus %d.
fprintf( stderr, "fallback: %d vs. %d\n",
fallback, other.fallback );
}
if ( wide != other.wide ) {
ret = true;
+ // See comment above about bit-field promotion; it applies here as well.
fprintf( stderr, "width: %d vs. %d\n",
wide, other.wide );
}
@@ -647,6 +664,7 @@ bool Cell::compare( const Cell &other ) const
if ( wrap != other.wrap ) {
ret = true;
+ // See comment above about bit-field promotion; it applies here as well.
fprintf( stderr, "wrap: %d vs. %d\n",
wrap, other.wrap );
}
diff --git a/src/tests/test_utils.cc b/src/tests/test_utils.cc
index 431bad7..fcdb3fd 100644
--- a/src/tests/test_utils.cc
+++ b/src/tests/test_utils.cc
@@ -38,7 +38,10 @@ void hexdump( const void *buf, size_t len, const char *name ) {
const unsigned char *data = (const unsigned char *) buf;
printf( DUMP_NAME_FMT, name );
for ( size_t i = 0; i < len; i++ ) {
- printf( "%02x", data[ i ] );
+ // Although data[i] is an unsigned char, it will be promoted to a signed int
+ // when passed as an argument. Explicitly cast it back to an unsigned type
+ // so it can be printed in hex.
+ printf( "%02x", static_cast<unsigned>( data[ i ] ) );
}
printf( "\n" );
}