Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1789)

Unified Diff: clients/drltrace/drltrace.dox

Issue 313540043: i#2156. drltrace for malware analysis (Closed)
Patch Set: Committed Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « clients/drltrace/drltrace.c ('k') | clients/drltrace/runtest.cmake » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: clients/drltrace/drltrace.dox
diff --git a/clients/drltrace/drltrace.dox b/clients/drltrace/drltrace.dox
deleted file mode 100644
index 5765c2b1ae48d78df659ee88a8d4d92cd46873aa..0000000000000000000000000000000000000000
--- a/clients/drltrace/drltrace.dox
+++ /dev/null
@@ -1,81 +0,0 @@
-/* **********************************************************
- * Copyright (c) 2013-2014 Google, Inc. All rights reserved.
- * **********************************************************/
-
-/*
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * * Redistributions of source code must retain the above copyright notice,
- * this list of conditions and the following disclaimer.
- *
- * * Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution.
- *
- * * Neither the name of Google, Inc. nor the names of its contributors may be
- * used to endorse or promote products derived from this software without
- * specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL GOOGLE, INC. OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
- * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
- * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
- * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
- * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
- * DAMAGE.
- */
-
-/**
-***************************************************************************
-***************************************************************************
-\page page_drltrace Library Tracing Tool
-
-drltrace is a DynamoRIO client tool that records calls to shared libraries.
-It reports all invocations of exported functions in all shared libraries
-loaded into the target process.
-
-The runtime options for this tool include:
- - \b -only_from_app:
- Only reports library calls from the application itself, as opposed to
- all calls even from other libraries or within the same library.
- - \b -logdir dir:
- Sets the log directory, which by default is "-".
- If set to "-", the tool prints to stderr.
- - \b -ignore_underscore:
- Ignores library routine names starting with "_".
-
-Here is an example:
-
-\code
-bin32/drrun -t drltrace -only_from_app -- hello.exe
-\endcode
-
-Here is a portion of the output from the above command:
-
-\code
-~~~~ ntdll.dll!RtlDecodePointer
-~~~~ ntdll.dll!RtlEnterCriticalSection
-~~~~ ntdll.dll!RtlEnterCriticalSection
-~~~~ ntdll.dll!RtlLeaveCriticalSection
-~~~~ ntdll.dll!RtlEnterCriticalSection
-~~~~ ntdll.dll!RtlEnterCriticalSection
-~~~~ KERNEL32.dll!WriteFile
-Hello world!
-~~~~ ntdll.dll!RtlLeaveCriticalSection
-~~~~ ntdll.dll!RtlLeaveCriticalSection
-~~~~ ntdll.dll!RtlEnterCriticalSection
-~~~~ ntdll.dll!RtlLeaveCriticalSection
-~~~~ ntdll.dll!RtlLeaveCriticalSection
-~~~~ KERNEL32.dll!HeapFree
-~~~~ ntdll.dll!RtlLeaveCriticalSection
-~~~~ KERNEL32.dll!GetModuleHandleW
-~~~~ KERNELBASE.dll!GetModuleHandleW
-~~~~ KERNEL32.dll!ExitProcess
-\endcode
-
-*/
« no previous file with comments | « clients/drltrace/drltrace.c ('k') | clients/drltrace/runtest.cmake » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b