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")
38 atomic_long_type = CachedType("atomic_long_t")
42 return long_type.get_type()
44 def offset_of(typeobj, field):
45 element = gdb.Value(0).cast(typeobj)
46 return int(str(element[field].address).split()[0], 16)
49 def container_of(ptr, typeobj, member):
50 return (ptr.cast(get_long_type()) -
51 offset_of(typeobj, member)).cast(typeobj)
54 class ContainerOf(gdb.Function):
55 """Return pointer to containing data structure.
57 $container_of(PTR, "TYPE", "ELEMENT"): Given PTR, return a pointer to the
58 data structure of the type TYPE in which PTR is the address of ELEMENT.
59 Note that TYPE and ELEMENT have to be quoted as strings."""
62 super(ContainerOf, self).__init__("container_of")
64 def invoke(self, ptr, typename, elementname):
65 return container_of(ptr, gdb.lookup_type(typename.string()).pointer(),
74 target_endianness = None
77 def get_target_endianness():
78 global target_endianness
79 if target_endianness is None:
80 endian = gdb.execute("show endian", to_string=True)
81 if "little endian" in endian:
82 target_endianness = LITTLE_ENDIAN
83 elif "big endian" in endian:
84 target_endianness = BIG_ENDIAN
86 raise gdb.GdbError("unknown endianness '{0}'".format(str(endian)))
87 return target_endianness
90 def read_memoryview(inf, start, length):
91 return memoryview(inf.read_memory(start, length))
94 def read_u16(buffer, offset):
95 buffer_val = buffer[offset:offset + 2]
98 if type(buffer_val[0]) is str:
99 value[0] = ord(buffer_val[0])
100 value[1] = ord(buffer_val[1])
102 value[0] = buffer_val[0]
103 value[1] = buffer_val[1]
105 if get_target_endianness() == LITTLE_ENDIAN:
106 return value[0] + (value[1] << 8)
108 return value[1] + (value[0] << 8)
111 def read_u32(buffer, offset):
112 if get_target_endianness() == LITTLE_ENDIAN:
113 return read_u16(buffer, offset) + (read_u16(buffer, offset + 2) << 16)
115 return read_u16(buffer, offset + 2) + (read_u16(buffer, offset) << 16)
118 def read_u64(buffer, offset):
119 if get_target_endianness() == LITTLE_ENDIAN:
120 return read_u32(buffer, offset) + (read_u32(buffer, offset + 4) << 32)
122 return read_u32(buffer, offset + 4) + (read_u32(buffer, offset) << 32)
125 def read_ulong(buffer, offset):
126 if get_long_type().sizeof == 8:
127 return read_u64(buffer, offset)
129 return read_u32(buffer, offset)
131 atomic_long_counter_offset = atomic_long_type.get_type()['counter'].bitpos
132 atomic_long_counter_sizeof = atomic_long_type.get_type()['counter'].type.sizeof
134 def read_atomic_long(buffer, offset):
135 global atomic_long_counter_offset
136 global atomic_long_counter_sizeof
138 if atomic_long_counter_sizeof == 8:
139 return read_u64(buffer, offset + atomic_long_counter_offset)
141 return read_u32(buffer, offset + atomic_long_counter_offset)
146 def is_target_arch(arch):
147 if hasattr(gdb.Frame, 'architecture'):
148 return arch in gdb.newest_frame().architecture().name()
151 if target_arch is None:
152 target_arch = gdb.execute("show architecture", to_string=True)
153 return arch in target_arch
158 gdbserver_type = None
161 def get_gdbserver_type():
162 def exit_handler(event):
163 global gdbserver_type
164 gdbserver_type = None
165 gdb.events.exited.disconnect(exit_handler)
169 return gdb.execute("monitor info version", to_string=True) != ""
175 thread_info = gdb.execute("info thread 2", to_string=True)
176 return "shadowCPU0" in thread_info
180 global gdbserver_type
181 if gdbserver_type is None:
183 gdbserver_type = GDBSERVER_QEMU
185 gdbserver_type = GDBSERVER_KGDB
186 if gdbserver_type is not None and hasattr(gdb, 'events'):
187 gdb.events.exited.connect(exit_handler)
188 return gdbserver_type
191 def gdb_eval_or_none(expresssion):
193 return gdb.parse_and_eval(expresssion)
199 parent = d['d_parent']
200 if parent == d or parent == 0:
202 p = dentry_name(d['d_parent']) + "/"
203 return p + d['d_iname'].string()