1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848
|
# Copyright (c) 2025, Oracle and/or its affiliates.
"""
Tools for creating stack traces of userspace tasks, from the kernel
This script contains tools that enable creating stack traces for userspace
tasks, when debugging a kernel program. This requires having access to the
userspace pages, which is not common for core dumps (see makedumpfile's -d
option), however it is available for /proc/kcore and /proc/vmcore. The script
contains two approaches:
1. By directly creating a Program to represent a process, which reads memory via
the kernel Program. This allows directly printing stack traces. This approach
works well with /proc/kcore, but in the kexec/kdump environment it may
require too much memory, as well as access to the full root filesystem.
2. By dumping userspace stack memory and some metadata. Later, a second call can
read this information and actually create the stack trace. This approach
works better in a kexec environment, because the root filesystem is not
required, and userspace debuginfo is not consulted.
This script is tested on x86_64 and aarch64, and it's especially suited for
Fedora and its derivatives, due to their inclusion of ".eh_frame" on runtime
binaries, as well as ".gnu_debugdata" sections for address to symbol resolution.
"""
import argparse
import base64
import ctypes.util
import fnmatch
import gzip
import json
import logging
import os
import struct
import sys
import warnings
from bisect import bisect_left
from functools import lru_cache
from pathlib import Path
from typing import Any
from typing import Callable
from typing import Dict
from typing import List
from typing import Optional
from typing import Sequence
from typing import Tuple
from typing import Union
import drgn
from drgn import Architecture
from drgn import FaultError
from drgn import Object
from drgn import Program
from drgn import ProgramFlags
from drgn import sizeof
from drgn import StackTrace
from drgn.helpers.linux import access_remote_vm
from drgn.helpers.linux import cpu_curr
from drgn.helpers.linux import d_path
from drgn.helpers.linux import find_task
from drgn.helpers.linux import for_each_online_cpu
from drgn.helpers.linux import for_each_task
from drgn.helpers.linux import for_each_task_in_group
from drgn.helpers.linux import for_each_vma
from drgn.helpers.linux import task_cpu
from drgn.helpers.linux import task_on_cpu
from drgn.helpers.linux import task_state_to_char
from drgn.helpers.linux import vma_find
log = logging.getLogger("drgn.pstack")
class CommaList(argparse.Action):
"""
Action that allows specifying an option multiple times, with comma-separated
values
"""
def __init__(self, *args, element_type=str, **kwargs) -> None:
self.element_type = element_type
return super().__init__(*args, **kwargs)
def __call__(
self,
parser: argparse.ArgumentParser,
namespace: argparse.Namespace,
value: Union[str, Sequence[Any], None],
option_string: Optional[str] = None,
) -> None:
assert isinstance(value, str)
result = getattr(namespace, self.dest, []) or []
for element in value.split(","):
result.append(self.element_type(element))
setattr(namespace, self.dest, result)
def task_saved_pt_regs(task: Object) -> Object:
"""
Return the userspace registers for the given task struct
This returns the registers which were saved on entry to the kernel. For
vmcores generated via kexec and /proc/vmcore, all userspace tasks will have
registers stored on the stack, because every CPU should be interrupted and
halted. However, for vmcores which were created by a hypervisor, or for
live systems, userspace tasks may be directly executing, and any data stored
on the kernel stack is stale. Drgn does not provide an easy API to get this
info, but you can tell based on whether the stack pointer is a user or
kernel address.
:param task: the ``struct task_struct *`` of this task
:returns: a ``struct pt_regs`` value object
"""
prog = task.prog_
# The pt_regs is dumped at the top of the stack. The stack size may vary,
# but it gets a guard page on top, and there's sometimes padding. See
# TOP_OF_STACK_PADDING in arch/x86/include/asm/thread_info.h -- for x86_64,
# if FRED is enabled, then there is 16 bytes of padding, otherwise 0.
# an offset of 16 bytes for 64-bit.
try:
prog.symbol("fred_rsp0")
padding = 16
except LookupError:
padding = 0
regs_addr = (
task.stack_vm_area.addr.value_()
+ task.stack_vm_area.size.value_()
- sizeof(prog.type("struct pt_regs"))
- prog["PAGE_SIZE"]
- padding
)
return Object(prog, "struct pt_regs", address=regs_addr)
def task_running_pt_regs(kstack: StackTrace) -> Object:
"""
Create a ``struct pt_regs`` object from the top frame of a stack trace
This returns the registers for a task that is/was actively running. They
should be stored in the core dump metadata (e.g. PRSTATUS), and we can get
at them via drgn's stack trace object. Drgn's kernel Program won't be able
to unwind it anyway.
:param kstack: The kernel stack trace.
:returns: A ``struct pt_regs`` value object containing the user-space registers.
"""
prog = kstack.prog
pt_regs = {}
tp = prog.type("struct pt_regs")
if prog.platform.arch == Architecture.X86_64:
rename = {
"rip": "ip",
"rbp": "bp",
"rax": "ax",
"rbx": "bx",
"rcx": "cx",
"rdx": "dx",
"rdi": "di",
"rsi": "si",
"rsp": "sp",
"rflags": "flags",
}
for name, value in kstack[0].registers().items():
if name in rename:
name = rename[name]
try:
tp.member(name)
except LookupError:
continue
pt_regs[name] = value
elif prog.platform.arch == Architecture.AARCH64:
pt_regs["regs"] = [0] * 31
pt_regs["pc"] = kstack[0].pc
for name, value in kstack[0].registers().items():
if name[0] == "x":
pt_regs["regs"][int(name[1:])] = value
elif name == "lr": # an alias for x30
pt_regs["regs"][30] = value
else:
try:
tp.member(name)
pt_regs[name] = value
except LookupError:
pass
else:
raise NotImplementedError(
f"Support for {prog.platform.arch} is not implemented"
)
return Object(prog, "struct pt_regs", value=pt_regs)
def make_fake_pt_regs(up: Program, data: bytes) -> Object:
"""
Create a fake ``struct pt_regs`` to convince drgn to unwind a thread
Drgn's unwinder will accept any object that looks like a ``struct pt_regs``
(a correctly-named struct of the correct size) and use it as the initial
registers for a stack unwind. This function can take the bytes of a real
pt_regs object, and a Program, and return an object associated with that
program which drgn will unwind.
:param up: a user program, like the one returned by ``get_user_prog()``
:param data: the bytes of a ``struct pt_regs``, like that returned by
``get_pt_regs()``
"""
# Luckily, all drgn cares about for x86_64 pt_regs is that it is a structure
# with the right size. Rather than creating a matching struct pt_regs
# definition, we can just create a dummy one of the correct size:
# struct pt_regs {};
# Drgn will happily use that (not questioning why an empty struct has that
# size), and we can save ourselves the trouble of creating a convincing
# replica of the real struct.
fake_pt_regs_type = up.struct_type(
tag="pt_regs", size=len(data), members=[]
)
return Object.from_bytes_(up, fake_pt_regs_type, data)
def get_tasks(prog: Program, args: argparse.Namespace) -> List[Object]:
"""
Return the list of tasks according to the dump arguments
Only task group leaders (i.e. task structs associated with "processes") are
returned, though this does include kthreads. No task will appear twice in
the list.
"""
tasks = []
task_struct_set = set()
def add(task: Object) -> None:
leader = task.group_leader
if leader.value_() not in task_struct_set:
task_struct_set.add(leader.value_())
tasks.append(leader)
# Only iterate over every task on the system if we have to.
if args.comm or args.state or args.all:
comms = [c.encode("utf-8") for c in args.comm]
for task in for_each_task(prog):
if task.tgid != task.pid:
continue # only handle group leaders
if args.all:
add(task)
elif args.state and task_state_to_char(task) in args.state:
add(task)
else:
comm = task.comm.string_()
if any(fnmatch.fnmatch(comm, c) for c in comms):
add(task)
# For on-CPU processes, we can efficiently look these up by CPU
if args.online:
for cpu in for_each_online_cpu(prog):
add(cpu_curr(prog, cpu))
# For PIDs, we can efficiently look these up
for pid in args.pid:
add(find_task(prog, pid))
return tasks
def add_task_args(group: argparse.ArgumentParser) -> None:
group.add_argument(
"--online",
"-o",
action="store_true",
help="dump stacks for all on-cpu tasks (not supported for live kernels)",
)
group.add_argument(
"--all",
"-a",
action="store_true",
help="dump stacks for all PIDs (not recommended)",
)
group.add_argument(
"--state",
"-s",
action=CommaList,
default=[],
help="dump stacks for all tasks in given state (ps(1) 1-letter code)",
)
group.add_argument(
"--comm",
"-c",
action=CommaList,
default=[],
help="dump stacks for all tasks whose command matches this pattern (glob)",
)
group.add_argument(
"--pid",
"-p",
action=CommaList,
default=[],
element_type=int,
help="dump stack for specific PIDs (may be specified multiple times)",
)
def task_dsos(mm: Object) -> List[Tuple[str, int, int, int]]:
"""
Return the mapped DSOs for a task's ``mm_struct``. The return value is a
tuple: (path, start, end, ino)
"""
# For the first pass, find any mapping which starts at offset 0 within the
# file, and record the full range of the file (even if it's not actually
# mapped for its full size). Also, record which file mappings have an
# executable VMA, since we'll only care about those.
file_range: Dict[str, Tuple[int, int, int]] = {}
file_exec = set()
VM_EXEC = 0x4
for vma in for_each_vma(mm):
if not vma.vm_file:
continue
path = os.fsdecode(d_path(vma.vm_file.f_path))
if vma.vm_pgoff == 0:
file_range[path] = (
vma.vm_start.value_(),
(vma.vm_start + vma.vm_file.f_inode.i_size).value_(),
vma.vm_file.f_inode.i_ino.value_(),
)
if vma.vm_flags & VM_EXEC:
file_exec.add(path)
# For the second pass, ensure there is no overlap between the ranges we
# created previously. Since the whole file is not necessarily mapped, we
# want to avoid creating overlapping ranges that drgn is not expecting (see
# https://github.com/osandov/drgn/issues/574). Once we've ensured there are
# no overlaps, and the file had an executable mapping, we can emit it.
ranges = sorted(file_range.items(), key=lambda t: t[1][0])
result = []
for i, (path, (start, end, ino)) in enumerate(ranges):
if i + 1 < len(ranges):
end = min(end, ranges[i + 1][1][1])
if path in file_exec:
result.append((path, start, end, ino))
return result
def task_metadata(prog: Program, task: Object) -> Dict[str, Any]:
"""Return JSON metadata about a task, for later use."""
load_addrs = {}
if task.mm:
for path, start, end, inode in task_dsos(task.mm):
load_addrs[path] = [start, end, inode]
return {
"pid": task.pid.value_(),
"comm": task.comm.string_().decode("utf-8", errors="replace"),
"mm": load_addrs,
"kernel": not bool(task.mm),
"threads": [],
}
def dump_task(
task: Object, outfile: gzip.GzipFile, max_stack_bytes: int = 1048576
) -> Tuple[int, int, int]:
prog = task.prog_
metadata = task_metadata(prog, task)
page_mask = ~(prog["PAGE_SIZE"] - 1)
page_ranges = []
threads = 0
for thread in for_each_task_in_group(task, include_self=True):
tid = thread.pid.value_()
tcomm = thread.comm.string_().decode("utf-8", errors="replace")
try:
kstack = prog.stack_trace(thread)
except ValueError:
log.warning("skipped running TID %d ('%s')", tid, tcomm)
continue
kstack_str = str(kstack)
cpu = task_cpu(thread)
thread_meta = {
"tid": tid,
"comm": tcomm,
"kstack": kstack_str,
"cpu": cpu,
"on_cpu": cpu_curr(prog, cpu) == thread,
"state": task_state_to_char(thread),
}
# Kernel threads can still be included even though the value of this
# tool is getting userspace stacks. Just skip the user registers and
# stack.
if not task.mm:
metadata["threads"].append(thread_meta)
continue
# Add user registers to metadata.
if len(kstack) > 0 and (kstack[0].pc & (1 << 63)):
# CPU was running in kernel mode, get the saved registers
regs = task_saved_pt_regs(thread)
else:
# CPU was in user mode. Drgn won't make be able to unwind
# it, but we can take the top frame and get the original
# registers for unwinding.
regs = task_running_pt_regs(kstack)
kstack_str = "<running in user mode>"
thread_meta["regs"] = base64.b64encode(regs.to_bytes_()).decode()
metadata["threads"].append(thread_meta)
# Now get the stack memory range to dump. Three big assumptions here:
# (1) the stack grows down, (2) there is no stack switching going on,
# and (3) the stack is in its own VMA. These are usually true, but not
# always.
vma = vma_find(task.mm, regs.sp)
if not vma:
log.warning(
"could not find VMA for SP (%x) in TID %d ('%s')",
regs.sp.value_(),
tid,
tcomm,
)
continue
start = (regs.sp & page_mask).value_()
end = vma.vm_end.value_()
page_ranges.append((start, end))
threads += 1
write_json_object(metadata, outfile)
page_ranges.sort()
prev_end = 0
pgsize = prog["PAGE_SIZE"].value_()
max_stack_bytes = max_stack_bytes & page_mask
pages_written = pages_faulted = 0
for start, end in page_ranges:
# There's no guarantee that we have a reasonable stack size. Apply a
# limit here to avoid dumping excess data.
end = min(end, start + max_stack_bytes)
# It's possible (though unlikely) that the ranges overlap. Avoid
# re-writing the same pages multiple times.
start = max(prev_end, start)
prev_end = end
for pgaddr in range(start, end, pgsize):
try:
data = access_remote_vm(task.mm, pgaddr, pgsize)
except FaultError:
pages_faulted += 1
continue
outfile.write(struct.pack("=Q", pgaddr))
outfile.write(data)
pages_written += 1
log.info(
"PID %d: wrote %d pages (%.1f MiB), faulted on %d pages",
task.pid.value_(),
pages_written,
pages_written * pgsize / (1024 * 1024),
pages_faulted,
)
outfile.write(b"\xff" * 8)
return threads, pages_written, pages_faulted
def write_json_object(obj: Dict[str, Any], outfile: gzip.GzipFile) -> None:
encoded_data = json.dumps(obj).encode("utf-8")
outfile.write(struct.pack("=Q", len(encoded_data)))
outfile.write(encoded_data)
def dump_args(parser: argparse.ArgumentParser) -> None:
parser.add_argument(
"output",
help="store stack dumps in the given file",
)
parser.add_argument(
"--max-stack-bytes",
type=int,
default=(1024 * 1024),
help="max stack bytes to dump for any thread (default 1MiB)",
)
add_task_args(parser)
def dump(prog: Program, args: argparse.Namespace) -> None:
"""
Write stack information to a compressed binary file.
The binary format is based on simple blocks of data which are prefixed by an
8-byte little-endian field which contains either a length, or an address.
The following blocks are defined and must occur in order.
- magic header: "pstack" followed by a NUL byte, and a one byte version
- global metadata: 8-byte length followed by JSON object. The object
contains "page_size" field, and maybe others. The next block MUST be a
task metadata.
- task metadata: 8-byte length followed by JSON object. The object
represents all tasks sharing the same mm, or for kthreads, a single task
struct. The object contains an array of threads. The task metadata is
immediately followed by zero or more stack memory blocks, and then an
"end of memory" marker.
- stack memory block: 8-byte field containing a page-aligned address, and
then one page of data.
- end of memory block: an 8-byte field containing the signal value
0xFFFFFFFFFFFFFFFF. The end-of-memory block may be followed by an
additional task metadata, or the end of file.
"""
magic = b"pstack\x00\x01"
file = Path(args.output)
tasks = threads_written = 0
pages_written = pages_faulted = 0
with gzip.open(file, "wb") as f:
f.write(magic)
metadata = {
"page_size": prog["PAGE_SIZE"].value_(),
}
write_json_object(metadata, f)
for task in get_tasks(prog, args):
threads, written, faulted = dump_task(
task, f, max_stack_bytes=args.max_stack_bytes
)
threads_written += threads
pages_written += written
pages_faulted += faulted
tasks += 1
print(
"Dumped {} tasks ({} threads) with {} pages of stack ({:.1f} MiB) -- that's {:.1f} KiB per thread. Skipped {} faulted pages.".format(
tasks,
threads_written,
pages_written,
(pages_written * prog["PAGE_SIZE"].value_()) / (1024 * 1024),
(pages_written * prog["PAGE_SIZE"].value_())
/ (1024)
/ threads_written,
pages_faulted,
)
)
def build_prog_from_dump(
data: List[Tuple[int, bytes]], metadata: Dict[str, Any], page_size: int
) -> Program:
prog = Program(drgn.host_platform)
data.sort()
def read_fn(_, count, offset, __):
# This may be a bit overkill given that the average single-threaded task
# only has a few stack pages to speak of. But I can't justify using a
# linear search when binary search will do better.
page = offset & ~(page_size - 1)
# bisect_left gained a "key" kwarg, but in Python 3.10, oh well...
index = bisect_left(data, (page, b""))
output = bytearray()
while len(output) < count:
if index >= len(data) or data[index][0] != page:
raise FaultError("memory not present", page)
pgoff = (offset + len(output)) & (page_size - 1)
pgend = min(page_size, pgoff + count - len(output))
output += data[index][1][pgoff:pgend]
# Move to the next page, which is hopefully present if we have more
# to read.
page += page_size
index += 1
return output
prog.add_memory_segment(0, 0xFFFFFFFFFFFFFFFF, read_fn, False)
pid = metadata["pid"]
for name, (start, end, ino) in metadata["mm"].items():
path = Path(name)
inode = None
try:
if path.exists():
inode = path.stat().st_ino
else:
log.warning("For PID %d, could not find file %s", pid, name)
continue
except OSError as e:
log.warning(
"For PID %d, could not access file %s (%r)", pid, name, e
)
continue
if inode is not None and inode != ino:
log.warning(
"For PID %d, file %s inode does not match, file may be updated",
pid,
name,
)
mod = prog.extra_module(name=name, create=True)
mod.address_range = (start, end)
mod.try_file(name, force=True)
return prog
@lru_cache(maxsize=1)
def _load_demangler() -> Callable[[str], str]:
# The GNU C++ standard library contains a function called __cxa_demangle
# which we can use to translate C++ function names.
#
# https://gcc.gnu.org/onlinedocs/libstdc++/manual/ext_demangling.html
# https://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00026.html#aaf2180d3f67420d4e937e85b281b94a0
#
# Signature:
# char * __cxxabiv1::__cxa_demangle ( const char *__mangled_name,
# char *__output_buffer,
# size_t *__length,
# int *__status
# )
# The output buffer, when not provided, is allocated and must be freed via
# free().
stdcxx_name = ctypes.util.find_library("stdc++")
stdc_name = ctypes.util.find_library("c")
if not stdcxx_name or not stdc_name:
warnings.warn("Cannot import C++ demangling")
return lambda s: s
stdcxx = ctypes.CDLL(stdcxx_name)
stdc = ctypes.CDLL(stdc_name)
demangle_func_p = stdcxx.__cxa_demangle
demangle_func_p.restype = ctypes.POINTER(ctypes.c_char)
# The status variable has the following return codes:
status_codes = {
0: "The demangling operation succeeded.",
-1: "A memory allocation failure occurred.",
-2: "mangled_name is not a valid name under the C++ ABI mangling rules.",
-3: "One of the arguments is invalid.",
}
def demanglefn(mangled: str) -> str:
in_buffer = ctypes.c_char_p(mangled.encode("utf-8"))
status = ctypes.c_int()
result = demangle_func_p(in_buffer, None, None, ctypes.pointer(status))
if status.value != 0:
msg = status_codes.get(status.value, "unknown error")
warnings.warn(f"Unable to demangle '{mangled}': {msg}")
return mangled
strval = ctypes.cast(result, ctypes.c_char_p).value.decode("utf-8") # type: ignore
stdc.free(result)
return strval
return demanglefn
def demangle(mangled: str) -> str:
if mangled.startswith("_Z"):
return _load_demangler()(mangled)
else:
return mangled
def print_user_stack_trace(regs: Object) -> None:
"""
Prints the userspace stack trace for regs, with the module name included
for each frame. Including the module name is pretty important for userspace.
"""
prog = regs.prog_
trace = prog.stack_trace(regs)
print(" ------ userspace ---------")
for i, frame in enumerate(trace):
name = demangle(frame.name)
offset = ""
try:
sym = frame.symbol()
offset = f"+0x{frame.pc - sym.address:x}/0x{sym.size:x}"
except LookupError:
pass
mod_text = ""
try:
mod = prog.module(frame.pc)
off = frame.pc - mod.address_range[0]
mod_text = f" (from {mod.name} +0x{off:x})"
except LookupError:
pass
source_text = ""
try:
source_info = ":".join(map(str, frame.source()))
source_text = f" ({source_info})"
except LookupError:
pass
print(f" #{i:<2d} {name}{offset}{source_text}{mod_text}")
def dump_print_process(
fp: gzip.GzipFile, meta: Dict[str, Any], page_size: int
) -> None:
"""Print traces for a dumped process"""
pid = meta["pid"]
data = []
end = b"\xff" * 8
while True:
header = fp.read(8)
if header == end:
break
addr = struct.unpack("=Q", header)[0]
data.append((addr, fp.read(page_size)))
comm = meta["comm"]
print(f"[PID: {pid} COMM: {comm}]")
# Special-case for kernel threads, so we don't build a fake program
if meta["kernel"]:
for thread in meta["threads"]:
print(" " + thread["kstack"].replace("\n", "\n "))
return
prog = build_prog_from_dump(data, meta, page_size)
for i, t in enumerate(meta["threads"]):
tid = t["tid"]
tcomm = t["comm"]
st = t["state"]
cpu = t["cpu"]
cpunote = "RUNNING ON " if t["on_cpu"] else ""
print(f" Thread {i} TID={tid} [{st}] {cpunote}CPU={cpu} ('{tcomm}')")
print(" " + t["kstack"].replace("\n", "\n "))
regs = make_fake_pt_regs(prog, base64.b64decode(t["regs"]))
print_user_stack_trace(regs)
def read_json_object(fp: gzip.GzipFile) -> Dict[str, Any]:
header = fp.read(8)
if len(header) != 8:
raise EOFError("end of file")
length = struct.unpack("=Q", header)[0]
return json.loads(fp.read(length))
def dump_print(d: str):
with gzip.open(d, "rb") as f:
try:
magic = f.read(8)
except OSError:
sys.exit(f"error: {args.file} doesn't exist or is not a gzip file")
if magic != b"pstack\x00\x01":
sys.exit("error: unrecognized file format")
metadata = read_json_object(f)
pgsize = metadata["page_size"]
while True:
try:
task_meta = read_json_object(f)
except EOFError:
break
dump_print_process(f, task_meta, pgsize)
print()
def build_prog_from_mm(mm: Object) -> Program:
"""
Create a Program representing a userspace task in the kernel Program
:param mm: the ``struct mm_struct`` for the process
:returns: a Program which can be debugged like a userspace process
"""
prog = mm.prog_
up = Program(prog.platform)
def read_fn(_, count, offset, __):
return access_remote_vm(mm, offset, count)
up.add_memory_segment(0, 0xFFFFFFFFFFFFFFFF, read_fn, False)
for path, start, end, ino in task_dsos(mm):
try:
statbuf = os.stat(path)
if statbuf.st_ino != ino:
log.warning(
"file %s doesn't match the inode on-disk, it may"
" have been updated",
path,
)
except OSError:
pass
mod = up.extra_module(path, create=True)
mod.address_range = (start, end)
mod.try_file(path)
return up
def pstack_print_process(task: Object) -> None:
comm = task.comm.string_().decode("utf-8", errors="replace")
print(f"[PID: {task.pid.value_()} COMM: {comm}]")
prog = task.prog_
if not task.mm:
print(" " + str(prog.stack_trace(task)).replace("\n", "\n "))
return
user_prog = build_prog_from_mm(task.mm)
for i, thread in enumerate(
for_each_task_in_group(task, include_self=True)
):
tid = thread.pid.value_()
tcomm = thread.comm.string_().decode("utf-8", errors="replace")
st = task_state_to_char(thread)
cpu = task_cpu(thread)
on_cpu = task_on_cpu(thread)
cpunote = "RUNNING ON " if on_cpu else ""
print(f" Thread {i} TID={tid} [{st}] {cpunote}CPU={cpu} ('{tcomm}')")
try:
kstack = prog.stack_trace(thread)
except ValueError as e:
if "cannot unwind stack of running task" in str(e):
print(f" {str(e)}")
continue
else:
raise
if len(kstack) > 0 and (kstack[0].pc & (1 << 63)):
# Kernel stack is indeed a kernel stack, print it
print(
" " + str(prog.stack_trace(thread)).replace("\n", "\n ")
)
regs = task_saved_pt_regs(task)
else:
# CPU was in user-mode, print that instead:
print(" <running in user mode>")
regs = task_running_pt_regs(kstack)
fake_regs = make_fake_pt_regs(user_prog, regs.to_bytes_())
print_user_stack_trace(fake_regs)
def pstack(prog: Program) -> None:
parser = argparse.ArgumentParser(description="print stack traces")
add_task_args(parser)
args = parser.parse_args(sys.argv[2:])
if args.online and prog.flags & ProgramFlags.IS_LIVE:
sys.exit("error: --online: cannot unwind running tasks on live system")
for task in get_tasks(prog, args):
pstack_print_process(task)
print()
if __name__ == "__main__":
logging.basicConfig()
prog: Program
if len(sys.argv) <= 1 or sys.argv[1] not in ("dump", "print", "pstack"):
sys.exit(
f"usage: drgn [args...] {sys.argv} [dump | print | pstack] ..."
)
elif sys.argv[1] == "dump":
parser = argparse.ArgumentParser(description="dump stacks")
dump_args(parser)
dump(prog, parser.parse_args(sys.argv[2:])) # noqa
elif sys.argv[1] == "print":
parser = argparse.ArgumentParser(
description="print traces for dumped stacks"
)
parser.add_argument("file", type=Path, help="compressed")
args = parser.parse_args(sys.argv[2:])
dump_print(args.file)
elif sys.argv[1] == "pstack":
pstack(prog) # noqa
|