-
Notifications
You must be signed in to change notification settings - Fork 6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/GP-326_d-millar_how_to_add_a_deb…
…ugger--SQUASHED'
- Loading branch information
Showing
28 changed files
with
4,816 additions
and
1 deletion.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Debugger-agent-drgn |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* ### | ||
* IP: GHIDRA | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
apply from: "$rootProject.projectDir/gradle/distributableGhidraModule.gradle" | ||
apply from: "$rootProject.projectDir/gradle/hasPythonPackage.gradle" | ||
|
||
apply plugin: 'eclipse' | ||
eclipse.project.name = 'Debug Debugger-agent-drgn' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
##VERSION: 2.0 | ||
##MODULE IP: Apache License 2.0 | ||
##MODULE IP: Apache License 2.0 with LLVM Exceptions | ||
Module.manifest||GHIDRA||||END| | ||
README.md||GHIDRA||||END| | ||
build.gradle||GHIDRA||||END| | ||
src/main/py/LICENSE||GHIDRA||||END| | ||
src/main/py/MANIFEST.in||GHIDRA||||END| | ||
src/main/py/README.md||GHIDRA||||END| | ||
src/main/py/pyproject.toml||GHIDRA||||END| | ||
src/main/py/src/ghidradrgn/schema.xml||GHIDRA||||END| |
32 changes: 32 additions & 0 deletions
32
Ghidra/Debug/Debugger-agent-drgn/data/debugger-launchers/core-drgn.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/usr/bin/env bash | ||
## ### | ||
# IP: GHIDRA | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
## | ||
#@title drgn-core | ||
#@desc <html><body width="300px"> | ||
#@desc <h3>Launch with <tt>drgn-core</tt></h3> | ||
#@desc <p> | ||
#@desc This will attach to an existing core dump using <tt>drgn</tt>. | ||
#@desc For setup instructions, press <b>F1</b>. | ||
#@desc </p> | ||
#@desc </body></html> | ||
#@menu-group drgn | ||
#@icon icon.debugger | ||
#@help TraceRmiLauncherServicePlugin#drgn-core | ||
#@env OPT_TARGET_IMG:file!="" "Core dump" "The target core dump" | ||
|
||
export OPT_TARGET_KIND="coredump" | ||
drgn -c "$OPT_TARGET_IMG" ../support/local-drgn.py | ||
|
31 changes: 31 additions & 0 deletions
31
Ghidra/Debug/Debugger-agent-drgn/data/debugger-launchers/kernel-drgn.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#!/usr/bin/env bash | ||
## ### | ||
# IP: GHIDRA | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
## | ||
#@title drgn-kernel | ||
#@desc <html><body width="300px"> | ||
#@desc <h3>Launch with <tt>drgn-kernel</tt></h3> | ||
#@desc <p> | ||
#@desc This will attach to the local machine's kernel using <tt>drgn</tt>. | ||
#@desc For setup instructions, press <b>F1</b>. | ||
#@desc </p> | ||
#@desc </body></html> | ||
#@menu-group drgn | ||
#@icon icon.debugger | ||
#@help TraceRmiLauncherServicePlugin#drgn-kernel | ||
|
||
export OPT_TARGET_KIND="kernel" | ||
sudo -E drgn ../support/local-drgn.py | ||
|
34 changes: 34 additions & 0 deletions
34
Ghidra/Debug/Debugger-agent-drgn/data/debugger-launchers/local-drgn.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/usr/bin/env bash | ||
## ### | ||
# IP: GHIDRA | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
## | ||
#@title drgn | ||
#@desc <html><body width="300px"> | ||
#@desc <h3>Launch with <tt>drgn</tt></h3> | ||
#@desc <p> | ||
#@desc This will attach to a target running on the local machine using <tt>drgn</tt>. | ||
#@desc For setup instructions, press <b>F1</b>. | ||
#@desc </p> | ||
#@desc </body></html> | ||
#@menu-group drgn | ||
#@icon icon.debugger | ||
#@help TraceRmiLauncherServicePlugin#drgn | ||
#@env OPT_TARGET_PID:int=44068 "PID" "The target's process id" | ||
|
||
export OPT_TARGET_KIND="user" | ||
# sudo -E drgn -p "$OPT_TARGET_PID" ../support/local-drgn.py | ||
# or 'echo 0 > /proc/sys/kernel/yama/ptrace_scope' | ||
drgn -p "$OPT_TARGET_PID" ../support/local-drgn.py | ||
|
57 changes: 57 additions & 0 deletions
57
Ghidra/Debug/Debugger-agent-drgn/data/support/local-drgn.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
## ### | ||
# IP: GHIDRA | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
## | ||
|
||
# From drgn: | ||
# EASY-INSTALL-ENTRY-SCRIPT: 'drgn==0.0.24','console_scripts','drgn' | ||
import os | ||
import re | ||
import sys | ||
|
||
import drgn.cli | ||
|
||
home = os.getenv('GHIDRA_HOME') | ||
|
||
if os.path.isdir(f'{home}/ghidra/.git'): | ||
sys.path.append( | ||
f'{home}/ghidra/Ghidra/Debug/Debugger-agent-drgn/build/pypkg/src') | ||
sys.path.append( | ||
f'{home}/ghidra/Ghidra/Debug/Debugger-rmi-trace/build/pypkg/src') | ||
elif os.path.isdir(f'{home}/.git'): | ||
sys.path.append( | ||
f'{home}/Ghidra/Debug/Debugger-agent-drgn/build/pypkg/src') | ||
sys.path.append( | ||
f'{home}/Ghidra/Debug/Debugger-rmi-trace/build/pypkg/src') | ||
else: | ||
sys.path.append( | ||
f'{home}/Ghidra/Debug/Debugger-agent-drgn/pypkg/src') | ||
sys.path.append(f'{home}/Ghidra/Debug/Debugger-rmi-trace/pypkg/src') | ||
|
||
|
||
def main(): | ||
from ghidradrgn import commands as cmd | ||
cmd.ghidra_trace_connect(address=os.getenv('GHIDRA_TRACE_RMI_ADDR')) | ||
cmd.ghidra_trace_create(start_trace=True) | ||
cmd.ghidra_trace_txstart() | ||
cmd.ghidra_trace_put_all() | ||
cmd.ghidra_trace_txcommit() | ||
cmd.ghidra_trace_activate() | ||
drgn.cli.run_interactive(cmd.prog) | ||
|
||
|
||
if __name__ == '__main__': | ||
main() | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include src/ghidradrgn/schema.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Ghidra Trace RMI for drgn | ||
|
||
Package for connecting drgn to Ghidra via Trace RMI. |
25 changes: 25 additions & 0 deletions
25
Ghidra/Debug/Debugger-agent-drgn/src/main/py/pyproject.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "ghidradrgn" | ||
version = "11.3" | ||
authors = [ | ||
{ name="Ghidra Development Team" }, | ||
] | ||
description = "Ghidra's Plugin for drgn" | ||
readme = "README.md" | ||
requires-python = ">=3.7" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
] | ||
dependencies = [ | ||
"ghidratrace==11.3", | ||
] | ||
|
||
[project.urls] | ||
"Homepage" = "https://github.com/NationalSecurityAgency/ghidra" | ||
"Bug Tracker" = "https://github.com/NationalSecurityAgency/ghidra/issues" |
16 changes: 16 additions & 0 deletions
16
Ghidra/Debug/Debugger-agent-drgn/src/main/py/src/ghidradrgn/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
## ### | ||
# IP: GHIDRA | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
## | ||
from . import util, commands |
Oops, something went wrong.