2 # gdb helper commands and functions for Linux kernel debugging
6 # Copyright (c) Siemens AG, 2011-2013
11 # This work is licensed under the terms of the GNU GPL version 2.
18 def __init__(self, name):
22 def _new_objfile_handler(self, event):
24 gdb.events.new_objfile.disconnect(self._new_objfile_handler)
27 if self._type is None:
28 self._type = gdb.lookup_type(self._name)
29 if self._type is None:
31 "cannot resolve type '{0}'".format(self._name))
32 if hasattr(gdb, 'events') and hasattr(gdb.events, 'new_objfile'):
33 gdb.events.new_objfile.connect(self._new_objfile_handler)
37 long_type = CachedType("long")
42 return long_type.get_type()
45 def offset_of(typeobj, field):
46 element = gdb.Value(0).cast(typeobj)
47 return int(str(element[field].address).split()[0], 16)
50 def container_of(ptr, typeobj, member):
51 return (ptr.cast(get_long_type()) -
52 offset_of(typeobj, member)).cast(typeobj)
55 class ContainerOf(gdb.Function):
56 """Return pointer to containing data structure.
58 $container_of(PTR, "TYPE", "ELEMENT"): Given PTR, return a pointer to the
59 data structure of the type TYPE in which PTR is the address of ELEMENT.
60 Note that TYPE and ELEMENT have to be quoted as strings."""
63 super(ContainerOf, self).__init__("container_of")
65 def invoke(self, ptr, typename, elementname):
66 return container_of(ptr, gdb.lookup_type(typename.string()).pointer(),
75 target_endianness = None
78 def get_target_endianness():
79 global target_endianness
80 if target_endianness is None:
81 endian = gdb.execute("show endian", to_string=True)
82 if "little endian" in endian:
83 target_endianness = LITTLE_ENDIAN
84 elif "big endian" in endian:
85 target_endianness = BIG_ENDIAN
87 raise gdb.GdbError("unknown endianness '{0}'".format(str(endian)))
88 return target_endianness
91 def read_memoryview(inf, start, length):
92 return memoryview(inf.read_memory(start, length))
95 def read_u16(buffer, offset):
96 buffer_val = buffer[offset:offset + 2]
99 if type(buffer_val[0]) is str:
100 value[0] = ord(buffer_val[0])
101 value[1] = ord(buffer_val[1])
103 value[0] = buffer_val[0]
104 value[1] = buffer_val[1]
106 if get_target_endianness() == LITTLE_ENDIAN:
107 return value[0] + (value[1] << 8)
109 return value[1] + (value[0] << 8)
112 def read_u32(buffer, offset):
113 if get_target_endianness() == LITTLE_ENDIAN:
114 return read_u16(buffer, offset) + (read_u16(buffer, offset + 2) << 16)
116 return read_u16(buffer, offset + 2) + (read_u16(buffer, offset) << 16)
119 def read_u64(buffer, offset):
120 if get_target_endianness() == LITTLE_ENDIAN:
121 return read_u32(buffer, offset) + (read_u32(buffer, offset + 4) << 32)
123 return read_u32(buffer, offset + 4) + (read_u32(buffer, offset) << 32)
126 def read_ulong(buffer, offset):
127 if get_long_type().sizeof == 8:
128 return read_u64(buffer, offset)
130 return read_u32(buffer, offset)
136 def is_target_arch(arch):
137 if hasattr(gdb.Frame, 'architecture'):
138 return arch in gdb.newest_frame().architecture().name()
141 if target_arch is None:
142 target_arch = gdb.execute("show architecture", to_string=True)
143 return arch in target_arch
148 gdbserver_type = None
151 def get_gdbserver_type():
152 def exit_handler(event):
153 global gdbserver_type
154 gdbserver_type = None
155 gdb.events.exited.disconnect(exit_handler)
159 return gdb.execute("monitor info version", to_string=True) != ""
165 thread_info = gdb.execute("info thread 2", to_string=True)
166 return "shadowCPU0" in thread_info
170 global gdbserver_type
171 if gdbserver_type is None:
173 gdbserver_type = GDBSERVER_QEMU
175 gdbserver_type = GDBSERVER_KGDB
176 if gdbserver_type is not None and hasattr(gdb, 'events'):
177 gdb.events.exited.connect(exit_handler)
178 return gdbserver_type
181 def gdb_eval_or_none(expresssion):
183 return gdb.parse_and_eval(expresssion)
189 parent = d['d_parent']
190 if parent == d or parent == 0:
192 p = dentry_name(d['d_parent']) + "/"
193 return p + d['d_iname'].string()