From 43b5a4e735474f4cba65e8464182e2ff4678dafa Mon Sep 17 00:00:00 2001 From: Deomid Ryabkov <rojer@cesanta.com> Date: Fri, 13 Apr 2018 16:57:08 +0100 Subject: [PATCH] Add a special attribute to printf-like funcs Enables extra compile-time checks CL: none PUBLISHED_FROM=9f7d658fbda5c721cf40293bf29967bb056d0437 --- mongoose.c | 6 +----- mongoose.h | 18 +++++++++++++++--- src/common/cs_dbg.h | 6 +----- src/common/platform.h | 12 +++++++++++- 4 files changed, 28 insertions(+), 14 deletions(-) diff --git a/mongoose.c b/mongoose.c index 1eb690e71..cd24eff5b 100644 --- a/mongoose.c +++ b/mongoose.c @@ -547,11 +547,7 @@ void cs_log_set_file(FILE *file); * Prints log to the current log file, appends "\n" in the end and flushes the * stream. */ -void cs_log_printf(const char *fmt, ...) -#ifdef __GNUC__ - __attribute__((format(printf, 1, 2))) -#endif - ; +void cs_log_printf(const char *fmt, ...) PRINTF_LIKE(1, 2); /* * Format and print message `x` with the given level `l`. Example: diff --git a/mongoose.h b/mongoose.h index a02d96466..d907c97ee 100644 --- a/mongoose.h +++ b/mongoose.h @@ -128,8 +128,18 @@ /* Common stuff */ +#if !defined(PRINTF_LIKE) +#if defined(__GNUC__) || defined(__clang__) || defined(__TI_COMPILER_VERSION__) +#define PRINTF_LIKE(f, a) __attribute__((format(printf, f, a))) +#else +#define PRINTF_LIKE(f, a) +#endif +#endif + #if !defined(WEAK) -#if (defined(__GNUC__) || defined(__TI_COMPILER_VERSION__)) && !defined(_WIN32) +#if (defined(__GNUC__) || defined(__clang__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(_WIN32) #define WEAK __attribute__((weak)) #else #define WEAK @@ -2397,7 +2407,8 @@ size_t c_strnlen(const char *s, size_t maxlen); /* * Equivalent of standard `snprintf()`. */ -int c_snprintf(char *buf, size_t buf_size, const char *format, ...); +int c_snprintf(char *buf, size_t buf_size, const char *format, ...) + PRINTF_LIKE(3, 4); /* * Equivalent of standard `vsnprintf()`. @@ -2465,7 +2476,8 @@ int mg_casecmp(const char *s1, const char *s2); * * The purpose of this is to avoid malloc-ing if generated strings are small. */ -int mg_asprintf(char **buf, size_t size, const char *fmt, ...); +int mg_asprintf(char **buf, size_t size, const char *fmt, ...) + PRINTF_LIKE(3, 4); /* Same as mg_asprintf, but takes varargs list. */ int mg_avprintf(char **buf, size_t size, const char *fmt, va_list ap); diff --git a/src/common/cs_dbg.h b/src/common/cs_dbg.h index 5e9643347..9e0608ef3 100644 --- a/src/common/cs_dbg.h +++ b/src/common/cs_dbg.h @@ -115,11 +115,7 @@ void cs_log_set_file(FILE *file); * Prints log to the current log file, appends "\n" in the end and flushes the * stream. */ -void cs_log_printf(const char *fmt, ...) -#ifdef __GNUC__ - __attribute__((format(printf, 1, 2))) -#endif - ; +void cs_log_printf(const char *fmt, ...) PRINTF_LIKE(1, 2); /* * Format and print message `x` with the given level `l`. Example: diff --git a/src/common/platform.h b/src/common/platform.h index b517cab4e..1b803c9e6 100644 --- a/src/common/platform.h +++ b/src/common/platform.h @@ -92,8 +92,18 @@ /* Common stuff */ +#if !defined(PRINTF_LIKE) +#if defined(__GNUC__) || defined(__clang__) || defined(__TI_COMPILER_VERSION__) +#define PRINTF_LIKE(f, a) __attribute__((format(printf, f, a))) +#else +#define PRINTF_LIKE(f, a) +#endif +#endif + #if !defined(WEAK) -#if (defined(__GNUC__) || defined(__TI_COMPILER_VERSION__)) && !defined(_WIN32) +#if (defined(__GNUC__) || defined(__clang__) || \ + defined(__TI_COMPILER_VERSION__)) && \ + !defined(_WIN32) #define WEAK __attribute__((weak)) #else #define WEAK -- GitLab