VirtualBox

source: vbox/trunk/src/VBox/Runtime/r3/solaris/alloc-solaris.cpp@ 29004

Last change on this file since 29004 was 28800, checked in by vboxsync, 15 years ago

Automated rebranding to Oracle copyright/license strings via filemuncher

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

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