VirtualBox

source: vbox/trunk/src/VBox/Runtime/r3/darwin/alloc-darwin.cpp@ 2981

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

InnoTek -> innotek: all the headers and comments.

  • Property svn:keywords set to Id
File size: 4.9 KB
Line 
1/* $Id: alloc-darwin.cpp 2981 2007-06-01 16:01:28Z vboxsync $ */
2/** @file
3 * innotek Portable Runtime - Memory Allocation, POSIX.
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 as published by the Free Software Foundation,
13 * in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
14 * distribution. VirtualBox OSE is distributed in the hope that it will
15 * be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * If you received this file as part of a commercial VirtualBox
18 * distribution, then only the terms of your commercial VirtualBox
19 * license agreement apply instead of the previous paragraph.
20 */
21
22
23/*******************************************************************************
24* Header Files *
25*******************************************************************************/
26#include <iprt/alloc.h>
27#include <iprt/assert.h>
28#include <iprt/param.h>
29#include <iprt/err.h>
30#include <iprt/string.h>
31
32#include <stdlib.h>
33#include <errno.h>
34#include <sys/mman.h>
35
36
37#ifdef IN_RING3
38
39/**
40 * Allocates memory which may contain code.
41 *
42 * @returns Pointer to the allocated memory.
43 * @returns NULL on failure.
44 * @param cb Size in bytes of the memory block to allocate.
45 */
46RTDECL(void *) RTMemExecAlloc(size_t cb)
47{
48 /*
49 * Allocate first.
50 */
51 AssertMsg(cb, ("Allocating ZERO bytes is really not a good idea! Good luck with the next assertion!\n"));
52 cb = RT_ALIGN_Z(cb, PAGE_SIZE);
53 void *pv = valloc(cb);
54 AssertMsg(pv, ("posix_memalign(%d) failed!!! errno=%d\n", cb, errno));
55 if (pv)
56 {
57 /*
58 * Add PROT_EXEC flag to the page(s).
59 */
60 memset(pv, 0xcc, cb);
61 int rc = mprotect(pv, cb, PROT_READ | PROT_WRITE | PROT_EXEC);
62 if (rc)
63 {
64 AssertMsgFailed(("mprotect(%p, %#x,,) -> rc=%d, errno=%d\n", pv, cb, rc, errno));
65 free(pv);
66 pv = NULL;
67 }
68 }
69 return pv;
70}
71
72
73/**
74 * Free executable/read/write memory allocated by RTMemExecAlloc().
75 *
76 * @param pv Pointer to memory block.
77 */
78RTDECL(void) RTMemExecFree(void *pv)
79{
80 if (pv)
81 free(pv);
82}
83
84
85/**
86 * Allocate page aligned memory.
87 *
88 * @returns Pointer to the allocated memory.
89 * @returns NULL if we're out of memory.
90 * @param cb Size of the memory block. Will be rounded up to page size.
91 */
92RTDECL(void *) RTMemPageAlloc(size_t cb)
93{
94 return valloc(RT_ALIGN_Z(cb, PAGE_SIZE));
95}
96
97
98/**
99 * Allocate zero'ed page aligned memory.
100 *
101 * @returns Pointer to the allocated memory.
102 * @returns NULL if we're out of memory.
103 * @param cb Size of the memory block. Will be rounded up to page size.
104 */
105RTDECL(void *) RTMemPageAllocZ(size_t cb)
106{
107 cb = RT_ALIGN_Z(cb, PAGE_SIZE);
108 void *pv = valloc(cb);
109 if (pv)
110 bzero(pv, RT_ALIGN_Z(cb, PAGE_SIZE));
111 return pv;
112}
113
114
115/**
116 * Free a memory block allocated with RTMemPageAlloc() or RTMemPageAllocZ().
117 *
118 * @param pv Pointer to the block as it was returned by the allocation function.
119 * NULL will be ignored.
120 */
121RTDECL(void) RTMemPageFree(void *pv)
122{
123 if (pv)
124 free(pv);
125}
126
127
128/**
129 * Change the page level protection of a memory region.
130 *
131 * @returns iprt status code.
132 * @param pv Start of the region. Will be rounded down to nearest page boundary.
133 * @param cb Size of the region. Will be rounded up to the nearest page boundary.
134 * @param fProtect The new protection, a combination of the RTMEM_PROT_* defines.
135 */
136RTDECL(int) RTMemProtect(void *pv, size_t cb, unsigned fProtect)
137{
138 /*
139 * Validate input.
140 */
141 if (cb == 0)
142 {
143 AssertMsgFailed(("!cb\n"));
144 return VERR_INVALID_PARAMETER;
145 }
146 if (fProtect & ~(RTMEM_PROT_NONE | RTMEM_PROT_READ | RTMEM_PROT_WRITE | RTMEM_PROT_EXEC))
147 {
148 AssertMsgFailed(("fProtect=%#x\n", fProtect));
149 return VERR_INVALID_PARAMETER;
150 }
151
152 /*
153 * Convert the flags.
154 */
155 int fProt;
156#if RTMEM_PROT_NONE == PROT_NONE \
157 && RTMEM_PROT_READ == PROT_READ \
158 && RTMEM_PROT_WRITE == PROT_WRITE \
159 && RTMEM_PROT_EXEC == PROT_EXEC
160 fProt = fProtect;
161#else
162 Assert(!RTMEM_PROT_NONE);
163 if (!fProtect)
164 fProt = PROT_NONE;
165 else
166 {
167 fProt = 0;
168 if (fProtect & RTMEM_PROT_READ)
169 fProt |= PROT_READ;
170 if (fProtect & RTMEM_PROT_WRITE)
171 fProt |= PROT_WRITE;
172 if (fProtect & RTMEM_PROT_EXEC)
173 fProt |= PROT_EXEC;
174 }
175#endif
176
177 /*
178 * Align the request.
179 */
180 cb += (uintptr_t)pv & PAGE_OFFSET_MASK;
181 pv = (void *)((uintptr_t)pv & ~PAGE_OFFSET_MASK);
182
183 /*
184 * Change the page attributes.
185 */
186 int rc = mprotect(pv, cb, fProt);
187 if (!rc)
188 return rc;
189 return RTErrConvertFromErrno(errno);
190}
191
192#endif
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