1 | /* $Id: DBGFMem.cpp 6000 2007-12-07 15:12:49Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VMM DBGF - Debugger Facility, Memory Methods.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 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 (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 |
|
---|
18 |
|
---|
19 | /*******************************************************************************
|
---|
20 | * Header Files *
|
---|
21 | *******************************************************************************/
|
---|
22 | #define LOG_GROUP LOG_GROUP_DBGF
|
---|
23 | #include <VBox/dbgf.h>
|
---|
24 | #include <VBox/pgm.h>
|
---|
25 | #include "DBGFInternal.h"
|
---|
26 | #include <VBox/vm.h>
|
---|
27 | #include <VBox/err.h>
|
---|
28 | #include <VBox/log.h>
|
---|
29 |
|
---|
30 |
|
---|
31 |
|
---|
32 | /**
|
---|
33 | * Scan guest memory for an exact byte string.
|
---|
34 | *
|
---|
35 | * @returns VBox status code.
|
---|
36 | * @param pVM The VM handle.
|
---|
37 | * @param pAddress Where to store the mixed address.
|
---|
38 | * @param cbRange The number of bytes to scan.
|
---|
39 | * @param pabNeedle What to search for - exact search.
|
---|
40 | * @param cbNeedle Size of the search byte string.
|
---|
41 | * @param pHitAddress Where to put the address of the first hit.
|
---|
42 | */
|
---|
43 | static DECLCALLBACK(int) dbgfR3MemScan(PVM pVM, PCDBGFADDRESS pAddress, RTGCUINTPTR cbRange, const uint8_t *pabNeedle, size_t cbNeedle,
|
---|
44 | PDBGFADDRESS pHitAddress)
|
---|
45 | {
|
---|
46 | /*
|
---|
47 | * Validate the input we use, PGM does the rest.
|
---|
48 | */
|
---|
49 | if (!DBGFR3AddrIsValid(pVM, pAddress))
|
---|
50 | return VERR_INVALID_POINTER;
|
---|
51 | if (!VALID_PTR(pHitAddress))
|
---|
52 | return VERR_INVALID_POINTER;
|
---|
53 | if (DBGFADDRESS_IS_HMA(pAddress))
|
---|
54 | return VERR_INVALID_POINTER;
|
---|
55 |
|
---|
56 | /*
|
---|
57 | * Select DBGF worker by addressing mode.
|
---|
58 | */
|
---|
59 | int rc;
|
---|
60 | PGMMODE enmMode = PGMGetGuestMode(pVM);
|
---|
61 | if ( enmMode == PGMMODE_REAL
|
---|
62 | || enmMode == PGMMODE_PROTECTED
|
---|
63 | || DBGFADDRESS_IS_PHYS(pAddress)
|
---|
64 | )
|
---|
65 | {
|
---|
66 | RTGCPHYS PhysHit;
|
---|
67 | rc = PGMR3DbgScanPhysical(pVM, pAddress->FlatPtr, cbRange, pabNeedle, cbNeedle, &PhysHit);
|
---|
68 | if (RT_SUCCESS(rc))
|
---|
69 | DBGFR3AddrFromPhys(pVM, pHitAddress, PhysHit);
|
---|
70 | }
|
---|
71 | else
|
---|
72 | {
|
---|
73 | RTGCUINTPTR GCPtrHit;
|
---|
74 | rc = PGMR3DbgScanVirtual(pVM, pAddress->FlatPtr, cbRange, pabNeedle, cbNeedle, &GCPtrHit);
|
---|
75 | if (RT_SUCCESS(rc))
|
---|
76 | DBGFR3AddrFromFlat(pVM, pHitAddress, GCPtrHit);
|
---|
77 | }
|
---|
78 |
|
---|
79 | return rc;
|
---|
80 | }
|
---|
81 |
|
---|
82 |
|
---|
83 | /**
|
---|
84 | * Scan guest memory for an exact byte string.
|
---|
85 | *
|
---|
86 | * @returns VBox status codes:
|
---|
87 | * @retval VINF_SUCCESS and *pGCPtrHit on success.
|
---|
88 | * @retval VERR_DBGF_MEM_NOT_FOUND if not found.
|
---|
89 | * @retval VERR_INVALID_POINTER if any of the pointer arguments are invalid.
|
---|
90 | * @retval VERR_INVALID_ARGUMENT if any other arguments are invalid.
|
---|
91 | *
|
---|
92 | * @param pVM The VM handle.
|
---|
93 | * @param pAddress Where to store the mixed address.
|
---|
94 | * @param cbRange The number of bytes to scan.
|
---|
95 | * @param pabNeedle What to search for - exact search.
|
---|
96 | * @param cbNeedle Size of the search byte string.
|
---|
97 | * @param pHitAddress Where to put the address of the first hit.
|
---|
98 | *
|
---|
99 | * @thread Any thread.
|
---|
100 | */
|
---|
101 | DBGFR3DECL(int) DBGFR3MemScan(PVM pVM, PCDBGFADDRESS pAddress, RTGCUINTPTR cbRange, const uint8_t *pabNeedle, size_t cbNeedle, PDBGFADDRESS pHitAddress)
|
---|
102 | {
|
---|
103 | PVMREQ pReq;
|
---|
104 | int rc = VMR3ReqCall(pVM, &pReq, RT_INDEFINITE_WAIT, (PFNRT)dbgfR3MemScan, 6,
|
---|
105 | pVM, pAddress, cbRange, pabNeedle, cbNeedle, pHitAddress);
|
---|
106 | if (VBOX_SUCCESS(rc))
|
---|
107 | rc = pReq->iStatus;
|
---|
108 | VMR3ReqFree(pReq);
|
---|
109 |
|
---|
110 | return rc;
|
---|
111 | }
|
---|
112 |
|
---|
113 |
|
---|