VirtualBox

source: vbox/trunk/src/VBox/Runtime/testcase/tstRTMemSafer.cpp@ 82968

Last change on this file since 82968 was 82968, checked in by vboxsync, 5 years ago

Copyright year updates by scm.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.2 KB
Line 
1/* $Id: tstRTMemSafer.cpp 82968 2020-02-04 10:35:17Z vboxsync $ */
2/** @file
3 * IPRT Testcase - RTMemSafer* functions.
4 */
5
6/*
7 * Copyright (C) 2012-2020 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27
28/*********************************************************************************************************************************
29* Header Files *
30*********************************************************************************************************************************/
31#include <iprt/memsafer.h>
32
33#include <iprt/asm.h>
34#include <iprt/param.h>
35#include <iprt/rand.h>
36#include <iprt/string.h>
37#include <iprt/test.h>
38#if defined(VBOX) && (defined(RT_ARCH_X86) || defined(RT_ARCH_AMD64))
39# include <VBox/sup.h>
40#endif
41
42
43
44static void doMemSaferScramble(RTTEST hTest, void *pvBuf, size_t cbAlloc)
45{
46 RT_NOREF_PV(hTest);
47
48 /*
49 * Fill it with random bytes and make a reference copy of these.
50 */
51 RTRandBytes(pvBuf, cbAlloc);
52
53 void *pvRef = RTMemDup(pvBuf, cbAlloc);
54 RTTESTI_CHECK_RETV(pvRef);
55
56 /*
57 * Scramble the allocation and check that it no longer matches the refernece bytes.
58 */
59 int rc = RTMemSaferScramble(pvBuf, cbAlloc);
60 if (RT_SUCCESS(rc))
61 {
62 if (!memcmp(pvRef, pvBuf, cbAlloc))
63 RTTestIFailed("Memory blocks must differ (%z bytes, 0x%p vs. 0x%p)!\n",
64 cbAlloc, pvRef, pvBuf);
65 else
66 {
67 /*
68 * Check that unscrambling returns the original content.
69 */
70 rc = RTMemSaferUnscramble(pvBuf, cbAlloc);
71 if (RT_SUCCESS(rc))
72 {
73 if (memcmp(pvRef, pvBuf, cbAlloc))
74 RTTestIFailed("Memory blocks must not differ (%z bytes, 0x%p vs. 0x%p)!\n",
75 cbAlloc, pvRef, pvBuf);
76 }
77 else
78 RTTestIFailed("Unscrambling %z bytes failed with %Rrc!\n", cbAlloc, rc);
79 }
80 }
81 else
82 RTTestIFailed("Scrambling %z bytes failed with %Rrc!\n", cbAlloc, rc);
83
84 RTMemFree(pvRef);
85}
86
87
88static void doMemSaferAllocation(RTTEST hTest)
89{
90 size_t cbAlloc = RTRandS32Ex(1, _1M) * sizeof(uint8_t);
91
92 void *pvBuf = NULL;
93 int rc = RTMemSaferAllocZEx(&pvBuf, cbAlloc, 0);
94 if (RT_SUCCESS(rc))
95 {
96 /* Fill it with random bytes. */
97 RTRandBytes(pvBuf, cbAlloc);
98
99 /* Scrambling test */
100 doMemSaferScramble(hTest, pvBuf, cbAlloc);
101
102 RTMemSaferFree(pvBuf, cbAlloc);
103 }
104 else
105 RTTestIFailed("Allocating %z bytes of secure memory failed with %Rrc\n", cbAlloc, rc);
106}
107
108
109static void doMemRealloc(RTTEST hTest)
110{
111 RTTestPrintf(hTest, RTTESTLVL_ALWAYS, "%u reallocation, grow by 1 bytes\n", PAGE_SIZE * 2);
112 size_t cbAlloc = RTRandS32Ex(1, _16K);
113 void *pvBuf = NULL;
114 RTTESTI_CHECK_RC_OK_RETV(RTMemSaferAllocZEx(&pvBuf, cbAlloc, 0));
115 for (uint32_t i = 0; i <= PAGE_SIZE * 2; i++)
116 {
117 cbAlloc += 1;
118 RTTESTI_CHECK_RC_OK_RETV(RTMemSaferReallocZEx(cbAlloc - 1, pvBuf, cbAlloc, &pvBuf, 0));
119 memset(pvBuf, i & 0x7f, cbAlloc);
120 }
121 RTMemSaferFree(pvBuf, cbAlloc);
122
123
124 RTTestPrintf(hTest, RTTESTLVL_ALWAYS, "100 random reallocations\n");
125 uint8_t chFiller = 0x42;
126 cbAlloc = 0;
127 pvBuf = NULL;
128 for (uint32_t i = 1; i <= 100; i++)
129 {
130 uint32_t cbNew = RTRandS32Ex(1, _16K + (i / 4) * _16K);
131 RTTESTI_CHECK_RC_OK_RETV(RTMemSaferReallocZEx(cbAlloc, pvBuf, cbNew, &pvBuf, 0));
132
133 RTTESTI_CHECK(ASMMemIsAllU8(pvBuf, RT_MIN(cbAlloc, cbNew), chFiller));
134
135 chFiller += 0x31;
136 memset(pvBuf, chFiller, cbNew);
137 cbAlloc = cbNew;
138 }
139 RTTESTI_CHECK_RC_OK_RETV(RTMemSaferReallocZEx(cbAlloc, pvBuf, 0, &pvBuf, 0));
140 RTTESTI_CHECK(pvBuf == NULL);
141}
142
143
144int main()
145{
146 RTTEST hTest;
147 RTEXITCODE rcExit = RTTestInitAndCreate("tstRTMemSafer", &hTest);
148 if (rcExit != RTEXITCODE_SUCCESS)
149 return rcExit;
150 RTTestBanner(hTest);
151#if defined(VBOX) && (defined(RT_ARCH_X86) || defined(RT_ARCH_AMD64))
152 SUPR3Init(NULL);
153#endif
154
155 /*
156 * Not using sub-tests here, just printing progress.
157 */
158 RTTestPrintf(hTest, RTTESTLVL_ALWAYS, "20 random allocations\n");
159 for (uint32_t i = 0; i < 20; i++)
160 doMemSaferAllocation(hTest);
161
162 doMemRealloc(hTest);
163
164 return RTTestSummaryAndDestroy(hTest);
165}
166
Note: See TracBrowser for help on using the repository browser.

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