pg_attribute_no_sanitize_alignment() macro
authorAlexander Korotkov <akorotkov@postgresql.org>
Fri, 12 Feb 2021 14:14:33 +0000 (17:14 +0300)
committerAlexander Korotkov <akorotkov@postgresql.org>
Fri, 12 Feb 2021 14:23:35 +0000 (17:23 +0300)
Modern gcc and clang compilers offer alignment sanitizers, which help to detect
pointer misalignment.  However, our codebase already contains x86-specific
crc32 computation code, which uses unalignment access.  Thankfully, those
compilers also support the attribute, which disables alignment sanitizers at
the function level.  This commit adds pg_attribute_no_sanitize_alignment(),
which wraps this attribute, and applies it to pg_comp_crc32c_sse42() function.

Discussion: https://postgr.es/m/CAPpHfdsne3%3DT%3DfMNU45PtxdhSL_J2PjLTeS8rwKnJzUR4YNd4w%40mail.gmail.com
Discussion: https://postgr.es/m/475514.1612745257%40sss.pgh.pa.us
Author: Alexander Korotkov, revised by Tom Lane
Reviewed-by: Tom Lane
src/include/c.h
src/port/pg_crc32c_sse42.c

index ae978830dafba72ada6352aae706614588c66f4d..a86342093ebad8f80fe4d222d32ea7a80bec9e9d 100644 (file)
 #define pg_nodiscard
 #endif
 
+/*
+ * Place this macro before functions that should be allowed to make misaligned
+ * accesses.  Think twice before using it on non-x86-specific code!
+ * Testing can be done with "-fsanitize=alignment -fsanitize-trap=alignment"
+ * on clang, or "-fsanitize=alignment -fno-sanitize-recover=alignment" on gcc.
+ */
+#if __clang_major__ >= 7 || __GNUC__ >= 5
+#define pg_attribute_no_sanitize_alignment() __attribute__((no_sanitize("alignment")))
+#else
+#define pg_attribute_no_sanitize_alignment()
+#endif
+
 /*
  * Append PG_USED_FOR_ASSERTS_ONLY to definitions of variables that are only
  * used in assert-enabled builds, to avoid compiler warnings about unused
index 3b94a7388aba8ff5f615e4f69266180e683ec35f..10fc01e1f064e81b3831ec5886d644eec23b1d71 100644 (file)
@@ -18,6 +18,7 @@
 
 #include "port/pg_crc32c.h"
 
+pg_attribute_no_sanitize_alignment()
 pg_crc32c
 pg_comp_crc32c_sse42(pg_crc32c crc, const void *data, size_t len)
 {