VirtualBox

source: vbox/trunk/src/VBox/VMM/DBGFMem.cpp@ 5667

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

Debugger interface for searching memory. Fixed a const mixup.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.5 KB
Line 
1/* $Id: DBGFMem.cpp 5667 2007-11-11 04:28:47Z 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 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/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 */
43static 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 code.
87 * @param pVM The VM handle.
88 * @param pAddress Where to store the mixed address.
89 * @param cbRange The number of bytes to scan.
90 * @param pabNeedle What to search for - exact search.
91 * @param cbNeedle Size of the search byte string.
92 * @param pHitAddress Where to put the address of the first hit.
93 *
94 * @thread Any thread.
95 */
96DBGFR3DECL(int) DBGFR3MemScan(PVM pVM, PCDBGFADDRESS pAddress, RTGCUINTPTR cbRange, const uint8_t *pabNeedle, size_t cbNeedle, PDBGFADDRESS pHitAddress)
97{
98 PVMREQ pReq;
99 int rc = VMR3ReqCall(pVM, &pReq, RT_INDEFINITE_WAIT, (PFNRT)dbgfR3MemScan, 6,
100 pVM, pAddress, cbRange, pabNeedle, cbNeedle, pHitAddress);
101 if (VBOX_SUCCESS(rc))
102 rc = pReq->iStatus;
103 VMR3ReqFree(pReq);
104
105 return rc;
106}
107
108
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