toolbox 0.1.4 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +0 -0
- data/bake/ruby/gdb.rb +135 -0
- data/bake/toolbox/gdb.rb +137 -0
- data/bake/toolbox/lldb.rb +137 -0
- data/context/fiber-debugging.md +171 -0
- data/context/getting-started.md +178 -0
- data/context/heap-debugging.md +351 -0
- data/context/index.yaml +28 -0
- data/context/object-inspection.md +208 -0
- data/context/stack-inspection.md +188 -0
- data/data/toolbox/command.py +254 -0
- data/data/toolbox/constants.py +200 -0
- data/data/toolbox/context.py +295 -0
- data/data/toolbox/debugger/__init__.py +99 -0
- data/data/toolbox/debugger/gdb_backend.py +595 -0
- data/data/toolbox/debugger/lldb_backend.py +885 -0
- data/data/toolbox/fiber.py +885 -0
- data/data/toolbox/format.py +200 -0
- data/data/toolbox/heap.py +669 -0
- data/data/toolbox/init.py +85 -0
- data/data/toolbox/object.py +84 -0
- data/data/toolbox/rarray.py +124 -0
- data/data/toolbox/rbasic.py +103 -0
- data/data/toolbox/rbignum.py +52 -0
- data/data/toolbox/rclass.py +136 -0
- data/data/toolbox/readme.md +214 -0
- data/data/toolbox/rexception.py +150 -0
- data/data/toolbox/rfloat.py +98 -0
- data/data/toolbox/rhash.py +159 -0
- data/data/toolbox/rstring.py +234 -0
- data/data/toolbox/rstruct.py +157 -0
- data/data/toolbox/rsymbol.py +302 -0
- data/data/toolbox/stack.py +630 -0
- data/data/toolbox/value.py +183 -0
- data/lib/toolbox/gdb.rb +21 -0
- data/lib/toolbox/lldb.rb +21 -0
- data/lib/toolbox/version.rb +7 -1
- data/lib/toolbox.rb +9 -24
- data/license.md +21 -0
- data/readme.md +64 -0
- data/releases.md +9 -0
- data.tar.gz.sig +2 -0
- metadata +95 -165
- metadata.gz.sig +0 -0
- data/Rakefile +0 -61
- data/lib/dirs.rb +0 -9
- data/lib/toolbox/config.rb +0 -211
- data/lib/toolbox/default_controller.rb +0 -393
- data/lib/toolbox/helpers.rb +0 -11
- data/lib/toolbox/rendering.rb +0 -413
- data/lib/toolbox/searching.rb +0 -85
- data/lib/toolbox/session_params.rb +0 -63
- data/lib/toolbox/sorting.rb +0 -74
- data/locale/de/LC_MESSAGES/toolbox.mo +0 -0
- data/public/images/add.png +0 -0
- data/public/images/arrow_down.gif +0 -0
- data/public/images/arrow_up.gif +0 -0
- data/public/images/close.png +0 -0
- data/public/images/edit.gif +0 -0
- data/public/images/email.png +0 -0
- data/public/images/page.png +0 -0
- data/public/images/page_acrobat.png +0 -0
- data/public/images/page_add.png +0 -0
- data/public/images/page_copy.png +0 -0
- data/public/images/page_delete.png +0 -0
- data/public/images/page_edit.png +0 -0
- data/public/images/page_excel.png +0 -0
- data/public/images/page_list.png +0 -0
- data/public/images/page_save.png +0 -0
- data/public/images/page_word.png +0 -0
- data/public/images/remove.png +0 -0
- data/public/images/show.gif +0 -0
- data/public/images/spinner.gif +0 -0
- data/public/javascripts/popup.js +0 -498
- data/public/javascripts/toolbox.js +0 -18
- data/public/stylesheets/context_menu.css +0 -168
- data/public/stylesheets/popup.css +0 -30
- data/public/stylesheets/toolbox.css +0 -107
- data/view/toolbox/_collection.html.erb +0 -24
- data/view/toolbox/_collection_header.html.erb +0 -7
- data/view/toolbox/_context_menu.html.erb +0 -17
- data/view/toolbox/_dialogs.html.erb +0 -6
- data/view/toolbox/_form.html.erb +0 -30
- data/view/toolbox/_form_collection_row.html.erb +0 -18
- data/view/toolbox/_form_fieldset.html.erb +0 -30
- data/view/toolbox/_form_fieldset_row.html.erb +0 -19
- data/view/toolbox/_list.html.erb +0 -25
- data/view/toolbox/_list_row.html.erb +0 -10
- data/view/toolbox/_menu.html.erb +0 -7
- data/view/toolbox/_search_field.html.erb +0 -8
- data/view/toolbox/_show.html.erb +0 -12
- data/view/toolbox/_show_collection_row.html.erb +0 -6
- data/view/toolbox/_show_fieldset.html.erb +0 -21
- data/view/toolbox/edit.html.erb +0 -5
- data/view/toolbox/index.html.erb +0 -3
- data/view/toolbox/new.html.erb +0 -9
- data/view/toolbox/show.html.erb +0 -39
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Ruby Toolbox - Unified entry point for GDB and LLDB
|
|
3
|
+
|
|
4
|
+
This module auto-detects which debugger is running and loads
|
|
5
|
+
the appropriate Ruby debugging extensions.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
import os
|
|
9
|
+
import sys
|
|
10
|
+
|
|
11
|
+
# Get the directory containing this file (data/toolbox)
|
|
12
|
+
toolbox_dir = os.path.dirname(os.path.abspath(__file__))
|
|
13
|
+
|
|
14
|
+
# Add to Python path for imports
|
|
15
|
+
if toolbox_dir not in sys.path:
|
|
16
|
+
sys.path.insert(0, toolbox_dir)
|
|
17
|
+
|
|
18
|
+
# Load debugger abstraction (auto-detects GDB or LLDB)
|
|
19
|
+
import debugger
|
|
20
|
+
|
|
21
|
+
# Load Ruby debugging extensions
|
|
22
|
+
loaded_extensions = []
|
|
23
|
+
failed_extensions = []
|
|
24
|
+
|
|
25
|
+
# Try to load each extension individually
|
|
26
|
+
extensions_to_load = [
|
|
27
|
+
('object', 'rb-object-print'),
|
|
28
|
+
('context', 'rb-context'),
|
|
29
|
+
('fiber', 'rb-fiber-scan-heap, rb-fiber-switch'),
|
|
30
|
+
('stack', 'rb-stack-trace'),
|
|
31
|
+
('heap', 'rb-heap-scan'),
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
for module_name, commands in extensions_to_load:
|
|
35
|
+
try:
|
|
36
|
+
if module_name == 'object':
|
|
37
|
+
import object
|
|
38
|
+
elif module_name == 'context':
|
|
39
|
+
import context
|
|
40
|
+
elif module_name == 'fiber':
|
|
41
|
+
import fiber
|
|
42
|
+
elif module_name == 'stack':
|
|
43
|
+
import stack
|
|
44
|
+
elif module_name == 'heap':
|
|
45
|
+
import heap
|
|
46
|
+
loaded_extensions.append((module_name, commands))
|
|
47
|
+
except ImportError as e:
|
|
48
|
+
failed_extensions.append((module_name, str(e)))
|
|
49
|
+
|
|
50
|
+
# Silently load - no status messages printed by default
|
|
51
|
+
# Users can run 'help' to see available commands
|
|
52
|
+
|
|
53
|
+
# For LLDB, register commands that were successfully loaded
|
|
54
|
+
if debugger.DEBUGGER_NAME == 'lldb':
|
|
55
|
+
import lldb
|
|
56
|
+
|
|
57
|
+
# Get all registered commands
|
|
58
|
+
for cmd_name, cmd_obj in debugger.Command._commands.items():
|
|
59
|
+
# Create a wrapper function in this module's namespace
|
|
60
|
+
func_name = f"_cmd_{cmd_name.replace('-', '_')}"
|
|
61
|
+
|
|
62
|
+
# Create closure that captures cmd_obj
|
|
63
|
+
def make_wrapper(command_obj):
|
|
64
|
+
def wrapper(debugger_obj, command, result, internal_dict):
|
|
65
|
+
try:
|
|
66
|
+
# Check if stdout is a TTY
|
|
67
|
+
from_tty = sys.stdout.isatty()
|
|
68
|
+
command_obj.invoke(command, from_tty=from_tty)
|
|
69
|
+
except Exception as e:
|
|
70
|
+
print(f"Error: {e}")
|
|
71
|
+
import traceback
|
|
72
|
+
traceback.print_exc()
|
|
73
|
+
return wrapper
|
|
74
|
+
|
|
75
|
+
# Add to this module's globals
|
|
76
|
+
globals()[func_name] = make_wrapper(cmd_obj)
|
|
77
|
+
|
|
78
|
+
# Register with LLDB
|
|
79
|
+
# The module is imported as 'init' by LLDB
|
|
80
|
+
result = lldb.SBCommandReturnObject()
|
|
81
|
+
cmd_str = f"command script add -f init.{func_name} {cmd_name}"
|
|
82
|
+
lldb.debugger.GetCommandInterpreter().HandleCommand(cmd_str, result)
|
|
83
|
+
|
|
84
|
+
# Silently ignore registration failures
|
|
85
|
+
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import debugger
|
|
2
|
+
import sys
|
|
3
|
+
|
|
4
|
+
# Import utilities
|
|
5
|
+
import command
|
|
6
|
+
import constants
|
|
7
|
+
import value
|
|
8
|
+
import rstring
|
|
9
|
+
import rarray
|
|
10
|
+
import rhash
|
|
11
|
+
import rsymbol
|
|
12
|
+
import rstruct
|
|
13
|
+
import rfloat
|
|
14
|
+
import rbignum
|
|
15
|
+
import rbasic
|
|
16
|
+
import format
|
|
17
|
+
|
|
18
|
+
class RubyObjectPrintCommand(debugger.Command):
|
|
19
|
+
"""Recursively print Ruby hash and array structures.
|
|
20
|
+
Usage: rb-object-print <expression> [max_depth] [--debug]
|
|
21
|
+
Examples:
|
|
22
|
+
rb-object-print $errinfo # Print exception object
|
|
23
|
+
rb-object-print $ec->storage # Print fiber storage
|
|
24
|
+
rb-object-print 0x7f7a12345678 # Print object at address
|
|
25
|
+
rb-object-print $var 2 # Print with max depth 2
|
|
26
|
+
|
|
27
|
+
Default max_depth is 1 if not specified.
|
|
28
|
+
Add --debug flag to enable debug output."""
|
|
29
|
+
|
|
30
|
+
def __init__(self):
|
|
31
|
+
super(RubyObjectPrintCommand, self).__init__("rb-object-print", debugger.COMMAND_DATA)
|
|
32
|
+
|
|
33
|
+
def usage(self):
|
|
34
|
+
"""Print usage information."""
|
|
35
|
+
print("Usage: rb-object-print <expression> [--depth N] [--debug]")
|
|
36
|
+
print("Examples:")
|
|
37
|
+
print(" rb-object-print $errinfo")
|
|
38
|
+
print(" rb-object-print $ec->storage --depth 2")
|
|
39
|
+
print(" rb-object-print foo + 10")
|
|
40
|
+
print(" rb-object-print $ec->cfp->sp[-1] --depth 3 --debug")
|
|
41
|
+
|
|
42
|
+
def invoke(self, argument, from_tty):
|
|
43
|
+
# Parse arguments using the robust parser
|
|
44
|
+
arguments = command.parse_arguments(argument if argument else "")
|
|
45
|
+
|
|
46
|
+
# Validate that we have at least one expression
|
|
47
|
+
if not arguments.expressions:
|
|
48
|
+
self.usage()
|
|
49
|
+
return
|
|
50
|
+
|
|
51
|
+
# Apply flags
|
|
52
|
+
debug_mode = arguments.has_flag('debug')
|
|
53
|
+
|
|
54
|
+
# Apply options
|
|
55
|
+
max_depth = arguments.get_option('depth', 1)
|
|
56
|
+
|
|
57
|
+
# Validate depth
|
|
58
|
+
if max_depth < 1:
|
|
59
|
+
print("Error: --depth must be >= 1")
|
|
60
|
+
return
|
|
61
|
+
|
|
62
|
+
# Create terminal and printer
|
|
63
|
+
terminal = format.create_terminal(from_tty)
|
|
64
|
+
printer = format.Printer(terminal, max_depth, debug_mode)
|
|
65
|
+
|
|
66
|
+
# Process each expression
|
|
67
|
+
for expression in arguments.expressions:
|
|
68
|
+
try:
|
|
69
|
+
# Evaluate the expression
|
|
70
|
+
ruby_value = debugger.parse_and_eval(expression)
|
|
71
|
+
|
|
72
|
+
# Interpret the value and let it print itself recursively
|
|
73
|
+
ruby_object = value.interpret(ruby_value)
|
|
74
|
+
ruby_object.print_recursive(printer, max_depth)
|
|
75
|
+
except debugger.Error as e:
|
|
76
|
+
print(f"Error evaluating expression '{expression}': {e}")
|
|
77
|
+
except Exception as e:
|
|
78
|
+
print(f"Error processing '{expression}': {type(e).__name__}: {e}")
|
|
79
|
+
if debug_mode:
|
|
80
|
+
import traceback
|
|
81
|
+
traceback.print_exc(file=sys.stderr)
|
|
82
|
+
|
|
83
|
+
# Register command
|
|
84
|
+
RubyObjectPrintCommand()
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import debugger
|
|
2
|
+
import rbasic
|
|
3
|
+
import constants
|
|
4
|
+
import format
|
|
5
|
+
|
|
6
|
+
class RArrayBase:
|
|
7
|
+
"""Base class for RArray variants."""
|
|
8
|
+
|
|
9
|
+
def __init__(self, value):
|
|
10
|
+
"""value is a VALUE pointing to a T_ARRAY object."""
|
|
11
|
+
self.value = value
|
|
12
|
+
self.rarray = value.cast(constants.type_struct('struct RArray').pointer())
|
|
13
|
+
self.basic = value.cast(constants.type_struct('struct RBasic').pointer())
|
|
14
|
+
self.flags = int(self.basic.dereference()['flags'])
|
|
15
|
+
|
|
16
|
+
def length(self):
|
|
17
|
+
"""Get array length. Must be implemented by subclasses."""
|
|
18
|
+
raise NotImplementedError
|
|
19
|
+
|
|
20
|
+
def items_ptr(self):
|
|
21
|
+
"""Get pointer to array items. Must be implemented by subclasses."""
|
|
22
|
+
raise NotImplementedError
|
|
23
|
+
|
|
24
|
+
def get_item(self, index):
|
|
25
|
+
"""Get item at index."""
|
|
26
|
+
if index < 0 or index >= self.length():
|
|
27
|
+
raise IndexError(f"Index {index} out of range")
|
|
28
|
+
items = self.items_ptr()
|
|
29
|
+
return items[index]
|
|
30
|
+
|
|
31
|
+
def __len__(self):
|
|
32
|
+
"""Support len() function."""
|
|
33
|
+
return self.length()
|
|
34
|
+
|
|
35
|
+
def __getitem__(self, index):
|
|
36
|
+
"""Support indexing."""
|
|
37
|
+
return self.get_item(index)
|
|
38
|
+
|
|
39
|
+
def print_recursive(self, printer, depth):
|
|
40
|
+
"""Print this array recursively."""
|
|
41
|
+
# Print the array header
|
|
42
|
+
printer.print(self)
|
|
43
|
+
|
|
44
|
+
# If depth is 0, don't recurse into elements
|
|
45
|
+
if depth <= 0:
|
|
46
|
+
if len(self) > 0:
|
|
47
|
+
printer.print_with_indent(printer.max_depth - depth, " ...")
|
|
48
|
+
return
|
|
49
|
+
|
|
50
|
+
# Print each element
|
|
51
|
+
for i in range(len(self)):
|
|
52
|
+
printer.print_item_label(printer.max_depth - depth, i)
|
|
53
|
+
try:
|
|
54
|
+
element = self[i]
|
|
55
|
+
printer.print_value(element, depth - 1)
|
|
56
|
+
except Exception as e:
|
|
57
|
+
print(f"Error accessing element {i}: {e}")
|
|
58
|
+
|
|
59
|
+
class RArrayEmbedded(RArrayBase):
|
|
60
|
+
"""Embedded array (small arrays stored directly in struct)."""
|
|
61
|
+
|
|
62
|
+
def length(self):
|
|
63
|
+
# Extract length from flags using Ruby's encoding
|
|
64
|
+
# Length is stored in RUBY_FL_USER3|RUBY_FL_USER4 bits, shifted by RUBY_FL_USHIFT+3
|
|
65
|
+
mask = constants.flag("RUBY_FL_USER3") | constants.flag("RUBY_FL_USER4")
|
|
66
|
+
shift = constants.flag("RUBY_FL_USHIFT") + 3
|
|
67
|
+
return (self.flags & mask) >> shift
|
|
68
|
+
|
|
69
|
+
def items_ptr(self):
|
|
70
|
+
return self.rarray.dereference()['as']['ary']
|
|
71
|
+
|
|
72
|
+
def __str__(self):
|
|
73
|
+
"""Return string representation of array."""
|
|
74
|
+
addr = int(self.value)
|
|
75
|
+
return f"<T_ARRAY@0x{addr:x} embedded length={len(self)}>"
|
|
76
|
+
|
|
77
|
+
def print_to(self, terminal):
|
|
78
|
+
"""Print this array with formatting."""
|
|
79
|
+
addr = int(self.value)
|
|
80
|
+
return terminal.print(
|
|
81
|
+
format.metadata, '<',
|
|
82
|
+
format.type, 'T_ARRAY',
|
|
83
|
+
format.metadata, f'@0x{addr:x} embedded length={len(self)}>',
|
|
84
|
+
format.reset
|
|
85
|
+
)
|
|
86
|
+
|
|
87
|
+
class RArrayHeap(RArrayBase):
|
|
88
|
+
"""Heap array (larger arrays with separate memory allocation)."""
|
|
89
|
+
|
|
90
|
+
def length(self):
|
|
91
|
+
return int(self.rarray.dereference()['as']['heap']['len'])
|
|
92
|
+
|
|
93
|
+
def items_ptr(self):
|
|
94
|
+
return self.rarray.dereference()['as']['heap']['ptr']
|
|
95
|
+
|
|
96
|
+
def __str__(self):
|
|
97
|
+
"""Return string representation of array."""
|
|
98
|
+
addr = int(self.value)
|
|
99
|
+
return f"<T_ARRAY@0x{addr:x} heap length={len(self)}>"
|
|
100
|
+
|
|
101
|
+
def print_to(self, terminal):
|
|
102
|
+
"""Print this array with formatting."""
|
|
103
|
+
addr = int(self.value)
|
|
104
|
+
return terminal.print(
|
|
105
|
+
format.metadata, '<',
|
|
106
|
+
format.type, 'T_ARRAY',
|
|
107
|
+
format.metadata, f'@0x{addr:x} heap length={len(self)}>',
|
|
108
|
+
format.reset
|
|
109
|
+
)
|
|
110
|
+
|
|
111
|
+
def RArray(value):
|
|
112
|
+
"""Factory function that returns the appropriate RArray variant.
|
|
113
|
+
|
|
114
|
+
Caller should ensure value is a RUBY_T_ARRAY before calling this function.
|
|
115
|
+
"""
|
|
116
|
+
# Get flags to determine embedded vs heap
|
|
117
|
+
basic = value.cast(constants.type_struct('struct RBasic').pointer())
|
|
118
|
+
flags = int(basic.dereference()['flags'])
|
|
119
|
+
|
|
120
|
+
# Check if array is embedded or heap-allocated using flags
|
|
121
|
+
if (flags & constants.get("RARRAY_EMBED_FLAG")) != 0:
|
|
122
|
+
return RArrayEmbedded(value)
|
|
123
|
+
else:
|
|
124
|
+
return RArrayHeap(value)
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
import debugger
|
|
2
|
+
import constants
|
|
3
|
+
import format
|
|
4
|
+
|
|
5
|
+
def type_of(value):
|
|
6
|
+
"""Get the Ruby type of a VALUE.
|
|
7
|
+
|
|
8
|
+
Returns the RUBY_T_* constant value (e.g., RUBY_T_STRING, RUBY_T_ARRAY),
|
|
9
|
+
or None if the type cannot be determined.
|
|
10
|
+
"""
|
|
11
|
+
basic = value.cast(constants.type_struct('struct RBasic').pointer())
|
|
12
|
+
flags = int(basic.dereference()['flags'])
|
|
13
|
+
RUBY_T_MASK = constants.type('RUBY_T_MASK')
|
|
14
|
+
return flags & RUBY_T_MASK
|
|
15
|
+
|
|
16
|
+
def is_type(value, ruby_type_constant):
|
|
17
|
+
"""Check if a VALUE is of a specific Ruby type.
|
|
18
|
+
|
|
19
|
+
Arguments:
|
|
20
|
+
value: The GDB value to check
|
|
21
|
+
ruby_type_constant: String name of the constant (e.g., 'RUBY_T_STRING')
|
|
22
|
+
|
|
23
|
+
Returns:
|
|
24
|
+
True if the value is of the specified type, False otherwise
|
|
25
|
+
"""
|
|
26
|
+
type_flag = type_of(value)
|
|
27
|
+
expected_type = constants.get(ruby_type_constant)
|
|
28
|
+
return type_flag == expected_type
|
|
29
|
+
|
|
30
|
+
# Map of type constants to their names for display
|
|
31
|
+
TYPE_NAMES = {
|
|
32
|
+
'RUBY_T_NONE': 'None',
|
|
33
|
+
'RUBY_T_OBJECT': 'Object',
|
|
34
|
+
'RUBY_T_CLASS': 'Class',
|
|
35
|
+
'RUBY_T_MODULE': 'Module',
|
|
36
|
+
'RUBY_T_FLOAT': 'Float',
|
|
37
|
+
'RUBY_T_STRING': 'String',
|
|
38
|
+
'RUBY_T_REGEXP': 'Regexp',
|
|
39
|
+
'RUBY_T_ARRAY': 'Array',
|
|
40
|
+
'RUBY_T_HASH': 'Hash',
|
|
41
|
+
'RUBY_T_STRUCT': 'Struct',
|
|
42
|
+
'RUBY_T_BIGNUM': 'Bignum',
|
|
43
|
+
'RUBY_T_FILE': 'File',
|
|
44
|
+
'RUBY_T_DATA': 'Data',
|
|
45
|
+
'RUBY_T_MATCH': 'Match',
|
|
46
|
+
'RUBY_T_COMPLEX': 'Complex',
|
|
47
|
+
'RUBY_T_RATIONAL': 'Rational',
|
|
48
|
+
'RUBY_T_NIL': 'Nil',
|
|
49
|
+
'RUBY_T_TRUE': 'True',
|
|
50
|
+
'RUBY_T_FALSE': 'False',
|
|
51
|
+
'RUBY_T_SYMBOL': 'Symbol',
|
|
52
|
+
'RUBY_T_FIXNUM': 'Fixnum',
|
|
53
|
+
'RUBY_T_UNDEF': 'Undef',
|
|
54
|
+
'RUBY_T_IMEMO': 'IMemo',
|
|
55
|
+
'RUBY_T_NODE': 'Node',
|
|
56
|
+
'RUBY_T_ICLASS': 'IClass',
|
|
57
|
+
'RUBY_T_ZOMBIE': 'Zombie',
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
def type_name(value):
|
|
61
|
+
"""Get the human-readable type name for a VALUE.
|
|
62
|
+
|
|
63
|
+
Returns:
|
|
64
|
+
String like 'String', 'Array', 'Hash', etc., or 'Unknown'
|
|
65
|
+
"""
|
|
66
|
+
type_flag = type_of(value)
|
|
67
|
+
|
|
68
|
+
# Try to find matching type name
|
|
69
|
+
for const_name, display_name in TYPE_NAMES.items():
|
|
70
|
+
if constants.get(const_name) == type_flag:
|
|
71
|
+
return display_name
|
|
72
|
+
|
|
73
|
+
return f'Unknown(0x{type_flag:x})'
|
|
74
|
+
|
|
75
|
+
class RBasic:
|
|
76
|
+
"""Generic Ruby object wrapper for unhandled types.
|
|
77
|
+
|
|
78
|
+
This provides a fallback for types that don't have specialized handlers.
|
|
79
|
+
"""
|
|
80
|
+
def __init__(self, value):
|
|
81
|
+
self.value = value
|
|
82
|
+
self.basic = value.cast(constants.type_struct('struct RBasic').pointer())
|
|
83
|
+
self.flags = int(self.basic.dereference()['flags'])
|
|
84
|
+
self.type_flag = self.flags & constants.type('RUBY_T_MASK')
|
|
85
|
+
|
|
86
|
+
def __str__(self):
|
|
87
|
+
type_str = type_name(self.value)
|
|
88
|
+
return f"<{type_str}:0x{int(self.value):x}>"
|
|
89
|
+
|
|
90
|
+
def print_to(self, terminal):
|
|
91
|
+
"""Return formatted basic object representation."""
|
|
92
|
+
type_str = type_name(self.value)
|
|
93
|
+
addr = int(self.value)
|
|
94
|
+
return terminal.print(
|
|
95
|
+
format.metadata, '<',
|
|
96
|
+
format.type, type_str,
|
|
97
|
+
format.metadata, f':0x{addr:x}>',
|
|
98
|
+
format.reset
|
|
99
|
+
)
|
|
100
|
+
|
|
101
|
+
def print_recursive(self, printer, depth):
|
|
102
|
+
"""Print this basic object (no recursion)."""
|
|
103
|
+
printer.print(self)
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import debugger
|
|
2
|
+
import constants
|
|
3
|
+
import rbasic
|
|
4
|
+
import format
|
|
5
|
+
|
|
6
|
+
class RBignumObject:
|
|
7
|
+
def __init__(self, value):
|
|
8
|
+
self.value = value
|
|
9
|
+
self.rbignum = value.cast(constants.type_struct('struct RBignum').pointer())
|
|
10
|
+
self.basic = value.cast(constants.type_struct('struct RBasic').pointer())
|
|
11
|
+
self.flags = int(self.basic.dereference()['flags'])
|
|
12
|
+
|
|
13
|
+
def is_embedded(self):
|
|
14
|
+
# Check if FL_USER1 flag is set (RBIGNUM_EMBED_FLAG)
|
|
15
|
+
FL_USER1 = 1 << (constants.flag('RUBY_FL_USHIFT') + 1)
|
|
16
|
+
return bool(self.flags & FL_USER1)
|
|
17
|
+
|
|
18
|
+
def __len__(self):
|
|
19
|
+
if self.is_embedded():
|
|
20
|
+
# Embedded length is stored in flags
|
|
21
|
+
# Extract length from FL_USER2 onwards
|
|
22
|
+
return (self.flags >> (constants.flag('RUBY_FL_USHIFT') + 2)) & 0x1F
|
|
23
|
+
else:
|
|
24
|
+
return int(self.rbignum.dereference()['as']['heap']['len'])
|
|
25
|
+
|
|
26
|
+
def __str__(self):
|
|
27
|
+
addr = int(self.value)
|
|
28
|
+
if self.is_embedded():
|
|
29
|
+
return f"<T_BIGNUM@0x{addr:x} embedded length={len(self)}>"
|
|
30
|
+
else:
|
|
31
|
+
return f"<T_BIGNUM@0x{addr:x} heap length={len(self)}>"
|
|
32
|
+
|
|
33
|
+
def print_to(self, terminal):
|
|
34
|
+
"""Return formatted bignum representation."""
|
|
35
|
+
addr = int(self.value)
|
|
36
|
+
storage = "embedded" if self.is_embedded() else "heap"
|
|
37
|
+
return terminal.print(
|
|
38
|
+
format.metadata, '<',
|
|
39
|
+
format.type, 'T_BIGNUM',
|
|
40
|
+
format.metadata, f'@0x{addr:x} {storage} length={len(self)}>',
|
|
41
|
+
format.reset
|
|
42
|
+
)
|
|
43
|
+
|
|
44
|
+
def print_recursive(self, printer, depth):
|
|
45
|
+
"""Print this bignum (no recursion needed)."""
|
|
46
|
+
printer.print(self)
|
|
47
|
+
|
|
48
|
+
def RBignum(value):
|
|
49
|
+
if rbasic.is_type(value, 'RUBY_T_BIGNUM'):
|
|
50
|
+
return RBignumObject(value)
|
|
51
|
+
|
|
52
|
+
return None
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
import debugger
|
|
2
|
+
import constants
|
|
3
|
+
import value
|
|
4
|
+
import rstring
|
|
5
|
+
|
|
6
|
+
class RClass:
|
|
7
|
+
"""Wrapper for Ruby class objects (klass pointers)."""
|
|
8
|
+
|
|
9
|
+
def __init__(self, klass_value):
|
|
10
|
+
"""Initialize with a klass VALUE.
|
|
11
|
+
|
|
12
|
+
Args:
|
|
13
|
+
klass_value: A GDB value representing a Ruby class (klass pointer)
|
|
14
|
+
"""
|
|
15
|
+
self.klass = klass_value
|
|
16
|
+
self._name = None
|
|
17
|
+
|
|
18
|
+
def name(self):
|
|
19
|
+
"""Get the class name as a string.
|
|
20
|
+
|
|
21
|
+
Returns:
|
|
22
|
+
Class name string, or formatted anonymous class representation
|
|
23
|
+
"""
|
|
24
|
+
if self._name is None:
|
|
25
|
+
self._name = self._get_class_name()
|
|
26
|
+
return self._name
|
|
27
|
+
|
|
28
|
+
def _get_class_name(self):
|
|
29
|
+
"""Extract class name from klass pointer.
|
|
30
|
+
|
|
31
|
+
Tries multiple strategies across Ruby versions:
|
|
32
|
+
1. Check against well-known global class pointers (rb_eStandardError, etc.)
|
|
33
|
+
2. Try rb_classext_struct.classpath (Ruby 3.4+)
|
|
34
|
+
3. Fall back to anonymous class format
|
|
35
|
+
|
|
36
|
+
Returns:
|
|
37
|
+
Class name string
|
|
38
|
+
"""
|
|
39
|
+
try:
|
|
40
|
+
# Strategy 1: Check well-known exception classes
|
|
41
|
+
# This works in core dumps since we're just comparing pointers
|
|
42
|
+
well_known = [
|
|
43
|
+
('rb_eException', 'Exception'),
|
|
44
|
+
('rb_eStandardError', 'StandardError'),
|
|
45
|
+
('rb_eSystemExit', 'SystemExit'),
|
|
46
|
+
('rb_eInterrupt', 'Interrupt'),
|
|
47
|
+
('rb_eSignal', 'SignalException'),
|
|
48
|
+
('rb_eFatal', 'fatal'),
|
|
49
|
+
('rb_eScriptError', 'ScriptError'),
|
|
50
|
+
('rb_eLoadError', 'LoadError'),
|
|
51
|
+
('rb_eNotImpError', 'NotImplementedError'),
|
|
52
|
+
('rb_eSyntaxError', 'SyntaxError'),
|
|
53
|
+
('rb_eSecurityError', 'SecurityError'),
|
|
54
|
+
('rb_eNoMemError', 'NoMemoryError'),
|
|
55
|
+
('rb_eTypeError', 'TypeError'),
|
|
56
|
+
('rb_eArgError', 'ArgumentError'),
|
|
57
|
+
('rb_eIndexError', 'IndexError'),
|
|
58
|
+
('rb_eKeyError', 'KeyError'),
|
|
59
|
+
('rb_eRangeError', 'RangeError'),
|
|
60
|
+
('rb_eNameError', 'NameError'),
|
|
61
|
+
('rb_eNoMethodError', 'NoMethodError'),
|
|
62
|
+
('rb_eRuntimeError', 'RuntimeError'),
|
|
63
|
+
('rb_eFrozenError', 'FrozenError'),
|
|
64
|
+
('rb_eIOError', 'IOError'),
|
|
65
|
+
('rb_eEOFError', 'EOFError'),
|
|
66
|
+
('rb_eLocalJumpError', 'LocalJumpError'),
|
|
67
|
+
('rb_eSysStackError', 'SystemStackError'),
|
|
68
|
+
('rb_eRegexpError', 'RegexpError'),
|
|
69
|
+
('rb_eThreadError', 'ThreadError'),
|
|
70
|
+
('rb_eZeroDivError', 'ZeroDivisionError'),
|
|
71
|
+
('rb_eFloatDomainError', 'FloatDomainError'),
|
|
72
|
+
('rb_eStopIteration', 'StopIteration'),
|
|
73
|
+
('rb_eMathDomainError', 'Math::DomainError'),
|
|
74
|
+
('rb_eEncCompatError', 'Encoding::CompatibilityError'),
|
|
75
|
+
]
|
|
76
|
+
|
|
77
|
+
klass_addr = int(self.klass)
|
|
78
|
+
for var_name, class_name in well_known:
|
|
79
|
+
try:
|
|
80
|
+
known_klass = debugger.parse_and_eval(var_name)
|
|
81
|
+
if int(known_klass) == klass_addr:
|
|
82
|
+
return class_name
|
|
83
|
+
except:
|
|
84
|
+
# Variable might not exist in this Ruby version
|
|
85
|
+
continue
|
|
86
|
+
|
|
87
|
+
# Strategy 2: Try modern rb_classext_struct.classpath (Ruby 3.4+)
|
|
88
|
+
try:
|
|
89
|
+
rclass = self.klass.cast(debugger.lookup_type('struct RClass').pointer())
|
|
90
|
+
# Try to access classext.classpath
|
|
91
|
+
try:
|
|
92
|
+
# Try embedded classext (RCLASS_EXT_EMBEDDED)
|
|
93
|
+
rclass_size = debugger.parse_and_eval("sizeof(struct RClass)")
|
|
94
|
+
classext_addr = int(self.klass) + int(rclass_size)
|
|
95
|
+
classext_type = debugger.lookup_type('rb_classext_t')
|
|
96
|
+
classext_ptr = debugger.create_value_from_address(classext_addr, classext_type).address
|
|
97
|
+
classpath_val = classext_ptr['classpath']
|
|
98
|
+
except:
|
|
99
|
+
# Try pointer-based classext
|
|
100
|
+
try:
|
|
101
|
+
classext_ptr = rclass['ptr']
|
|
102
|
+
classpath_val = classext_ptr['classpath']
|
|
103
|
+
except:
|
|
104
|
+
classpath_val = None
|
|
105
|
+
|
|
106
|
+
if classpath_val and int(classpath_val) != 0 and not value.is_nil(classpath_val):
|
|
107
|
+
# Decode the classpath string
|
|
108
|
+
class_name_obj = value.interpret(classpath_val)
|
|
109
|
+
if hasattr(class_name_obj, 'to_str'):
|
|
110
|
+
class_name = class_name_obj.to_str()
|
|
111
|
+
if class_name and not class_name.startswith('<'):
|
|
112
|
+
return class_name
|
|
113
|
+
except:
|
|
114
|
+
pass
|
|
115
|
+
|
|
116
|
+
# Strategy 3: Fall back to anonymous class format
|
|
117
|
+
return f"#<Class:0x{int(self.klass):x}>"
|
|
118
|
+
except Exception as e:
|
|
119
|
+
# Ultimate fallback
|
|
120
|
+
return f"#<Class:0x{int(self.klass):x}>"
|
|
121
|
+
|
|
122
|
+
def __str__(self):
|
|
123
|
+
"""Return the class name."""
|
|
124
|
+
return self.name()
|
|
125
|
+
|
|
126
|
+
def get_class_name(klass_value):
|
|
127
|
+
"""Get the name of a class from its klass pointer.
|
|
128
|
+
|
|
129
|
+
Args:
|
|
130
|
+
klass_value: A GDB value representing a Ruby class (klass pointer)
|
|
131
|
+
|
|
132
|
+
Returns:
|
|
133
|
+
Class name string
|
|
134
|
+
"""
|
|
135
|
+
rc = RClass(klass_value)
|
|
136
|
+
return rc.name()
|