summaryrefslogtreecommitdiff
path: root/src/pal/src/memory/heap.cpp
blob: 1ad56762291e69bb3d3f5c46b38c510eecc9b5f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information. 
//

/*++



Module Name:

    heap.c

Abstract:

    Implementation of heap memory management functions.

Revision History:



--*/

#include "pal/palinternal.h"
#include "pal/dbgmsg.h"
#include "pal/handlemgr.hpp"
#include "pal/corunix.hpp"
#include <errno.h>

using namespace CorUnix;

SET_DEFAULT_DEBUG_CHANNEL(MEM);

// In safemath.h, Template SafeInt uses macro _ASSERTE, which need to use variable
// defdbgchan defined by SET_DEFAULT_DEBUG_CHANNEL. Therefore, the include statement
// should be placed after the SET_DEFAULT_DEBUG_CHANNEL(MEM)
#include <safemath.h>

#define HEAP_MAGIC 0xEAFDC9BB
#ifndef __APPLE__
#define DUMMY_HEAP 0x01020304
#endif // __APPLE__


#ifdef __APPLE__
#define CACHE_HEAP_ZONE
#endif // __APPLE__

#ifdef CACHE_HEAP_ZONE
/* This is a kludge.
 *
 * We need to know whether an instruction pointer fault is in our executable
 * heap, but the intersection between the HeapX functions on Windows and the
 * malloc_zone functions on Mac OS X are somewhat at odds and we'd have to 
 * implement an unnecessarily complicated HeapWalk. Instead, we cache the only
 * "heap" we create, knowing it's the executable heap, and use that instead
 * with the much simpler malloc_zone_from_ptr.
 */
extern malloc_zone_t *s_pExecutableHeap;
malloc_zone_t *s_pExecutableHeap = NULL;
#endif // CACHE_HEAP_ZONE

/*++
Function:
  RtlMoveMemory

See MSDN doc.
--*/
VOID
PALAPI
RtlMoveMemory(
          IN PVOID Destination,
          IN CONST VOID *Source,
          IN SIZE_T Length)
{
    PERF_ENTRY(RtlMoveMemory);
    ENTRY("RtlMoveMemory(Destination:%p, Source:%p, Length:%d)\n", 
          Destination, Source, Length);
    
    memmove(Destination, Source, Length);
    
    LOGEXIT("RtlMoveMemory returning\n");
    PERF_EXIT(RtlMoveMemory);
}

/*++
Function:
  RtlZeroMemory

See MSDN doc.
--*/
VOID
PALAPI
RtlZeroMemory(
    PVOID Destination,
    SIZE_T Length
)
{
    PERF_ENTRY(RtlZeroMemory);
    ENTRY("RtlZeroMemory(Destination:%p, Length:%x)\n", Destination, Length);
    
    memset(Destination, 0, Length);
    
    LOGEXIT("RtlZeroMemory returning.\n");
    PERF_EXIT(RtlZeroMemory);
}

#ifdef __APPLE__
/*++
Function:
  HeapCreate

See MSDN doc.
--*/
HANDLE
PALAPI
HeapCreate(
	       IN DWORD flOptions,
	       IN SIZE_T dwInitialSize,
	       IN SIZE_T dwMaximumSize)
{
    HANDLE ret = INVALID_HANDLE_VALUE;

    PERF_ENTRY(HeapCreate);
    ENTRY("HeapCreate(flOptions=%#x, dwInitialSize=%u, dwMaximumSize=%u)\n",
        flOptions, dwInitialSize, dwMaximumSize);
        
    if ((flOptions & 0x40005) != 0)
    {
        ERROR("Invalid flOptions\n");
        SetLastError(ERROR_INVALID_PARAMETER);
    }
    else if (flOptions != 0)
    {
        ERROR("No support for flOptions\n");
        SetLastError(ERROR_INVALID_PARAMETER);
    }
    else if (dwMaximumSize)
    {
        ERROR("Zone implementation does not support a max size\n");
        SetLastError(ERROR_INVALID_PARAMETER);
    }
    else
    {
        malloc_zone_t *pZone = malloc_create_zone(dwInitialSize, 0 /* flags */);
        ret = (HANDLE)pZone;
#ifdef CACHE_HEAP_ZONE
        _ASSERT_MSG(s_pExecutableHeap == NULL, "PAL currently only handles the creation of one executable heap.");
        s_pExecutableHeap = pZone;
        TRACE("s_pExecutableHeap is %p.\n", s_pExecutableHeap);
#endif // CACHE_HEAP_ZONE
    }
    
    LOGEXIT("HeapCreate returning HANDLE %p\n", ret);
    PERF_EXIT(HeapCreate);
    return ret;
}
#endif // __APPLE__


/*++
Function:
  GetProcessHeap

See MSDN doc.
--*/
HANDLE
PALAPI
GetProcessHeap(
	       VOID)
{
    HANDLE ret;

    PERF_ENTRY(GetProcessHeap);
    ENTRY("GetProcessHeap()\n");

#ifdef __APPLE__
#if HEAP_HANDLES_ARE_REAL_HANDLES
#error
#else
    ret = (HANDLE) malloc_default_zone();
#endif // HEAP_HANDLES_ARE_REAL_HANDLES
#else
    ret = (HANDLE) DUMMY_HEAP;
#endif
  
    LOGEXIT("GetProcessHeap returning HANDLE %p\n", ret);
    PERF_EXIT(GetProcessHeap);
    return ret;
}

/*++
Function:
  HeapAlloc

Abstract
  Implemented as wrapper over malloc

See MSDN doc.
--*/
LPVOID
PALAPI
HeapAlloc(
	  IN HANDLE hHeap,
	  IN DWORD dwFlags,
	  IN SIZE_T dwBytes)
{
    BYTE *pMem;
    int nSize = 0;

    PERF_ENTRY(HeapAlloc);
    ENTRY("HeapAlloc (hHeap=%p, dwFlags=%#x, dwBytes=%u)\n",
          hHeap, dwFlags, dwBytes);

    nSize =  max(sizeof(void*),sizeof(double));

#ifdef __APPLE__
    if (hHeap == NULL)
#else // __APPLE__
    if (hHeap != (HANDLE) DUMMY_HEAP)
#endif // __APPLE__ else
    {
        ERROR("Invalid heap handle\n");
        SetLastError(ERROR_INVALID_PARAMETER);
        LOGEXIT("HeapAlloc returning NULL\n");
        PERF_EXIT(HeapAlloc);
        return NULL;
    }

    if ((dwFlags != 0) && (dwFlags != HEAP_ZERO_MEMORY))
    {
        ASSERT("Invalid parameter dwFlags=%#x\n", dwFlags);
        SetLastError(ERROR_INVALID_PARAMETER);
        LOGEXIT("HeapAlloc returning NULL\n");
        PERF_EXIT(HeapAlloc);
        return NULL;
    }

    
    size_t fullsize;
    if (!ClrSafeInt<size_t>::addition(dwBytes,nSize,fullsize))
    {
        ERROR("Integer Overflow\n");
        SetLastError(ERROR_ARITHMETIC_OVERFLOW);
        LOGEXIT("HeapAlloc returning NULL\n");
        PERF_EXIT(HeapAlloc);
        return NULL;
    }
#ifdef __APPLE__
    // This is patterned off of InternalMalloc in malloc.cpp.
    {
        CPalThread *pthrCurrent = InternalGetCurrentThread();
        pthrCurrent->suspensionInfo.EnterUnsafeRegion();
        pMem = (BYTE *)malloc_zone_malloc((malloc_zone_t *)hHeap, fullsize);
        pthrCurrent->suspensionInfo.LeaveUnsafeRegion();
    }
#else // __APPLE__
    pMem = (BYTE *) PAL_malloc(fullsize);
#endif // __APPLE__ else

    if (pMem == NULL)
    {
        ERROR("Not enough memory\n");
        SetLastError(ERROR_NOT_ENOUGH_MEMORY);
        LOGEXIT("HeapAlloc returning NULL\n");
        PERF_EXIT(HeapAlloc);
        return NULL;
    }

    /* use a magic number, to know it has been allocated with HeapAlloc
       when doing HeapFree */
    *((DWORD *) pMem) = HEAP_MAGIC;

    /*If the Heap Zero memory flag is set initialize to zero*/
    if (dwFlags == HEAP_ZERO_MEMORY)
    {
        memset(pMem+nSize, 0, dwBytes);
    }
    LOGEXIT("HeapAlloc returning LPVOID %p\n", pMem+nSize);
    PERF_EXIT(HeapAlloc);
    return (pMem + nSize);
}


/*++
Function:
  HeapFree

Abstract
  Implemented as wrapper over free

See MSDN doc.
--*/
BOOL
PALAPI
HeapFree(
	 IN HANDLE hHeap,
	 IN DWORD dwFlags,
	 IN LPVOID lpMem)
{
    int nSize =0;
    BOOL bRetVal = FALSE;

    PERF_ENTRY(HeapFree);
    ENTRY("HeapFree (hHeap=%p, dwFlags = %#x, lpMem=%p)\n", 
          hHeap, dwFlags, lpMem);

    nSize =  max(sizeof(void*),sizeof(double));

#ifdef __APPLE__
    if (hHeap == NULL)
#else // __APPLE__
    if (hHeap != (HANDLE) DUMMY_HEAP)
#endif // __APPLE__ else
    {
        ERROR("Invalid heap handle\n");
        SetLastError(ERROR_INVALID_PARAMETER);
        goto done;
    }

    if (dwFlags != 0)
    {
        ASSERT("Invalid parameter dwFlags=%#x\n", dwFlags);
        SetLastError(ERROR_INVALID_PARAMETER);
        goto done;
    }

    if ( !lpMem )
    {
        bRetVal = TRUE;
        goto done;
    }
    /*nSize + nMemAlloc is the size of Magic Number plus
     *size of the int to store value of Memory allocated */
	lpMem = static_cast<LPVOID>(static_cast<LPBYTE>(lpMem) - nSize);
    
    /* check if the memory has been allocated by HeapAlloc */
    if (*((DWORD *) lpMem) != HEAP_MAGIC)
    {
        ERROR("Pointer hasn't been allocated with HeapAlloc (%p)\n",
            static_cast<LPBYTE>(lpMem) + nSize);
        SetLastError(ERROR_INVALID_PARAMETER);
        goto done;
    }
    *((DWORD *) lpMem) = 0;

    bRetVal = TRUE;
#ifdef __APPLE__
    // This is patterned off of InternalFree in malloc.cpp.
    {
        CPalThread *pthrCurrent = InternalGetCurrentThread();
        pthrCurrent->suspensionInfo.EnterUnsafeRegion();
        malloc_zone_free((malloc_zone_t *)hHeap, lpMem);
        pthrCurrent->suspensionInfo.LeaveUnsafeRegion();
    }
#else // __APPLE__
    PAL_free (lpMem);
#endif // __APPLE__ else

done:
    LOGEXIT( "HeapFree returning BOOL %d\n", bRetVal );
    PERF_EXIT(HeapFree);
    return bRetVal;
}




/*++
Function:
  HeapReAlloc

Abstract
  Implemented as wrapper over realloc

See MSDN doc.
--*/
LPVOID
PALAPI
HeapReAlloc(
	  IN HANDLE hHeap,
	  IN DWORD dwFlags,
	  IN LPVOID lpmem,
	  IN SIZE_T dwBytes)
{
    BYTE *pMem = NULL;
    int nSize = 0;

    PERF_ENTRY(HeapReAlloc);
    ENTRY("HeapReAlloc (hHeap=%p, dwFlags=%#x, lpmem=%p, dwBytes=%u)\n",
          hHeap, dwFlags, lpmem, dwBytes);

    nSize =  max(sizeof(void*),sizeof(double));

#ifdef __APPLE__
    if (hHeap == NULL)
#else // __APPLE__
    if (hHeap != (HANDLE) DUMMY_HEAP)
#endif // __APPLE__ else
    {
        ASSERT("Invalid heap handle\n");
        SetLastError(ERROR_INVALID_HANDLE);
        goto done;
    }

    if ((dwFlags != 0))
    {
        ASSERT("Invalid parameter dwFlags=%#x\n", dwFlags);
        SetLastError(ERROR_INVALID_PARAMETER);
        goto done;
    }

    if (lpmem == NULL)
    {
        WARN("NULL memory pointer to realloc. Do not do anything.\n");
        /* set LastError back to zero. this appears to be an undocumented
        behavior in Windows, in doesn't cost much to match it */
        SetLastError(0);
        goto done;
    }

   /*nSize + nMemAlloc is the size of Magic Number plus
     *size of the int to store value of Memory allocated */
   lpmem = static_cast<LPVOID>(static_cast<LPBYTE>(lpmem) - nSize);

    /* check if the memory has been allocated by HeapAlloc */
    if (*((DWORD *) lpmem) != HEAP_MAGIC)
    {
        ERROR("Pointer hasn't been allocated with HeapAlloc (%p)\n",
            static_cast<LPBYTE>(lpmem) + nSize);
        SetLastError(ERROR_INVALID_PARAMETER);
        goto done;
    }


    size_t fullsize;
    if (!ClrSafeInt<size_t>::addition(dwBytes,nSize,fullsize))
    {
        ERROR("Integer Overflow\n");
        SetLastError(ERROR_ARITHMETIC_OVERFLOW);
        goto done;
    }

#ifdef __APPLE__
    // This is patterned off of InternalRealloc in malloc.cpp.
    {
        CPalThread *pthrCurrent = InternalGetCurrentThread();
        pthrCurrent->suspensionInfo.EnterUnsafeRegion();
        malloc_zone_realloc((malloc_zone_t *)hHeap, lpmem, fullsize);
        pthrCurrent->suspensionInfo.LeaveUnsafeRegion();
    }
#else // __APPLE__
    pMem = (BYTE *) PAL_realloc(lpmem,fullsize);
#endif // __APPLE__ else

    if (pMem == NULL)
    {
        ERROR("Not enough memory\n");
        SetLastError(ERROR_NOT_ENOUGH_MEMORY);
        goto done;
    }

    /* use a magic number, to know it has been allocated with HeapAlloc
       when doing HeapFree */
    *((DWORD *) pMem) = HEAP_MAGIC;

done:
    LOGEXIT("HeapReAlloc returns LPVOID %p\n", pMem ? (pMem+nSize) : pMem);
    PERF_EXIT(HeapReAlloc);
    return pMem ? (pMem+nSize) : pMem;
}

BOOL
PALAPI
HeapSetInformation(
        IN OPTIONAL HANDLE HeapHandle,
        IN HEAP_INFORMATION_CLASS HeapInformationClass,
        IN PVOID HeapInformation,
        IN SIZE_T HeapInformationLength)
{
    return TRUE;
}