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.
16 from linux import utils, lists
19 task_type = utils.CachedType("struct task_struct")
23 task_ptr_type = task_type.get_type().pointer()
24 init_task = gdb.parse_and_eval("init_task").address
28 thread_head = t['signal']['thread_head']
29 for thread in lists.list_for_each_entry(thread_head, task_ptr_type, 'thread_node'):
32 t = utils.container_of(t['tasks']['next'],
33 task_ptr_type, "tasks")
38 def get_task_by_pid(pid):
39 for task in task_lists():
40 if int(task['pid']) == pid:
45 class LxTaskByPidFunc(gdb.Function):
46 """Find Linux task by PID and return the task_struct variable.
48 $lx_task_by_pid(PID): Given PID, iterate over all tasks of the target and
49 return that task_struct variable which PID matches."""
52 super(LxTaskByPidFunc, self).__init__("lx_task_by_pid")
54 def invoke(self, pid):
55 task = get_task_by_pid(pid)
57 return task.dereference()
59 raise gdb.GdbError("No task of PID " + str(pid))
65 class LxPs(gdb.Command):
66 """Dump Linux tasks."""
69 super(LxPs, self).__init__("lx-ps", gdb.COMMAND_DATA)
71 def invoke(self, arg, from_tty):
72 gdb.write("{:>10} {:>12} {:>7}\n".format("TASK", "PID", "COMM"))
73 for task in task_lists():
74 gdb.write("{} {:^5} {}\n".format(
75 task.format_string().split()[0],
76 task["pid"].format_string(),
77 task["comm"].string()))
83 thread_info_type = utils.CachedType("struct thread_info")
88 def get_thread_info(task):
89 thread_info_ptr_type = thread_info_type.get_type().pointer()
90 if utils.is_target_arch("ia64"):
92 if ia64_task_size is None:
93 ia64_task_size = gdb.parse_and_eval("sizeof(struct task_struct)")
94 thread_info_addr = task.address + ia64_task_size
95 thread_info = thread_info_addr.cast(thread_info_ptr_type)
97 if task.type.fields()[0].type == thread_info_type.get_type():
98 return task['thread_info']
99 thread_info = task['stack'].cast(thread_info_ptr_type)
100 return thread_info.dereference()
103 class LxThreadInfoFunc (gdb.Function):
104 """Calculate Linux thread_info from task variable.
106 $lx_thread_info(TASK): Given TASK, return the corresponding thread_info
110 super(LxThreadInfoFunc, self).__init__("lx_thread_info")
112 def invoke(self, task):
113 return get_thread_info(task)
119 class LxThreadInfoByPidFunc (gdb.Function):
120 """Calculate Linux thread_info from task variable found by pid
122 $lx_thread_info_by_pid(PID): Given PID, return the corresponding thread_info
126 super(LxThreadInfoByPidFunc, self).__init__("lx_thread_info_by_pid")
128 def invoke(self, pid):
129 task = get_task_by_pid(pid)
131 return get_thread_info(task.dereference())
133 raise gdb.GdbError("No task of PID " + str(pid))
136 LxThreadInfoByPidFunc()