VirtualBox

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

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

SELMSelInfoIsExpandDown

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 4.2 KB
Line 
1/* $Id: DBGFAddr.cpp 4212 2007-08-18 01:35:13Z vboxsync $ */
2/** @file
3 * VMM DBGF - Debugger Facility, Mixed Address Methods.
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
18
19/*******************************************************************************
20* Header Files *
21*******************************************************************************/
22#define LOG_GROUP LOG_GROUP_DBGF
23#include <VBox/dbgf.h>
24#include <VBox/selm.h>
25#include "DBGFInternal.h"
26#include <VBox/vm.h>
27#include <VBox/mm.h>
28#include <VBox/err.h>
29#include <VBox/log.h>
30
31
32
33/**
34 * Checks if an address is in the HMA or not.
35 * @returns true if it's inside the HMA.
36 * @returns flase if it's not inside the HMA.
37 * @param pVM The VM handle.
38 * @param FlatPtr The address in question.
39 */
40DECLINLINE(bool) dbgfR3IsHMA(PVM pVM, RTGCUINTPTR FlatPtr)
41{
42 return MMHyperIsInsideArea(pVM, FlatPtr);
43}
44
45
46/**
47 * Creates a mixed address from a Sel:off pair.
48 *
49 * @returns VBox status code.
50 * @param pVM The VM handle.
51 * @param pAddress Where to store the mixed address.
52 * @param Sel The selector part.
53 * @param off The offset part.
54 */
55DBGFR3DECL(int) DBGFR3AddrFromSelOff(PVM pVM, PDBGFADDRESS pAddress, RTSEL Sel, RTUINTPTR off)
56{
57 pAddress->Sel = Sel;
58 pAddress->off = off;
59 if (Sel != DBGF_SEL_FLAT)
60 {
61 SELMSELINFO SelInfo;
62 int rc = SELMR3GetSelectorInfo(pVM, Sel, &SelInfo);
63 if (VBOX_FAILURE(rc))
64 return rc;
65
66 /* check limit. */
67 if (SELMSelInfoIsExpandDown(&SelInfo))
68 {
69 if ( !SelInfo.Raw.Gen.u1Granularity
70 && off > UINT32_C(0xffff))
71 return VERR_OUT_OF_SELECTOR_BOUNDS;
72 if (off <= SelInfo.cbLimit)
73 return VERR_OUT_OF_SELECTOR_BOUNDS;
74 }
75 else if (off > SelInfo.cbLimit)
76 return VERR_OUT_OF_SELECTOR_BOUNDS;
77
78 pAddress->FlatPtr = SelInfo.GCPtrBase + off;
79 /** @todo fix this flat selector test! */
80 if ( !SelInfo.GCPtrBase
81 && SelInfo.Raw.Gen.u1Granularity
82 && SelInfo.Raw.Gen.u1DefBig)
83 pAddress->fFlags = DBGFADDRESS_FLAGS_FLAT;
84 else if (SelInfo.cbLimit <= UINT32_C(0xffff))
85 pAddress->fFlags = DBGFADDRESS_FLAGS_FAR16;
86 else if (SelInfo.cbLimit <= UINT32_C(0xffffffff))
87 pAddress->fFlags = DBGFADDRESS_FLAGS_FAR32;
88 else
89 pAddress->fFlags = DBGFADDRESS_FLAGS_FAR64;
90 }
91 else
92 {
93 pAddress->FlatPtr = off;
94 pAddress->fFlags = DBGFADDRESS_FLAGS_FLAT;
95 }
96 pAddress->fFlags |= DBGFADDRESS_FLAGS_VALID;
97 if (dbgfR3IsHMA(pVM, pAddress->FlatPtr))
98 pAddress->fFlags |= DBGFADDRESS_FLAGS_HMA;
99
100 return VINF_SUCCESS;
101}
102
103
104/**
105 * Creates a mixed address from a flat address.
106 *
107 * @param pVM The VM handle.
108 * @param pAddress Where to store the mixed address.
109 * @param FlatPtr The flat pointer.
110 */
111DBGFR3DECL(void) DBGFR3AddrFromFlat(PVM pVM, PDBGFADDRESS pAddress, RTGCUINTPTR FlatPtr)
112{
113 pAddress->Sel = DBGF_SEL_FLAT;
114 pAddress->off = FlatPtr;
115 pAddress->FlatPtr = FlatPtr;
116 pAddress->fFlags = DBGFADDRESS_FLAGS_FLAT | DBGFADDRESS_FLAGS_VALID;
117 if (dbgfR3IsHMA(pVM, pAddress->FlatPtr))
118 pAddress->fFlags |= DBGFADDRESS_FLAGS_HMA;
119}
120
121
122/**
123 * Checks if the specified address is valid (checks the structure pointer too).
124 *
125 * @returns true if valid.
126 * @returns false if invalid.
127 * @param pVM The VM handle.
128 * @param pAddress The address to validate.
129 */
130DBGFR3DECL(bool) DBGFR3AddrIsValid(PVM pVM, PCDBGFADDRESS pAddress)
131{
132 if (!VALID_PTR(pAddress))
133 return false;
134 if (!DBGFADDRESS_IS_VALID(pAddress))
135 return false;
136 /* more? */
137 return true;
138}
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