VirtualBox

source: vbox/trunk/src/VBox/Runtime/r3/alloc-ef.h@ 5999

Last change on this file since 5999 was 5999, checked in by vboxsync, 17 years ago

The Giant CDDL Dual-License Header Change.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 5.6 KB
Line 
1/* $Id: alloc-ef.h 5999 2007-12-07 15:05:06Z vboxsync $ */
2/** @file
3 * innotek Portable Runtime - Memory Allocation, electric fence.
4 */
5
6/*
7 * Copyright (C) 2006-2007 innotek GmbH
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#ifndef ___alloc_ef_h
28#define ___alloc_ef_h
29
30/*******************************************************************************
31* Defined Constants And Macros *
32*******************************************************************************/
33#if defined(__DOXYGEN__)
34# define RTALLOC_USE_EFENCE
35# define RTALLOC_EFENCE_IN_FRONT
36# define RTALLOC_EFENCE_FREE_FILL 'f'
37#endif
38
39/** @def RTALLOC_USE_EFENCE
40 * If defined the electric fence put up for ALL allocations by RTMemAlloc(),
41 * RTMemAllocZ(), RTMemRealloc(), RTMemTmpAlloc() and RTMemTmpAllocZ().
42 */
43#if 0// defined(DEBUG_bird)
44# define RTALLOC_USE_EFENCE
45#endif
46
47/** @def RTALLOC_EFENCE_SIZE
48 * The size of the fence. This must be page aligned.
49 */
50#define RTALLOC_EFENCE_SIZE PAGE_SIZE
51
52/** @def RTALLOC_EFENCE_IN_FRONT
53 * Define this to put the fence up in front of the block.
54 * The default (when this isn't defined) is to up it up after the block.
55 */
56//# define RTALLOC_EFENCE_IN_FRONT
57
58/** @def RTALLOC_EFENCE_TRACE
59 * Define this to support actual free and reallocation of blocks.
60 */
61#define RTALLOC_EFENCE_TRACE
62
63/** @def RTALLOC_EFENCE_FREE_DELAYED
64 * This define will enable free() delay and protection of the freed data
65 * while it's being delayed. The value of RTALLOC_EFENCE_FREE_DELAYED defines
66 * the threshold of the delayed blocks.
67 * Delayed blocks does not consume any physical memory, only virtual address space.
68 * Requires RTALLOC_EFENCE_TRACE.
69 */
70#define RTALLOC_EFENCE_FREE_DELAYED (20 * _1M)
71
72/** @def RTALLOC_EFENCE_FREE_FILL
73 * This define will enable memset(,RTALLOC_EFENCE_FREE_FILL,)'ing the user memory
74 * in the block before freeing/decommitting it. This is useful in GDB since GDB
75 * appeares to be able to read the content of the page even after it's been
76 * decommitted.
77 * Requires RTALLOC_EFENCE_TRACE.
78 */
79#if defined(RT_OS_LINUX)
80# define RTALLOC_EFENCE_FREE_FILL 'f'
81#endif
82
83/** @def RTALLOC_EFENCE_FILLER
84 * This define will enable memset(,RTALLOC_EFENCE_FILLER,)'ing the allocated
85 * memory when the API doesn't require it to be zero'ed.
86 */
87#define RTALLOC_EFENCE_FILLER 0xef
88
89#if defined(__DOXYGEN__)
90/** @def RTALLOC_EFENCE_CPP
91 * This define will enable the new and delete wrappers.
92 */
93# define RTALLOC_EFENCE_CPP
94#endif
95
96
97
98/*******************************************************************************
99* Header Files *
100*******************************************************************************/
101#ifdef RT_OS_WINDOWS
102# include <Windows.h>
103#else
104# include <sys/mman.h>
105#endif
106#include <iprt/avl.h>
107#include <iprt/thread.h>
108
109
110/*******************************************************************************
111* Structures and Typedefs *
112*******************************************************************************/
113/**
114 * Allocation types.
115 */
116typedef enum RTMEMTYPE
117{
118 RTMEMTYPE_RTMEMALLOC,
119 RTMEMTYPE_RTMEMALLOCZ,
120 RTMEMTYPE_RTMEMREALLOC,
121 RTMEMTYPE_RTMEMFREE,
122
123 RTMEMTYPE_NEW,
124 RTMEMTYPE_NEW_ARRAY,
125 RTMEMTYPE_DELETE,
126 RTMEMTYPE_DELETE_ARRAY
127} RTMEMTYPE;
128
129#ifdef RTALLOC_EFENCE_TRACE
130/**
131 * Node tracking a memory allocation.
132 */
133typedef struct RTMEMBLOCK
134{
135 /** Avl node code, key is the user block pointer. */
136 AVLPVNODECORE Core;
137 /** Allocation type. */
138 RTMEMTYPE enmType;
139 /** The size of the block. */
140 size_t cb;
141 /** The return address of the allocator function. */
142 void *pvCaller;
143 /** Line number of the alloc call. */
144 unsigned iLine;
145 /** File from within the allocation was made. */
146 const char *pszFile;
147 /** Function from within the allocation was made. */
148 const char *pszFunction;
149} RTMEMBLOCK, *PRTMEMBLOCK;
150
151#endif
152
153
154/*******************************************************************************
155* Internal Functions *
156*******************************************************************************/
157__BEGIN_DECLS
158RTDECL(void *) rtMemAlloc(const char *pszOp, RTMEMTYPE enmType, size_t cb, void *pvCaller, unsigned iLine, const char *pszFile, const char *pszFunction);
159RTDECL(void *) rtMemRealloc(const char *pszOp, RTMEMTYPE enmType, void *pvOld, size_t cbNew, void *pvCaller, unsigned iLine, const char *pszFile, const char *pszFunction);
160RTDECL(void) rtMemFree(const char *pszOp, RTMEMTYPE enmType, void *pv, void *pvCaller, unsigned iLine, const char *pszFile, const char *pszFunction);
161__END_DECLS
162
163#endif
164
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