diff --git a/src/backend/utils/adt/format_type.c b/src/backend/utils/adt/format_type.c index b56bb74bdc6db437f8155ba10ca5e5360bb23ff4..7c51ee7ecac88fa450726b8834d31e64173739e9 100644 --- a/src/backend/utils/adt/format_type.c +++ b/src/backend/utils/adt/format_type.c @@ -33,7 +33,7 @@ static char *printTypmod(const char *typname, int32 typmod, Oid typmodout); static char * psnprintf(size_t len, const char *fmt,...) /* This lets gcc check the format string for consistency. */ -__attribute__((format(printf, 2, 3))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 2, 3))); /* diff --git a/src/bin/pg_ctl/pg_ctl.c b/src/bin/pg_ctl/pg_ctl.c index 98de19fa3813f2940d5f23ac9d88257fbaa1c24d..98bbaefd8c8cd4e350c9f3d0d818ca9d4b43c03c 100644 --- a/src/bin/pg_ctl/pg_ctl.c +++ b/src/bin/pg_ctl/pg_ctl.c @@ -115,7 +115,7 @@ static void write_stderr(const char *fmt,...) /* This extension allows gcc to check the format string for consistency with the supplied arguments. */ -__attribute__((format(printf, 1, 2))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 1, 2))); static void *pg_malloc(size_t size); static char *xstrdup(const char *s); static void do_advice(void); diff --git a/src/bin/pg_dump/pg_backup.h b/src/bin/pg_dump/pg_backup.h index f51c95828ae1ab12309c662f8c3cdceefc81e83e..b37cc19c4e47e204e6776a05dfc456c429acdc95 100644 --- a/src/bin/pg_dump/pg_backup.h +++ b/src/bin/pg_dump/pg_backup.h @@ -152,7 +152,7 @@ typedef struct _restoreOptions extern void exit_horribly(Archive *AH, const char *modulename, const char *fmt,...) -__attribute__((format(printf, 3, 4))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 3, 4))); /* Lets the archive know we have a DB connection to shutdown if it dies */ @@ -207,7 +207,7 @@ extern int archputs(const char *s, Archive *AH); extern int archprintf(Archive *AH, const char *fmt,...) /* This extension allows gcc to check the format string */ -__attribute__((format(printf, 2, 3))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 2, 3))); #define appendStringLiteralAH(buf,str,AH) \ appendStringLiteral(buf, str, (AH)->encoding, (AH)->std_strings) diff --git a/src/bin/pg_dump/pg_backup_archiver.h b/src/bin/pg_dump/pg_backup_archiver.h index fd0b174b788f82ea351c91849f611fa33fe4787e..f9af8742cc4dcfda684e6f7a30eaead80c416b2d 100644 --- a/src/bin/pg_dump/pg_backup_archiver.h +++ b/src/bin/pg_dump/pg_backup_archiver.h @@ -328,9 +328,9 @@ typedef struct _tocEntry /* Used everywhere */ extern const char *progname; -extern void die_horribly(ArchiveHandle *AH, const char *modulename, const char *fmt,...) __attribute__((format(printf, 3, 4))); -extern void warn_or_die_horribly(ArchiveHandle *AH, const char *modulename, const char *fmt,...) __attribute__((format(printf, 3, 4))); -extern void write_msg(const char *modulename, const char *fmt,...) __attribute__((format(printf, 2, 3))); +extern void die_horribly(ArchiveHandle *AH, const char *modulename, const char *fmt,...) __attribute__((format(PG_PRINTF_ATTRIBUTE, 3, 4))); +extern void warn_or_die_horribly(ArchiveHandle *AH, const char *modulename, const char *fmt,...) __attribute__((format(PG_PRINTF_ATTRIBUTE, 3, 4))); +extern void write_msg(const char *modulename, const char *fmt,...) __attribute__((format(PG_PRINTF_ATTRIBUTE, 2, 3))); extern void WriteTOC(ArchiveHandle *AH); extern void ReadTOC(ArchiveHandle *AH); @@ -378,8 +378,8 @@ extern int ReconnectToServer(ArchiveHandle *AH, const char *dbname, const char * extern void DropBlobIfExists(ArchiveHandle *AH, Oid oid); int ahwrite(const void *ptr, size_t size, size_t nmemb, ArchiveHandle *AH); -int ahprintf(ArchiveHandle *AH, const char *fmt,...) __attribute__((format(printf, 2, 3))); +int ahprintf(ArchiveHandle *AH, const char *fmt,...) __attribute__((format(PG_PRINTF_ATTRIBUTE, 2, 3))); -void ahlog(ArchiveHandle *AH, int level, const char *fmt,...) __attribute__((format(printf, 3, 4))); +void ahlog(ArchiveHandle *AH, int level, const char *fmt,...) __attribute__((format(PG_PRINTF_ATTRIBUTE, 3, 4))); #endif diff --git a/src/bin/psql/common.h b/src/bin/psql/common.h index 7b559f3c808489137760770abd27efbb0b9c9291..a26b8682be68db20e7d6a08e34e7b49dcab5290d 100644 --- a/src/bin/psql/common.h +++ b/src/bin/psql/common.h @@ -36,7 +36,7 @@ extern bool setQFout(const char *fname); extern void psql_error(const char *fmt,...) /* This lets gcc check the format string for consistency. */ -__attribute__((format(printf, 1, 2))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 1, 2))); extern void NoticeProcessor(void *arg, const char *message); diff --git a/src/bin/psql/large_obj.c b/src/bin/psql/large_obj.c index 594fa0eccf886d7cf6a528ddfe6b6d736c0a118a..d8e703af4db56d1505d78a5f67de2954588a38cb 100644 --- a/src/bin/psql/large_obj.c +++ b/src/bin/psql/large_obj.c @@ -14,7 +14,7 @@ static void print_lo_result(const char *fmt,...) -__attribute__((format(printf, 1, 2))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 1, 2))); static void print_lo_result(const char *fmt,...) diff --git a/src/include/c.h b/src/include/c.h index af1be9499efb01321e7fb4477e298e6888805130..039186084647aff172205c95283b138ac2b29fb3 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -773,7 +773,7 @@ typedef NameData *Name; extern int snprintf(char *str, size_t count, const char *fmt,...) /* This extension allows gcc to check the format string */ -__attribute__((format(printf, 3, 4))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 3, 4))); #endif #if !HAVE_DECL_VSNPRINTF diff --git a/src/include/lib/stringinfo.h b/src/include/lib/stringinfo.h index a84988c3f1a33c376357689c6c52ae432a9d1429..3657a685395f4a6ba5196cff4fdeb19a573eaae4 100644 --- a/src/include/lib/stringinfo.h +++ b/src/include/lib/stringinfo.h @@ -95,7 +95,7 @@ extern void resetStringInfo(StringInfo str); extern void appendStringInfo(StringInfo str, const char *fmt,...) /* This extension allows gcc to check the format string */ -__attribute__((format(printf, 2, 3))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 2, 3))); /*------------------------ * appendStringInfoVA diff --git a/src/include/pg_config_manual.h b/src/include/pg_config_manual.h index 7cf1a643d37b028ce0866badd85eea2eaa64a792..5f4cf93a24900d62665ed037de3348e2091e2fb4 100644 --- a/src/include/pg_config_manual.h +++ b/src/include/pg_config_manual.h @@ -154,6 +154,21 @@ */ #define MAX_RANDOM_VALUE (0x7FFFFFFF) +/* + * Set the format style used by gcc to check printf type functions. We really + * want the "gnu_printf" style set, which includes what glibc uses, such + * as %m for error strings and %lld for 64 bit long longs. But not all gcc + * compilers are known to support it, so we just use "printf" which all + * gcc versions alive are known to support, except on Windows where + * using "gnu_printf" style makes a dramatic difference. Maybe someday + * we'll have a configure test for this, if we ever discover use of more + * variants to be necessary. + */ +#ifdef WIN32 +#define PG_PRINTF_ATTRIBUTE gnu_printf +#else +#define PG_PRINTF_ATTRIBUTE printf +#endif /* *------------------------------------------------------------------------ diff --git a/src/include/port.h b/src/include/port.h index 1116a92fd1fd0cce1fcf7f7192ae60238f28bdf1..6ea681f16ace64ad0d035bea97f9c839f84149e0 100644 --- a/src/include/port.h +++ b/src/include/port.h @@ -197,20 +197,20 @@ extern int pg_vsnprintf(char *str, size_t count, const char *fmt, va_list args); extern int pg_snprintf(char *str, size_t count, const char *fmt,...) /* This extension allows gcc to check the format string */ -__attribute__((format(printf, 3, 4))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 3, 4))); extern int pg_sprintf(char *str, const char *fmt,...) /* This extension allows gcc to check the format string */ -__attribute__((format(printf, 2, 3))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 2, 3))); extern int pg_vfprintf(FILE *stream, const char *fmt, va_list args); extern int pg_fprintf(FILE *stream, const char *fmt,...) /* This extension allows gcc to check the format string */ -__attribute__((format(printf, 2, 3))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 2, 3))); extern int pg_printf(const char *fmt,...) /* This extension allows gcc to check the format string */ -__attribute__((format(printf, 1, 2))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 1, 2))); /* * The GCC-specific code below prevents the __attribute__(... 'printf') diff --git a/src/include/utils/elog.h b/src/include/utils/elog.h index fb5ef1620b75e57934e4845a604bfc6ad32ff691..4a3bd02689515cf2de974232cc412e1265e420de 100644 --- a/src/include/utils/elog.h +++ b/src/include/utils/elog.h @@ -124,53 +124,53 @@ extern int errmsg(const char *fmt,...) /* This extension allows gcc to check the format string for consistency with the supplied arguments. */ -__attribute__((format(printf, 1, 2))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 1, 2))); extern int errmsg_internal(const char *fmt,...) /* This extension allows gcc to check the format string for consistency with the supplied arguments. */ -__attribute__((format(printf, 1, 2))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 1, 2))); extern int errmsg_plural(const char *fmt_singular, const char *fmt_plural, unsigned long n,...) /* This extension allows gcc to check the format string for consistency with the supplied arguments. */ -__attribute__((format(printf, 1, 4))) -__attribute__((format(printf, 2, 4))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 1, 4))) +__attribute__((format(PG_PRINTF_ATTRIBUTE, 2, 4))); extern int errdetail(const char *fmt,...) /* This extension allows gcc to check the format string for consistency with the supplied arguments. */ -__attribute__((format(printf, 1, 2))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 1, 2))); extern int errdetail_log(const char *fmt,...) /* This extension allows gcc to check the format string for consistency with the supplied arguments. */ -__attribute__((format(printf, 1, 2))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 1, 2))); extern int errdetail_plural(const char *fmt_singular, const char *fmt_plural, unsigned long n,...) /* This extension allows gcc to check the format string for consistency with the supplied arguments. */ -__attribute__((format(printf, 1, 4))) -__attribute__((format(printf, 2, 4))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 1, 4))) +__attribute__((format(PG_PRINTF_ATTRIBUTE, 2, 4))); extern int errhint(const char *fmt,...) /* This extension allows gcc to check the format string for consistency with the supplied arguments. */ -__attribute__((format(printf, 1, 2))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 1, 2))); extern int errcontext(const char *fmt,...) /* This extension allows gcc to check the format string for consistency with the supplied arguments. */ -__attribute__((format(printf, 1, 2))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 1, 2))); extern int errhidestmt(bool hide_stmt); @@ -197,7 +197,7 @@ extern void elog_finish(int elevel, const char *fmt,...) /* This extension allows gcc to check the format string for consistency with the supplied arguments. */ -__attribute__((format(printf, 2, 3))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 2, 3))); /* Support for constructing error strings separately from ereport() calls */ @@ -207,7 +207,7 @@ extern char * format_elog_string(const char *fmt,...) /* This extension allows gcc to check the format string for consistency with the supplied arguments. */ -__attribute__((format(printf, 1, 2))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 1, 2))); /* Support for attaching context information to error reports */ @@ -366,6 +366,6 @@ extern void write_stderr(const char *fmt,...) /* This extension allows gcc to check the format string for consistency with the supplied arguments. */ -__attribute__((format(printf, 1, 2))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 1, 2))); #endif /* ELOG_H */ diff --git a/src/interfaces/ecpg/preproc/extern.h b/src/interfaces/ecpg/preproc/extern.h index 05b273cc24a7920756f0b8a2f3767b50ea2aeff1..ccf5548f577ed404febecdd3f85620fbc64c11ef 100644 --- a/src/interfaces/ecpg/preproc/extern.h +++ b/src/interfaces/ecpg/preproc/extern.h @@ -76,7 +76,7 @@ extern char *mm_strdup(const char *); extern void mmerror(int, enum errortype, const char *,...) /* This extension allows gcc to check the format string */ -__attribute__((format(printf, 3, 4))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 3, 4))); extern void output_get_descr_header(char *); extern void output_get_descr(char *, char *); extern void output_set_descr_header(char *); diff --git a/src/interfaces/libpq/libpq-int.h b/src/interfaces/libpq/libpq-int.h index fbd94ebfb88b92db2daa91f2b22b3a9e457236ae..d56ef5d489b5f9964fe4a335ac2de501a2ffd224 100644 --- a/src/interfaces/libpq/libpq-int.h +++ b/src/interfaces/libpq/libpq-int.h @@ -505,7 +505,7 @@ extern PGresult *pqPrepareAsyncResult(PGconn *conn); extern void pqInternalNotice(const PGNoticeHooks *hooks, const char *fmt,...) /* This lets gcc check the format string for consistency. */ -__attribute__((format(printf, 2, 3))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 2, 3))); extern int pqAddTuple(PGresult *res, PGresAttValue *tup); extern void pqSaveMessageField(PGresult *res, char code, const char *value); diff --git a/src/interfaces/libpq/pqexpbuffer.h b/src/interfaces/libpq/pqexpbuffer.h index be7cc61d1c5204ec4888774fe6cc7c5fda4709bb..d60fedc762e57eb454005677f992d50259aebe5d 100644 --- a/src/interfaces/libpq/pqexpbuffer.h +++ b/src/interfaces/libpq/pqexpbuffer.h @@ -141,7 +141,7 @@ extern int enlargePQExpBuffer(PQExpBuffer str, size_t needed); extern void printfPQExpBuffer(PQExpBuffer str, const char *fmt,...) /* This extension allows gcc to check the format string */ -__attribute__((format(printf, 2, 3))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 2, 3))); /*------------------------ * appendPQExpBuffer @@ -153,7 +153,7 @@ __attribute__((format(printf, 2, 3))); extern void appendPQExpBuffer(PQExpBuffer str, const char *fmt,...) /* This extension allows gcc to check the format string */ -__attribute__((format(printf, 2, 3))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 2, 3))); /*------------------------ * appendPQExpBufferStr diff --git a/src/pl/plpython/plpython.c b/src/pl/plpython/plpython.c index 8108cfce2c045d49b8a9cd5e716a7831cad9a95a..fe44a1a16a0f2621498e5554eea06f0918e9dbad 100644 --- a/src/pl/plpython/plpython.c +++ b/src/pl/plpython/plpython.c @@ -324,14 +324,14 @@ static void PLy_init_plpy(void); /* call PyErr_SetString with a vprint interface and translation support */ static void PLy_exception_set(PyObject *, const char *,...) -__attribute__((format(printf, 2, 3))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 2, 3))); /* same, with pluralized message */ static void PLy_exception_set_plural(PyObject *, const char *, const char *, unsigned long n,...) -__attribute__((format(printf, 2, 5))) -__attribute__((format(printf, 3, 5))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 2, 5))) +__attribute__((format(PG_PRINTF_ATTRIBUTE, 3, 5))); /* like PLy_exception_set, but conserve more fields from ErrorData */ static void PLy_spi_exception_set(PyObject *excclass, ErrorData *edata); @@ -342,7 +342,7 @@ static char *PLy_procedure_name(PLyProcedure *); /* some utility functions */ static void PLy_elog(int, const char *,...) -__attribute__((format(printf, 2, 3))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 2, 3))); static void PLy_get_spi_error_data(PyObject *exc, char **detail, char **hint, char **query, int *position); static void PLy_traceback(char **, char **, int *); diff --git a/src/test/regress/pg_regress.c b/src/test/regress/pg_regress.c index 23ef0a94e5d070b66585bd76ac5697a6347bc825..1411ca4e40054e6c983676c4d0eee21fbd2e591c 100644 --- a/src/test/regress/pg_regress.c +++ b/src/test/regress/pg_regress.c @@ -126,17 +126,17 @@ static void header(const char *fmt,...) /* This extension allows gcc to check the format string for consistency with the supplied arguments. */ -__attribute__((format(printf, 1, 2))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 1, 2))); static void status(const char *fmt,...) /* This extension allows gcc to check the format string for consistency with the supplied arguments. */ -__attribute__((format(printf, 1, 2))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 1, 2))); static void psql_command(const char *database, const char *query,...) /* This extension allows gcc to check the format string for consistency with the supplied arguments. */ -__attribute__((format(printf, 2, 3))); +__attribute__((format(PG_PRINTF_ATTRIBUTE, 2, 3))); #ifdef WIN32 typedef BOOL (WINAPI * __CreateRestrictedToken) (HANDLE, DWORD, DWORD, PSID_AND_ATTRIBUTES, DWORD, PLUID_AND_ATTRIBUTES, DWORD, PSID_AND_ATTRIBUTES, PHANDLE);