}
+/* Support for --param asan-kernel-mem-intrinsic-prefix=1. */
+static GTY(()) rtx asan_memfn_rtls[3];
+
+rtx
+asan_memfn_rtl (tree fndecl)
+{
+ int i;
+ const char *f, *p;
+ char buf[sizeof ("__hwasan_memmove")];
+
+ switch (DECL_FUNCTION_CODE (fndecl))
+ {
+ case BUILT_IN_MEMCPY: i = 0; f = "memcpy"; break;
+ case BUILT_IN_MEMSET: i = 1; f = "memset"; break;
+ case BUILT_IN_MEMMOVE: i = 2; f = "memmove"; break;
+ default: gcc_unreachable ();
+ }
+ if (asan_memfn_rtls[i] == NULL_RTX)
+ {
+ tree save_name = DECL_NAME (fndecl);
+ tree save_assembler_name = DECL_ASSEMBLER_NAME (fndecl);
+ rtx save_rtl = DECL_RTL (fndecl);
+ if (flag_sanitize & SANITIZE_KERNEL_HWADDRESS)
+ p = "__hwasan_";
+ else
+ p = "__asan_";
+ strcpy (buf, p);
+ strcat (buf, f);
+ DECL_NAME (fndecl) = get_identifier (buf);
+ DECL_ASSEMBLER_NAME_RAW (fndecl) = NULL_TREE;
+ SET_DECL_RTL (fndecl, NULL_RTX);
+ asan_memfn_rtls[i] = DECL_RTL (fndecl);
+ DECL_NAME (fndecl) = save_name;
+ DECL_ASSEMBLER_NAME_RAW (fndecl) = save_assembler_name;
+ SET_DECL_RTL (fndecl, save_rtl);
+ }
+ return asan_memfn_rtls[i];
+}
+
+
/* Checks whether section SEC should be sanitized. */
static bool
extern bool asan_expand_mark_ifn (gimple_stmt_iterator *);
extern bool asan_expand_poison_ifn (gimple_stmt_iterator *, bool *,
hash_map<tree, tree> &);
+extern rtx asan_memfn_rtl (tree);
extern void hwasan_record_frame_init ();
extern void hwasan_record_stack_var (rtx, rtx, poly_int64, poly_int64);
by ASan. */
enum built_in_function fcode = DECL_FUNCTION_CODE (fndecl);
- if ((flag_sanitize & SANITIZE_ADDRESS) && asan_intercepted_p (fcode))
+ if (param_asan_kernel_mem_intrinsic_prefix
+ && sanitize_flags_p (SANITIZE_KERNEL_ADDRESS
+ | SANITIZE_KERNEL_HWADDRESS))
+ switch (fcode)
+ {
+ rtx save_decl_rtl, ret;
+ case BUILT_IN_MEMCPY:
+ case BUILT_IN_MEMMOVE:
+ case BUILT_IN_MEMSET:
+ save_decl_rtl = DECL_RTL (fndecl);
+ DECL_RTL (fndecl) = asan_memfn_rtl (fndecl);
+ ret = expand_call (exp, target, ignore);
+ DECL_RTL (fndecl) = save_decl_rtl;
+ return ret;
+ default:
+ break;
+ }
+ if (sanitize_flags_p (SANITIZE_ADDRESS) && asan_intercepted_p (fcode))
return expand_call (exp, target, ignore);
/* When not optimizing, generate calls to library functions for a certain
Common Joined UInteger Var(param_asan_instrumentation_with_call_threshold) Init(7000) Param Optimization
Use callbacks instead of inline code if number of accesses in function becomes greater or equal to this number.
+-param=asan-kernel-mem-intrinsic-prefix=
+Common Joined UInteger Var(param_asan_kernel_mem_intrinsic_prefix) Init(0) IntegerRange(0, 1) Param Optimization
+Prefix calls to memcpy, memset and memmove with __asan_ or __hwasan_ for -fsanitize=kernel-address or -fsanitize=kernel-hwaddress.
+
-param=asan-memintrin=
Common Joined UInteger Var(param_asan_memintrin) Init(1) IntegerRange(0, 1) Param Optimization
Enable asan builtin functions protection.
--- /dev/null
+/* PR sanitizer/108777 */
+/* { dg-do compile } */
+/* { dg-options "-O2 -fno-sanitize=all -fsanitize=kernel-address --param asan-kernel-mem-intrinsic-prefix=1" } */
+/* { dg-final { scan-assembler "__asan_memcpy" } } */
+/* { dg-final { scan-assembler "__asan_memset" } } */
+/* { dg-final { scan-assembler "__asan_memmove" } } */
+
+extern void *memcpy (void *, const void *, __SIZE_TYPE__);
+extern void *memmove (void *, const void *, __SIZE_TYPE__);
+extern void *memset (void *, int, __SIZE_TYPE__);
+
+void
+foo (void *p, void *q, int s)
+{
+ memcpy (p, q, s);
+}
+
+void
+bar (void *p, void *q, int s)
+{
+ memmove (p, q, s);
+}
+
+void
+baz (void *p, int c, int s)
+{
+ memset (p, c, s);
+}
--- /dev/null
+/* PR sanitizer/108777 */
+/* { dg-do compile } */
+/* { dg-options "-O2 -fno-sanitize=all -fsanitize=kernel-address --param asan-kernel-mem-intrinsic-prefix=1" } */
+/* { dg-final { scan-assembler "__asan_memcpy" } } */
+/* { dg-final { scan-assembler "__asan_memset" } } */
+/* { dg-final { scan-assembler "__asan_memmove" } } */
+
+void
+foo (void *p, void *q, int s)
+{
+ __builtin_memcpy (p, q, s);
+}
+
+void
+bar (void *p, void *q, int s)
+{
+ __builtin_memmove (p, q, s);
+}
+
+void
+baz (void *p, int c, int s)
+{
+ __builtin_memset (p, c, s);
+}
--- /dev/null
+/* PR sanitizer/108777 */
+/* { dg-do compile } */
+/* { dg-options "-O2 -fno-sanitize=all -fsanitize=kernel-address --param asan-kernel-mem-intrinsic-prefix=1" } */
+/* { dg-final { scan-assembler-not "__asan_memcpy" } } */
+/* { dg-final { scan-assembler-not "__asan_memset" } } */
+/* { dg-final { scan-assembler-not "__asan_memmove" } } */
+
+extern void *memcpy (void *, const void *, __SIZE_TYPE__);
+extern void *memmove (void *, const void *, __SIZE_TYPE__);
+extern void *memset (void *, int, __SIZE_TYPE__);
+
+__attribute__((no_sanitize("kernel-address"))) void
+foo (void *p, void *q, int s)
+{
+ memcpy (p, q, s);
+}
+
+__attribute__((no_sanitize("kernel-address"))) void
+bar (void *p, void *q, int s)
+{
+ memmove (p, q, s);
+}
+
+__attribute__((no_sanitize("kernel-address"))) void
+baz (void *p, int c, int s)
+{
+ memset (p, c, s);
+}
--- /dev/null
+/* PR sanitizer/108777 */
+/* { dg-do compile } */
+/* { dg-options "-O2 -fno-sanitize=all -fsanitize=kernel-address --param asan-kernel-mem-intrinsic-prefix=1" } */
+/* { dg-final { scan-assembler-not "__asan_memcpy" } } */
+/* { dg-final { scan-assembler-not "__asan_memset" } } */
+/* { dg-final { scan-assembler-not "__asan_memmove" } } */
+
+__attribute__((no_sanitize("kernel-address"))) void
+foo (void *p, void *q, int s)
+{
+ __builtin_memcpy (p, q, s);
+}
+
+__attribute__((no_sanitize("kernel-address"))) void
+bar (void *p, void *q, int s)
+{
+ __builtin_memmove (p, q, s);
+}
+
+__attribute__((no_sanitize("kernel-address"))) void
+baz (void *p, int c, int s)
+{
+ __builtin_memset (p, c, s);
+}
--- /dev/null
+/* PR sanitizer/108777 */
+/* { dg-do compile } */
+/* { dg-options "-O2 -fno-sanitize=all -fsanitize=kernel-address" } */
+/* { dg-final { scan-assembler-not "__asan_memcpy" } } */
+/* { dg-final { scan-assembler-not "__asan_memset" } } */
+/* { dg-final { scan-assembler-not "__asan_memmove" } } */
+
+extern void *memcpy (void *, const void *, __SIZE_TYPE__);
+extern void *memmove (void *, const void *, __SIZE_TYPE__);
+extern void *memset (void *, int, __SIZE_TYPE__);
+
+void
+foo (void *p, void *q, int s)
+{
+ memcpy (p, q, s);
+}
+
+void
+bar (void *p, void *q, int s)
+{
+ memmove (p, q, s);
+}
+
+void
+baz (void *p, int c, int s)
+{
+ memset (p, c, s);
+}
--- /dev/null
+/* PR sanitizer/108777 */
+/* { dg-do compile } */
+/* { dg-options "-O2 -fno-sanitize=all -fsanitize=kernel-address" } */
+/* { dg-final { scan-assembler-not "__asan_memcpy" } } */
+/* { dg-final { scan-assembler-not "__asan_memset" } } */
+/* { dg-final { scan-assembler-not "__asan_memmove" } } */
+
+void
+foo (void *p, void *q, int s)
+{
+ __builtin_memcpy (p, q, s);
+}
+
+void
+bar (void *p, void *q, int s)
+{
+ __builtin_memmove (p, q, s);
+}
+
+void
+baz (void *p, int c, int s)
+{
+ __builtin_memset (p, c, s);
+}
--param=asan-instrument-reads=
--param=asan-instrument-writes=
--param=asan-instrumentation-with-call-threshold=
+--param=asan-kernel-mem-intrinsic-prefix=
--param=asan-memintrin=
--param=asan-stack=
--param=asan-use-after-return=