liyujie
2025-08-28 786ff4f4ca2374bdd9177f2e24b503d43e7a3b93
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/* OPENBSD ORIGINAL: lib/libc/string/explicit_bzero.c */
/*    $OpenBSD: explicit_bzero.c,v 1.1 2014/01/22 21:06:45 tedu Exp $ */
/*
 * Public domain.
 * Written by Ted Unangst
 */
 
#include "includes.h"
 
#include <string.h>
 
/*
 * explicit_bzero - don't let the compiler optimize away bzero
 */
 
#ifndef HAVE_EXPLICIT_BZERO
 
#ifdef HAVE_MEMSET_S
 
void
explicit_bzero(void *p, size_t n)
{
   (void)memset_s(p, n, 0, n);
}
 
#else /* HAVE_MEMSET_S */
 
#if defined(ANDROID) && defined(bzero)
/* On some Android versions bzero is a macro */
static void wrapped_bzero(void* dest, size_t sz) {
  memset(dest, 0, sz);
}
 
/*
 * Indirect bzero through a volatile pointer to hopefully avoid
 * dead-store optimisation eliminating the call.
 */
static void (* volatile ssh_bzero)(void *, size_t) = wrapped_bzero;
#else
/*
 * Indirect bzero through a volatile pointer to hopefully avoid
 * dead-store optimisation eliminating the call.
 */
static void (* volatile ssh_bzero)(void *, size_t) = bzero;
#endif
 
void
explicit_bzero(void *p, size_t n)
{
   /*
    * clang -fsanitize=memory needs to intercept memset-like functions
    * to correctly detect memory initialisation. Make sure one is called
    * directly since our indirection trick above sucessfully confuses it.
    */
#if defined(__has_feature)
# if __has_feature(memory_sanitizer)
   memset(p, 0, n);
# endif
#endif
 
   ssh_bzero(p, n);
}
 
#endif /* HAVE_MEMSET_S */
 
#endif /* HAVE_EXPLICIT_BZERO */