How to circumvent format-truncation warning in GCC?

33,595

Solution 1

  1. The warning was added in gcc7.1, see gcc7.1 release changes.
  2. From gcc docs:

Level 1 of -Wformat-truncation [...] warns only about calls to bounded functions whose return value is unused and that will most likely result in output truncation.

  1. The issue was a bug report and was closed as NOTABUG:

Unhandled output truncation is typically a bug in the program. [...]
In cases when truncation is expected the caller typically checks the return value from the function and handles it somehow (e.g., by branching on it). In those cases, the warning is not issued. The source line printed by the warning suggests that this is not one of those cases. The warning is doing what it was designed to do.

  1. But we can just check the return value of snprintf, which returns a negative value on error.

#include <stdio.h>
#include <stdlib.h>
int main() {
    char dst[2], src[2] = "a";

    // snprintf(dst, sizeof(dst), "%s!", src); // warns

    int ret = snprintf(dst, sizeof(dst), "%s!", src);
    if (ret < 0) {
         abort();
    }

    // But don't we love confusing one liners?
    for (int ret = snprintf(dst, sizeof(dst), "%s!", src); ret < 0;) exit(ret);
    // Can we do better?
    snprintf(dst, sizeof(dst), "%s!", src) < 0 ? abort() : (void)0;
    // Don't we love obfuscation?
#define snprintf_nowarn(...) (snprintf(__VA_ARGS__) < 0 ? abort() : (void)0)
    snprintf_nowarn(dst, sizeof(dst), "%s!", src);
}

Tested on https://godbolt.org/ with gcc7.1 gcc7.2 gcc7.3 gcc8.1 with -O{0,1,2,3} -Wall -Wextra -pedantic. Gives no warning. gcc8.1 optimizes/removes the call to abort() with optimization greater than -O1.

Oddly enough, when compiling as a C++ source file, the warning is still there even when we check the return value. All is fine in C. In C++ prefer std::format_to anyway. So:

  1. We can just use compiler specific syntax to disable the warning.

#include <stdio.h>    
#include <stdlib.h>
int main() {
    char dst[2];

    char src[2] = "a";
    // does not warn in C
    // warns in C++ with g++ newer than 10.1 with optimization -O2
    int ret = snprintf(dst, sizeof(dst), "%s!", src);
    if (ret < 0) {
         abort();
    }

    // does not warn in C
    // still warns in C++
    ret = snprintf(dst, sizeof(dst), "%s!", "a");
    if (ret < 0) {
         abort();
    }

    // use compiler specific pragmas to disable the warning
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wformat-truncation"
    snprintf(dst, sizeof(dst), "%s!", "a");
#pragma GCC diagnostic pop

// wrapper macro with compiler specific pragmas
// works for any gcc
// works from g++ 10.1
#ifndef __GNUC__
#define snprintf_nowarn  snprintf
#else
#define snprintf_nowarn(...) __extension__({ \
    _Pragma("GCC diagnostic push"); \
    _Pragma("GCC diagnostic ignored \"-Wformat-truncation\""); \
    const int _snprintf_nowarn = snprintf(__VA_ARGS__); \
    _Pragma("GCC diagnostic pop"); \
    _snprintf_nowarn; \
})
#endif
    snprintf_nowarn(dst, sizeof(dst), "%s!", "a");
}

Solution 2

This error is only triggered when length-limited *printf functions are called (e.g. snprintf, vsnprintf). In other words, it is not an indication that you may be overflowing a buffer, as may happen with sprintf; it only notifies you that you aren't checking whether snprintf is doing its job and truncating. (Side note: snprintf always null-terminates, so this can't result in a non-terminated string.)

Knowing that, I'm much more sanguine about disabling it globally using -Wno-format-truncation, rather than trying to coax gcc into ignoring a specific instance.

Solution 3

This page was useful to me:
https://www.fluentcpp.com/2019/08/30/how-to-disable-a-warning-in-cpp/

You could resolve the issue for a gcc/clang compiler by doing this:

#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wformat-truncation"
    snprintf(dst, sizeof(dst), "%s-more", src);
#pragma GCC diagnostic pop

The webpage above also has a solution for Visual Studio compiler warnings.

Share:
33,595
Marius Melzer
Author by

Marius Melzer

Updated on July 09, 2022

Comments

  • Marius Melzer
    Marius Melzer almost 2 years

    I'm getting the following gcc format-truncation warning:

    test.c:8:33: warning: ‘/input’ directive output may be truncated writing 6 bytes into a region of size between 1 and 20 [-Wformat-truncation=]
    snprintf(dst, sizeof(dst), "%s-more", src);
                                 ^~~~~~
    test.c:8:3: note: ‘snprintf’ output between 7 and 26 bytes into a destination of size 20
    snprintf(dst, sizeof(dst), "%s-more", src);
    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    

    on code like this:

    char dst[20];
    char src[20];
    scanf("%s", src);
    snprintf(dst, sizeof(dst), "%s-more", src);
    printf("%s\n", dst);
    

    I'm aware that it might be truncated - but this is exactly the reason why I'm using snprintf in the first place. Is there a way how to make it clear to the compiler that this is intended (without using a pragma or -Wno-format-truncation)?

  • nafmo
    nafmo over 5 years
    Note that snprintf() only returns a negative number on error, though. On truncation, it returns the number of characters it would have written, had the buffer been long enough.
  • Lehrian
    Lehrian over 2 years
    This is the best solution. Thanks for the link.
  • Alexis Wilke
    Alexis Wilke over 2 years
    I don't see an issue with testing the return value of snprintf to avoid the warning. Plus that means you can make sure your code works as expected. You can use a limit in the format string too (%.123s).
  • Daniel Griscom
    Daniel Griscom over 2 years
    @AlexisWilke If I don't care whether it's truncated, why should I have to test for it? It's like using a max() function, and then being forced to test whether the limit was actually hit.
  • HRH Sven Olaf of CyberBunker
    HRH Sven Olaf of CyberBunker over 2 years
    they can resolve the issue by removing that nonsense from gcc. if we truncate things in sprintf it's because we WANT it to be truncated (such as hours and dates, of which we know it'll never be 'billions' but just '31' at most ;) and no we shall not include 'pragmas' in our code purely for 'GCC' when it's supposed to compile with everything else too. it never was there before. it can be removed again now. oh and btw. if i don't specify -Wall i don't want to see warnings. especially not about how i try to put a date into a %d field ;) i'll get back to them when a month has 2 billion days.
  • Tharindu Sathischandra
    Tharindu Sathischandra over 2 years
    This solution does not work in my case. Please take a loot: godbolt.org/z/4r7sT49hs
  • KamilCuk
    KamilCuk over 2 years
    You are using C++ compiler.