VirtualBox

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

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

rebranding: IPRT files again.

  • Property svn:keywords set to Id
File size: 5.3 KB
Line 
1/* $Id: alloc-darwin.cpp 8245 2008-04-21 17:24:28Z vboxsync $ */
2/** @file
3 * IPRT - Memory Allocation, POSIX.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
27 * Clara, CA 95054 USA or visit http://www.sun.com if you need
28 * additional information or have any questions.
29 */
30
31
32/*******************************************************************************
33* Header Files *
34*******************************************************************************/
35#include <iprt/alloc.h>
36#include <iprt/assert.h>
37#include <iprt/param.h>
38#include <iprt/err.h>
39#include <iprt/string.h>
40
41#include <stdlib.h>
42#include <errno.h>
43#include <sys/mman.h>
44
45
46#ifdef IN_RING3
47
48/**
49 * Allocates memory which may contain code.
50 *
51 * @returns Pointer to the allocated memory.
52 * @returns NULL on failure.
53 * @param cb Size in bytes of the memory block to allocate.
54 */
55RTDECL(void *) RTMemExecAlloc(size_t cb)
56{
57 /*
58 * Allocate first.
59 */
60 AssertMsg(cb, ("Allocating ZERO bytes is really not a good idea! Good luck with the next assertion!\n"));
61 cb = RT_ALIGN_Z(cb, PAGE_SIZE);
62 void *pv = valloc(cb);
63 AssertMsg(pv, ("posix_memalign(%d) failed!!! errno=%d\n", cb, errno));
64 if (pv)
65 {
66 /*
67 * Add PROT_EXEC flag to the page(s).
68 */
69 memset(pv, 0xcc, cb);
70 int rc = mprotect(pv, cb, PROT_READ | PROT_WRITE | PROT_EXEC);
71 if (rc)
72 {
73 AssertMsgFailed(("mprotect(%p, %#x,,) -> rc=%d, errno=%d\n", pv, cb, rc, errno));
74 free(pv);
75 pv = NULL;
76 }
77 }
78 return pv;
79}
80
81
82/**
83 * Free executable/read/write memory allocated by RTMemExecAlloc().
84 *
85 * @param pv Pointer to memory block.
86 */
87RTDECL(void) RTMemExecFree(void *pv)
88{
89 if (pv)
90 free(pv);
91}
92
93
94/**
95 * Allocate page aligned memory.
96 *
97 * @returns Pointer to the allocated memory.
98 * @returns NULL if we're out of memory.
99 * @param cb Size of the memory block. Will be rounded up to page size.
100 */
101RTDECL(void *) RTMemPageAlloc(size_t cb)
102{
103 return valloc(RT_ALIGN_Z(cb, PAGE_SIZE));
104}
105
106
107/**
108 * Allocate zero'ed page aligned memory.
109 *
110 * @returns Pointer to the allocated memory.
111 * @returns NULL if we're out of memory.
112 * @param cb Size of the memory block. Will be rounded up to page size.
113 */
114RTDECL(void *) RTMemPageAllocZ(size_t cb)
115{
116 cb = RT_ALIGN_Z(cb, PAGE_SIZE);
117 void *pv = valloc(cb);
118 if (pv)
119 bzero(pv, RT_ALIGN_Z(cb, PAGE_SIZE));
120 return pv;
121}
122
123
124/**
125 * Free a memory block allocated with RTMemPageAlloc() or RTMemPageAllocZ().
126 *
127 * @param pv Pointer to the block as it was returned by the allocation function.
128 * NULL will be ignored.
129 */
130RTDECL(void) RTMemPageFree(void *pv)
131{
132 if (pv)
133 free(pv);
134}
135
136
137/**
138 * Change the page level protection of a memory region.
139 *
140 * @returns iprt status code.
141 * @param pv Start of the region. Will be rounded down to nearest page boundary.
142 * @param cb Size of the region. Will be rounded up to the nearest page boundary.
143 * @param fProtect The new protection, a combination of the RTMEM_PROT_* defines.
144 */
145RTDECL(int) RTMemProtect(void *pv, size_t cb, unsigned fProtect)
146{
147 /*
148 * Validate input.
149 */
150 if (cb == 0)
151 {
152 AssertMsgFailed(("!cb\n"));
153 return VERR_INVALID_PARAMETER;
154 }
155 if (fProtect & ~(RTMEM_PROT_NONE | RTMEM_PROT_READ | RTMEM_PROT_WRITE | RTMEM_PROT_EXEC))
156 {
157 AssertMsgFailed(("fProtect=%#x\n", fProtect));
158 return VERR_INVALID_PARAMETER;
159 }
160
161 /*
162 * Convert the flags.
163 */
164 int fProt;
165#if RTMEM_PROT_NONE == PROT_NONE \
166 && RTMEM_PROT_READ == PROT_READ \
167 && RTMEM_PROT_WRITE == PROT_WRITE \
168 && RTMEM_PROT_EXEC == PROT_EXEC
169 fProt = fProtect;
170#else
171 Assert(!RTMEM_PROT_NONE);
172 if (!fProtect)
173 fProt = PROT_NONE;
174 else
175 {
176 fProt = 0;
177 if (fProtect & RTMEM_PROT_READ)
178 fProt |= PROT_READ;
179 if (fProtect & RTMEM_PROT_WRITE)
180 fProt |= PROT_WRITE;
181 if (fProtect & RTMEM_PROT_EXEC)
182 fProt |= PROT_EXEC;
183 }
184#endif
185
186 /*
187 * Align the request.
188 */
189 cb += (uintptr_t)pv & PAGE_OFFSET_MASK;
190 pv = (void *)((uintptr_t)pv & ~PAGE_OFFSET_MASK);
191
192 /*
193 * Change the page attributes.
194 */
195 int rc = mprotect(pv, cb, fProt);
196 if (!rc)
197 return rc;
198 return RTErrConvertFromErrno(errno);
199}
200
201#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