blob: b683da92f194b50a6cc62c3638e9249d4b10b395 [file] [log] [blame]
Jan Kiszkafe7f9ed2015-02-17 13:47:21 -08001#
2# gdb helper commands and functions for Linux kernel debugging
3#
4# per-cpu tools
5#
6# Copyright (c) Siemens AG, 2011-2013
7#
8# Authors:
9# Jan Kiszka <jan.kiszka@siemens.com>
10#
11# This work is licensed under the terms of the GNU GPL version 2.
12#
13
14import gdb
15
16from linux import tasks, utils
17
18
19MAX_CPUS = 4096
20
21
22def get_current_cpu():
23 if utils.get_gdbserver_type() == utils.GDBSERVER_QEMU:
24 return gdb.selected_thread().num - 1
25 elif utils.get_gdbserver_type() == utils.GDBSERVER_KGDB:
26 tid = gdb.selected_thread().ptid[2]
27 if tid > (0x100000000 - MAX_CPUS - 2):
28 return 0x100000000 - tid - 2
29 else:
30 return tasks.get_thread_info(tasks.get_task_by_pid(tid))['cpu']
31 else:
32 raise gdb.GdbError("Sorry, obtaining the current CPU is not yet "
33 "supported with this gdb server.")
34
35
36def per_cpu(var_ptr, cpu):
37 if cpu == -1:
38 cpu = get_current_cpu()
39 if utils.is_target_arch("sparc:v9"):
40 offset = gdb.parse_and_eval(
41 "trap_block[{0}].__per_cpu_base".format(str(cpu)))
42 else:
43 try:
44 offset = gdb.parse_and_eval(
45 "__per_cpu_offset[{0}]".format(str(cpu)))
46 except gdb.error:
47 # !CONFIG_SMP case
48 offset = 0
49 pointer = var_ptr.cast(utils.get_long_type()) + offset
50 return pointer.cast(var_ptr.type).dereference()
51
52
53class PerCpu(gdb.Function):
54 """Return per-cpu variable.
55
56$lx_per_cpu("VAR"[, CPU]): Return the per-cpu variable called VAR for the
57given CPU number. If CPU is omitted, the CPU of the current context is used.
58Note that VAR has to be quoted as string."""
59
60 def __init__(self):
61 super(PerCpu, self).__init__("lx_per_cpu")
62
63 def invoke(self, var_name, cpu=-1):
64 var_ptr = gdb.parse_and_eval("&" + var_name.string())
65 return per_cpu(var_ptr, cpu)
66
67
68PerCpu()
Jan Kiszka116b47b2015-02-17 13:47:24 -080069
70
71class LxCurrentFunc(gdb.Function):
72 """Return current task.
73
74$lx_current([CPU]): Return the per-cpu task variable for the given CPU
75number. If CPU is omitted, the CPU of the current context is used."""
76
77 def __init__(self):
78 super(LxCurrentFunc, self).__init__("lx_current")
79
80 def invoke(self, cpu=-1):
81 var_ptr = gdb.parse_and_eval("&current_task")
82 return per_cpu(var_ptr, cpu).dereference()
83
84
85LxCurrentFunc()