VirtualBox

source: vbox/trunk/include/iprt/memsafer.h@ 52018

Last change on this file since 52018 was 52018, checked in by vboxsync, 11 years ago

IPRT: Make RTMemSafer use the SUPR3 page allocation if available to allocate locked down memory. Change API to make allocation strategy tweakable to allow for pageable allocations where the support library is not available (build tools like bldRTSignTool) while still making sure the memory is non-pageable for sensitive data

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 9.4 KB
Line 
1/** @file
2 * IPRT - Memory Allocate for Sensitive Data.
3 */
4
5/*
6 * Copyright (C) 2006-2014 Oracle Corporation
7 *
8 * This file is part of VirtualBox Open Source Edition (OSE), as
9 * available from http://www.virtualbox.org. This file is free software;
10 * you can redistribute it and/or modify it under the terms of the GNU
11 * General Public License (GPL) as published by the Free Software
12 * Foundation, in version 2 as it comes in the "COPYING" file of the
13 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
14 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
15 *
16 * The contents of this file may alternatively be used under the terms
17 * of the Common Development and Distribution License Version 1.0
18 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
19 * VirtualBox OSE distribution, in which case the provisions of the
20 * CDDL are applicable instead of those of the GPL.
21 *
22 * You may elect to license modified versions of this file under the
23 * terms and conditions of either the GPL or the CDDL or both.
24 */
25
26#ifndef ___iprt_memsafer_h
27#define ___iprt_memsafer_h
28
29#include <iprt/mem.h> /* RTMEM_TAG */
30
31RT_C_DECLS_BEGIN
32
33
34/** @defgroup grp_rt_memsafer RTMemSafer - Memory Allocator for Sensitive Data
35 * @ingroup grp_rt
36 *
37 * This API doesn't provide 100% secure storage, it only provider more secure
38 * and safer storage. Thus the API isn't called RTMemSafe because you cannot
39 * assume the data is safe against all kinds of extraction methods.
40 *
41 * The API guarantee that the memory won't be returned to the system containing
42 * any of the information you put there. It will be repeatedly wiped after use.
43 *
44 * The API tries to isolate your data from other information stored in the
45 * process/system. How well this is done depends on the implementation. The
46 * more complicated implementations will provide protection against heartbleed
47 * like bugs where pieces of the heap is copied onto the wire.
48 *
49 * The more hardened implementations of the API will also do their best to
50 * prevent the memory from ending up in process dumps or being readable by
51 * debuggers.
52 *
53 * Finally, two functions are provided for scrambling the sensitive memory while
54 * it's not in use.
55 *
56 * @{
57 */
58
59/** Default memory allocation, non-pageable memory backing, return error
60 * if not possible to allocate such memor. */
61#define RTMEMSAFER_ALLOC_EX_FLAGS_DEFAULT (0)
62/** Allow pageable memory backing for cases where the content is not that sensitive
63 * and allocating non-pageable memory failes. Use with care! */
64#define RTMEMSAFER_ALLOC_EX_ALLOW_PAGEABLE_BACKING RT_BIT_32(1)
65
66/**
67 * Scrambles memory allocated by RTMemSaferAllocZEx and associates after use.
68 *
69 * Call this when the sensitive data isn't actively being used. It will at a
70 * minimum make sure the data is slightly scrambled, how hard it is to unbutton
71 * is dependent on which implementation is used and available host support.
72 *
73 * The user must synchronize calls to RTMemSaferScramble and
74 * RTMemSaferUnscramble, this memory allocator provides no help and keeps no
75 * state information around.
76 *
77 * @returns IPRT status code.
78 * @param pv The pointer returned by the allocation function.
79 * @param cb The exact size given to the allocation function.
80 */
81RTDECL(int) RTMemSaferScramble(void *pv, size_t cb);
82
83/**
84 * Unscrambles memory allocated by RTMemSaferAllocZEx and associates before use.
85 *
86 * This undoes the effect of RTMemSaferScramble.
87 *
88 * @returns IPRT status code.
89 * @param pv The pointer returned by the allocation function.
90 * @param cb The exact size given to the allocation function.
91 */
92RTDECL(int) RTMemSaferUnscramble(void *pv, size_t cb);
93
94
95/**
96 * Allocates memory for sensitive data.
97 *
98 * Some effort will be taken to isolate the data from other memory allocation.
99 * Memory is always zeroed.
100 *
101 * @returns IPRT status code.
102 * @param ppvNew Where to return the pointer to the memory.
103 * @param cb Number of bytes to allocate.
104 * @param fFlags Flags for controlling the allocation. See RTMEMSAFER_ALLOC_EX_FLAGS_* defines.
105 * @param pszTag Allocation tag used for statistics and such.
106 */
107RTDECL(int) RTMemSaferAllocZExTag(void **ppvNew, size_t cb, uint32_t fFlags, const char *pszTag) RT_NO_THROW;
108
109/**
110 * Allocates memory for sensitive data.
111 *
112 * Some effort will be taken to isolate the data from other memory allocation.
113 * Memory is always zeroed.
114 *
115 * @returns IPRT status code.
116 * @param a_ppvNew Where to return the pointer to the memory.
117 * @param a_cb Number of bytes to allocate.
118 * @param a_fFlags Flags for controlling the allocation. See RTMEMSAFER_ALLOC_EX_FLAGS_* defines.
119 */
120#define RTMemSaferAllocZEx(a_ppvNew, a_cb, a_fFlags) RTMemSaferAllocZExTag(a_ppvNew, a_cb, a_fFlags, RTMEM_TAG)
121
122/**
123 * Allocates memory for sensitive data.
124 *
125 * Some effort will be taken to isolate the data from other memory allocation.
126 * Memory is always zeroed.
127 *
128 * @returns Pointer to the allocated memory.
129 * @param cb Number of bytes to allocate.
130 * @param pszTag Allocation tag used for statistics and such.
131 */
132RTDECL(void *) RTMemSaferAllocZTag(size_t cb, const char *pszTag) RT_NO_THROW;
133
134/**
135 * Allocates memory for sensitive data.
136 *
137 * Some effort will be taken to isolate the data from other memory allocation.
138 * Memory is always zeroed.
139 *
140 * @returns Pointer to the allocated memory.
141 * @param a_cb Number of bytes to allocate.
142 */
143#define RTMemSaferAllocZ(a_cb) RTMemSaferAllocZTag(a_cb, RTMEM_TAG)
144
145
146/**
147 * Reallocates memory allocated by RTMemSaferAllocZEx, RTMemSaferAllocZ,
148 * RTMemSaferAllocZExTag, or RTMemSaferAllocZTag.
149 *
150 * When extending the allocation, the new memory will be zeroed. When shrinking
151 * the allocation the left over memory will be wiped clean using
152 * RTMemWipeThorougly.
153 *
154 * The function follows the standard realloc behavior.
155 *
156 * @returns IPRT status code.
157 * @param cbOld The current allocation size.
158 * @param pvOld The current allocation.
159 * @param cbNew The size of the new allocation.
160 * @param ppvNew Where to return the pointer to the new memory.
161 * @param fFlags Flags for controlling the allocation. See RTMEMSAFER_ALLOC_EX_FLAGS_* defines,
162 * this takes only effect when allocating completely new memory, for extending or
163 * shrinking existing allocations the flags of the allocation take precedence.
164 * @param pszTag Allocation tag used for statistics and such.
165 */
166RTDECL(int) RTMemSaferReallocZExTag(size_t cbOld, void *pvOld, size_t cbNew, void **ppvNew, uint32_t fFlags, const char *pszTag) RT_NO_THROW;
167
168/**
169 * Reallocates memory allocated by RTMemSaferAllocZEx, RTMemSaferAllocZ,
170 * RTMemSaferAllocZExTag, or RTMemSaferAllocZTag.
171 *
172 * When extending the allocation, the new memory will be zeroed. When shrinking
173 * the allocation the left over memory will be wiped clean using
174 * RTMemWipeThorougly.
175 *
176 * The function follows the standard realloc behavior.
177 *
178 * @returns IPRT status code.
179 * @param a_cbOld The current allocation size.
180 * @param a_pvOld The current allocation.
181 * @param a_cbNew The size of the new allocation.
182 * @param a_ppvNew Where to return the pointer to the new memory.
183 * @param a_fFlags Flags for controlling the allocation. See RTMEMSAFER_ALLOC_EX_FLAGS_* defines,
184 * this takes only effect when allocating completely new memory, for extending or
185 * shrinking existing allocations the flags of the allocation take precedence.
186 */
187#define RTMemSaferReallocZEx(a_cbOld, a_pvOld, a_cbNew, a_ppvNew, a_fFlags) \
188 RTMemSaferReallocZExTag(a_cbOld, a_pvOld, a_cbNew, a_ppvNew, a_fFlags, RTMEM_TAG)
189
190/**
191 * Reallocates memory allocated by RTMemSaferAllocZ or RTMemSaferAllocZTag.
192 *
193 * When extending the allocation, the new memory will be zeroed. When shrinking
194 * the allocation the left over memory will be wiped clean using
195 * RTMemWipeThorougly.
196 *
197 * The function follows the standard realloc behavior.
198 *
199 * @returns Pointer to the allocated memory.
200 * @param cbOld The current allocation size.
201 * @param pvOld The current allocation.
202 * @param cbNew The size of the new allocation.
203 * @param pszTag Allocation tag used for statistics and such.
204 */
205RTDECL(void *) RTMemSaferReallocZTag(size_t cbOld, void *pvOld, size_t cbNew, const char *pszTag) RT_NO_THROW;
206
207/**
208 * Reallocates memory allocated by RTMemSaferAllocZ or RTMemSaferAllocZTag.
209 *
210 * When extending the allocation, the new memory will be zeroed. When shrinking
211 * the allocation the left over memory will be wiped clean using
212 * RTMemWipeThorougly.
213 *
214 * The function follows the standard realloc behavior.
215 *
216 * @returns Pointer to the allocated memory.
217 * @param a_cbOld The current allocation size.
218 * @param a_pvOld The current allocation.
219 * @param a_cbNew The size of the new allocation.
220 */
221#define RTMemSaferReallocZ(a_cbOld, a_pvOld, a_cbNew) RTMemSaferReallocZTag(a_cbOld, a_pvOld, a_cbNew, RTMEM_TAG)
222
223
224/**
225 * Frees memory allocated by RTMemSaferAllocZ* or RTMemSaferReallocZ*.
226 *
227 * Before freeing the allocated memory, it will be wiped clean using
228 * RTMemWipeThorougly.
229 *
230 * @returns Pointer to the allocated memory.
231 * @param pv The allocation.
232 * @param cb The allocation size.
233 */
234RTDECL(void) RTMemSaferFree(void *pv, size_t cb) RT_NO_THROW;
235
236/** @} */
237RT_C_DECLS_END
238
239#endif
240
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette