VirtualBox

source: vbox/trunk/src/VBox/VMM/DBGFAddr.cpp@ 16560

Last change on this file since 16560 was 13816, checked in by vboxsync, 16 years ago

VMM: VBOX_SUCCESS -> RT_SUCCESS, VBOX_FAILURE -> RT_FAILURE.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 4.9 KB
Line 
1/* $Id: DBGFAddr.cpp 13816 2008-11-04 22:52:12Z vboxsync $ */
2/** @file
3 * DBGF - Debugger Facility, Mixed Address Methods.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22
23/*******************************************************************************
24* Header Files *
25*******************************************************************************/
26#define LOG_GROUP LOG_GROUP_DBGF
27#include <VBox/dbgf.h>
28#include <VBox/selm.h>
29#include "DBGFInternal.h"
30#include <VBox/vm.h>
31#include <VBox/mm.h>
32#include <VBox/err.h>
33#include <VBox/log.h>
34
35
36
37/**
38 * Checks if an address is in the HMA or not.
39 * @returns true if it's inside the HMA.
40 * @returns flase if it's not inside the HMA.
41 * @param pVM The VM handle.
42 * @param FlatPtr The address in question.
43 */
44DECLINLINE(bool) dbgfR3IsHMA(PVM pVM, RTGCUINTPTR FlatPtr)
45{
46 return MMHyperIsInsideArea(pVM, FlatPtr);
47}
48
49
50/**
51 * Creates a mixed address from a Sel:off pair.
52 *
53 * @returns VBox status code.
54 * @param pVM The VM handle.
55 * @param pAddress Where to store the mixed address.
56 * @param Sel The selector part.
57 * @param off The offset part.
58 */
59VMMR3DECL(int) DBGFR3AddrFromSelOff(PVM pVM, PDBGFADDRESS pAddress, RTSEL Sel, RTUINTPTR off)
60{
61 pAddress->Sel = Sel;
62 pAddress->off = off;
63 if (Sel != DBGF_SEL_FLAT)
64 {
65 SELMSELINFO SelInfo;
66 int rc = SELMR3GetSelectorInfo(pVM, Sel, &SelInfo);
67 if (RT_FAILURE(rc))
68 return rc;
69
70 /* check limit. */
71 if (SELMSelInfoIsExpandDown(&SelInfo))
72 {
73 if ( !SelInfo.Raw.Gen.u1Granularity
74 && off > UINT32_C(0xffff))
75 return VERR_OUT_OF_SELECTOR_BOUNDS;
76 if (off <= SelInfo.cbLimit)
77 return VERR_OUT_OF_SELECTOR_BOUNDS;
78 }
79 else if (off > SelInfo.cbLimit)
80 return VERR_OUT_OF_SELECTOR_BOUNDS;
81
82 pAddress->FlatPtr = SelInfo.GCPtrBase + off;
83 /** @todo fix this flat selector test! */
84 if ( !SelInfo.GCPtrBase
85 && SelInfo.Raw.Gen.u1Granularity
86 && SelInfo.Raw.Gen.u1DefBig)
87 pAddress->fFlags = DBGFADDRESS_FLAGS_FLAT;
88 else if (SelInfo.cbLimit <= UINT32_C(0xffff))
89 pAddress->fFlags = DBGFADDRESS_FLAGS_FAR16;
90 else if (SelInfo.cbLimit <= UINT32_C(0xffffffff))
91 pAddress->fFlags = DBGFADDRESS_FLAGS_FAR32;
92 else
93 pAddress->fFlags = DBGFADDRESS_FLAGS_FAR64;
94 }
95 else
96 {
97 pAddress->FlatPtr = off;
98 pAddress->fFlags = DBGFADDRESS_FLAGS_FLAT;
99 }
100 pAddress->fFlags |= DBGFADDRESS_FLAGS_VALID;
101 if (dbgfR3IsHMA(pVM, pAddress->FlatPtr))
102 pAddress->fFlags |= DBGFADDRESS_FLAGS_HMA;
103
104 return VINF_SUCCESS;
105}
106
107
108/**
109 * Creates a mixed address from a flat address.
110 *
111 * @param pVM The VM handle.
112 * @param pAddress Where to store the mixed address.
113 * @param FlatPtr The flat pointer.
114 */
115VMMR3DECL(PDBGFADDRESS) DBGFR3AddrFromFlat(PVM pVM, PDBGFADDRESS pAddress, RTGCUINTPTR FlatPtr)
116{
117 pAddress->Sel = DBGF_SEL_FLAT;
118 pAddress->off = FlatPtr;
119 pAddress->FlatPtr = FlatPtr;
120 pAddress->fFlags = DBGFADDRESS_FLAGS_FLAT | DBGFADDRESS_FLAGS_VALID;
121 if (dbgfR3IsHMA(pVM, pAddress->FlatPtr))
122 pAddress->fFlags |= DBGFADDRESS_FLAGS_HMA;
123 return pAddress;
124}
125
126
127/**
128 * Creates a mixed address from a guest physical address.
129 *
130 * @param pVM The VM handle.
131 * @param pAddress Where to store the mixed address.
132 * @param PhysAddr The guest physical address.
133 */
134VMMR3DECL(void) DBGFR3AddrFromPhys(PVM pVM, PDBGFADDRESS pAddress, RTGCPHYS PhysAddr)
135{
136 pAddress->Sel = DBGF_SEL_FLAT;
137 pAddress->off = PhysAddr;
138 pAddress->FlatPtr = PhysAddr;
139 pAddress->fFlags = DBGFADDRESS_FLAGS_PHYS | DBGFADDRESS_FLAGS_VALID;
140}
141
142
143/**
144 * Checks if the specified address is valid (checks the structure pointer too).
145 *
146 * @returns true if valid.
147 * @returns false if invalid.
148 * @param pVM The VM handle.
149 * @param pAddress The address to validate.
150 */
151VMMR3DECL(bool) DBGFR3AddrIsValid(PVM pVM, PCDBGFADDRESS pAddress)
152{
153 if (!VALID_PTR(pAddress))
154 return false;
155 if (!DBGFADDRESS_IS_VALID(pAddress))
156 return false;
157 /* more? */
158 return true;
159}
160
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use