VirtualBox

source: vbox/trunk/src/VBox/Runtime/r0drv/freebsd/alloc-r0drv-freebsd.c@ 5197

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

Implemented some more FreeBSD ring-0 driver code.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.8 KB
Line 
1/* $Id: alloc-r0drv-freebsd.c 3680 2007-07-18 04:31:28Z vboxsync $ */
2/** @file
3 * innotek Portable Runtime - Memory Allocation, Ring-0 Driver, FreeBSD.
4 */
5
6/*
7 * Copyright (c) 2007 knut st. osmundsen <bird-src-spam@anduin.net>
8 *
9 * Permission is hereby granted, free of charge, to any person
10 * obtaining a copy of this software and associated documentation
11 * files (the "Software"), to deal in the Software without
12 * restriction, including without limitation the rights to use,
13 * copy, modify, merge, publish, distribute, sublicense, and/or sell
14 * copies of the Software, and to permit persons to whom the
15 * Software is furnished to do so, subject to the following
16 * conditions:
17 *
18 * The above copyright notice and this permission notice shall be
19 * included in all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
23 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
25 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
26 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
28 * OTHER DEALINGS IN THE SOFTWARE.
29 */
30
31/*******************************************************************************
32* Header Files *
33*******************************************************************************/
34#include "the-freebsd-kernel.h"
35
36#include <iprt/alloc.h>
37#include <iprt/assert.h>
38#include <iprt/param.h>
39
40#include "r0drv/alloc-r0drv.h"
41
42
43/*******************************************************************************
44* Global Variables *
45*******************************************************************************/
46/* These two statements will define two globals and add initializers
47 and destructors that will be called at load/unload time (I think). */
48MALLOC_DEFINE(M_IPRTHEAP, "iprtheap", "innotek Portable Runtime - heap");
49MALLOC_DEFINE(M_IPRTCONT, "iprtcont", "innotek Portable Runtime - contiguous");
50
51
52PRTMEMHDR rtMemAlloc(size_t cb, uint32_t fFlags)
53{
54 PRTMEMHDR pHdr;
55 Assert(cb != sizeof(void *)); /* 99% of pointer sized allocations are wrong. */
56
57 /** @todo Just like OS/2, FreeBSD doesn't need this header. */
58 pHdr = (PRTMEMHDR)malloc(cb + sizeof(RTMEMHDR), M_IPRTHEAP,
59 fFlags & RTMEMHDR_FLAG_ZEROED ? M_NOWAIT | M_ZERO : M_NOWAIT);
60 if (pHdr)
61 {
62 pHdr->u32Magic = RTMEMHDR_MAGIC;
63 pHdr->fFlags = fFlags;
64 pHdr->cb = cb;
65 pHdr->u32Padding = 0;
66 return pHdr;
67 }
68 return NULL;
69}
70
71
72void rtMemFree(PRTMEMHDR pHdr)
73{
74 pHdr->u32Magic += 1;
75 free(pHdr, M_IPRTHEAP);
76}
77
78
79RTR0DECL(void *) RTMemContAlloc(PRTCCPHYS pPhys, size_t cb)
80{
81 void *pv;
82
83 /*
84 * Validate input.
85 */
86 AssertPtr(pPhys);
87 Assert(cb > 0);
88
89 /*
90 * This API works in pages, so no need to do any size aligning.
91 */
92 pv = contigmalloc(cb, /* size */
93 M_IPRTCONT, /* type */
94 M_NOWAIT | M_ZERO, /* flags */
95 0, /* lowest physical address*/
96 _4G-1, /* highest physical address */
97 PAGE_SIZE, /* alignment. */
98 0); /* boundrary */
99 if (pv)
100 {
101 Assert(!((uintptr_t)pv & PAGE_OFFSET_MASK));
102 *pPhys = vtophys(pv);
103 Assert(!(*pPhys & PAGE_OFFSET_MASK));
104 }
105 return pv;
106}
107
108
109RTR0DECL(void) RTMemContFree(void *pv, size_t cb)
110{
111 if (pv)
112 {
113 AssertMsg(!((uintptr_t)pv & PAGE_OFFSET_MASK), ("pv=%p\n", pv));
114 contigfree(pv, cb, M_IPRTCONT);
115 }
116}
117
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