add explicit_bzero implementation
authorDavid Carlier <dcarlier@afilias.info>
Fri, 15 Jun 2018 13:30:09 +0000 (13:30 +0000)
committerRich Felker <dalias@aerifal.cx>
Tue, 26 Jun 2018 20:59:12 +0000 (16:59 -0400)
maintainer's note: past sentiment was that, despite being imperfect
and unable to force clearing of all possible copies of sensitive data
(e.g. in registers, register spills, signal contexts left on the
stack, etc.) this function would be added if major implementations
agreed on it, which has happened -- several BSDs and glibc all include
it.

include/string.h
src/string/explicit_bzero.c [new file with mode: 0644]

index ce1dc30..795a2ab 100644 (file)
@@ -82,6 +82,7 @@ void *memccpy (void *__restrict, const void *__restrict, int, size_t);
 char *strsep(char **, const char *);
 size_t strlcat (char *, const char *, size_t);
 size_t strlcpy (char *, const char *, size_t);
+void explicit_bzero (void *, size_t);
 #endif
 
 #ifdef _GNU_SOURCE
diff --git a/src/string/explicit_bzero.c b/src/string/explicit_bzero.c
new file mode 100644 (file)
index 0000000..3d27004
--- /dev/null
@@ -0,0 +1,8 @@
+#define _BSD_SOURCE
+#include <string.h>
+
+void explicit_bzero(void *d, size_t n)
+{
+       memset(d, 0, n);
+       __asm__ __volatile__ ("" : : "r"(d) : "memory");
+}