瀏覽代碼

add explicit_bzero implementation

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.
David Carlier 6 年之前
父節點
當前提交
05ac345f89
共有 2 個文件被更改,包括 9 次插入0 次删除
  1. 1 0
      include/string.h
  2. 8 0
      src/string/explicit_bzero.c

+ 1 - 0
include/string.h

@@ -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

+ 8 - 0
src/string/explicit_bzero.c

@@ -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");
+}