1 .\" Copyright (C) 2017 Michael Kerrisk <mtk.manpages@gmail.com>
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date. The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein. The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
25 .TH BZERO 3 2021-03-22 "Linux" "Linux Programmer's Manual"
27 bzero, explicit_bzero \- zero a byte string
30 .B #include <strings.h>
32 .BI "void bzero(void *" s ", size_t " n );
34 .B #include <string.h>
36 .BI "void explicit_bzero(void *" s ", size_t " n );
41 function erases the data in the
43 bytes of the memory starting at the location pointed to by
45 by writing zeros (bytes containing \(aq\e0\(aq) to that area.
49 function performs the same task as
53 in that it guarantees that compiler optimizations will not remove the
54 erase operation if the compiler deduces that the operation is "unnecessary".
59 first appeared in glibc 2.25.
61 For an explanation of the terms used in this section, see
69 Interface Attribute Value
73 T} Thread safety MT-Safe
81 function is deprecated (marked as LEGACY in POSIX.1-2001); use
84 POSIX.1-2008 removes the specification of
88 function first appeared in 4.3BSD.
92 function is a nonstandard extension that is also present on some of the BSDs.
93 Some other implementations have a similar function, such as
94 .BR memset_explicit ()
100 function addresses a problem that security-conscious applications
101 may run into when using
103 if the compiler can deduce that the location to be zeroed will
104 never again be touched by a
106 program, then it may remove the
109 This is a problem if the intent of the
111 call was to erase sensitive data (e.g., passwords)
112 to prevent the possibility that the data was leaked
113 by an incorrect or compromised program.
115 .BR explicit_bzero ()
116 are never optimized away by the compiler.
119 .BR explicit_bzero ()
120 function does not solve all problems associated with erasing sensitive data:
123 .BR explicit_bzero ()
126 guarantee that sensitive data is completely erased from memory.
129 For example, there may be copies of the sensitive data in
130 a register and in "scratch" stack areas.
132 .BR explicit_bzero ()
133 function is not aware of these copies, and can't erase them.
135 In some circumstances,
136 .BR explicit_bzero ()
140 If the compiler determined that the variable containing the
141 sensitive data could be optimized to be stored in a register
142 (because it is small enough to fit in a register,
143 and no operation other than the
144 .BR explicit_bzero ()
145 call would need to take the address of the variable), then the
146 .BR explicit_bzero ()
147 call will force the data to be copied from the register
148 to a location in RAM that is then immediately erased
149 (while the copy in the register remains unaffected).
150 The problem here is that data in RAM is more likely to be exposed
151 by a bug than data in a register, and thus the
152 .BR explicit_bzero ()
153 call creates a brief time window where the sensitive data is more
154 vulnerable than it would otherwise have been
155 if no attempt had been made to erase the data.
157 Note that declaring the sensitive variable with the
161 eliminate the above problems.
162 Indeed, it will make them worse, since, for example,
163 it may force a variable that would otherwise have been optimized
164 into a register to instead be maintained in (more vulnerable)
165 RAM for its entire lifetime.
167 Notwithstanding the above details, for security-conscious applications, using
168 .BR explicit_bzero ()
169 is generally preferable to not using it.
171 .BR explicit_bzero ()
172 anticipate that future compilers will recognize calls to
173 .BR explicit_bzero ()
174 and take steps to ensure that all copies of the sensitive data are erased,
175 including copies in registers or in "scratch" stack areas.