VirtualBox

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

Last change on this file since 4071 was 4071, checked in by vboxsync, 18 years ago

Biggest check-in ever. New source code headers for all (C) innotek files.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.8 KB
Line 
1/* $Id: DBGFAddr.cpp 4071 2007-08-07 17:07:59Z 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.215389.xyz. 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 if (off > SelInfo.cbLimit)
66 return VERR_OUT_OF_SELECTOR_BOUNDS;
67 pAddress->FlatPtr = SelInfo.GCPtrBase + off;
68 /** @todo fix this flat selector test! */
69 if ( !SelInfo.GCPtrBase
70 && SelInfo.Raw.Gen.u1Granularity
71 && SelInfo.Raw.Gen.u1DefBig)
72 pAddress->fFlags = DBGFADDRESS_FLAGS_FLAT;
73 else if (SelInfo.cbLimit <= 0xffff)
74 pAddress->fFlags = DBGFADDRESS_FLAGS_FAR16;
75 else if (SelInfo.cbLimit <= 0xffffffff)
76 pAddress->fFlags = DBGFADDRESS_FLAGS_FAR32;
77 else
78 pAddress->fFlags = DBGFADDRESS_FLAGS_FAR64;
79 }
80 else
81 {
82 pAddress->FlatPtr = off;
83 pAddress->fFlags = DBGFADDRESS_FLAGS_FLAT;
84 }
85 pAddress->fFlags |= DBGFADDRESS_FLAGS_VALID;
86 if (dbgfR3IsHMA(pVM, pAddress->FlatPtr))
87 pAddress->fFlags |= DBGFADDRESS_FLAGS_HMA;
88
89 return VINF_SUCCESS;
90}
91
92
93/**
94 * Creates a mixed address from a flat address.
95 *
96 * @param pVM The VM handle.
97 * @param pAddress Where to store the mixed address.
98 * @param FlatPtr The flat pointer.
99 */
100DBGFR3DECL(void) DBGFR3AddrFromFlat(PVM pVM, PDBGFADDRESS pAddress, RTGCUINTPTR FlatPtr)
101{
102 pAddress->Sel = DBGF_SEL_FLAT;
103 pAddress->off = FlatPtr;
104 pAddress->FlatPtr = FlatPtr;
105 pAddress->fFlags = DBGFADDRESS_FLAGS_FLAT | DBGFADDRESS_FLAGS_VALID;
106 if (dbgfR3IsHMA(pVM, pAddress->FlatPtr))
107 pAddress->fFlags |= DBGFADDRESS_FLAGS_HMA;
108}
109
110
111/**
112 * Checks if the specified address is valid (checks the structure pointer too).
113 *
114 * @returns true if valid.
115 * @returns false if invalid.
116 * @param pVM The VM handle.
117 * @param pAddress The address to validate.
118 */
119DBGFR3DECL(bool) DBGFR3AddrIsValid(PVM pVM, PCDBGFADDRESS pAddress)
120{
121 if (!VALID_PTR(pAddress))
122 return false;
123 if (!DBGFADDRESS_IS_VALID(pAddress))
124 return false;
125 /* more? */
126 return true;
127}
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