Linux Kernel Crash Debug
/install linux-kernel-crash-debug
Linux Kernel Crash Debugging
This skill guides you through analyzing Linux kernel crash dumps using the crash utility.
Installation
Claude Code
claude skill install linux-kernel-crash-debug.skill
OpenClaw
# Method 1: Install via ClawHub
clawhub install linux-kernel-crash-debug
# Method 2: Manual installation
mkdir -p ~/.openclaw/workspace/skills/linux-kernel-crash-debug
cp SKILL.md ~/.openclaw/workspace/skills/linux-kernel-crash-debug/
Quick Start
Starting a Session
# Analyze a dump file
crash vmlinux vmcore
# Debug a running system
crash vmlinux
# Raw RAM dump
crash vmlinux ddr.bin --ram_start=0x80000000
Core Debugging Workflow
1. crash> sys # Confirm panic reason
2. crash> log # View kernel log
3. crash> bt # Analyze call stack
4. crash> struct \x3Ctype> # Inspect data structures
5. crash> kmem \x3Caddr> # Memory analysis
🤖 Agent Execution Directives
If you are an AI/Agent using this skill, do not invoke crash interactively as it will block your subshell.
- Use the bundled wrapper
./scripts/agent-crash.shwhich maps precisely to the workflows below but safely truncates outputs:./scripts/agent-crash.sh -k vmlinux -c vmcore triage- Safely runs initialsys,log, andbt../scripts/agent-crash.sh -k vmlinux -c vmcore flow-oom- Top 15 memory checks../scripts/agent-crash.sh -k vmlinux -c vmcore flow-deadlock- Pulls UN task stacks../scripts/agent-crash.sh -k vmlinux -c vmcore dis-regs \x3Cfunc> \x3Cpid>- Assembly regression../scripts/agent-crash.sh -k vmlinux -c vmcore check-poison \x3Caddr>- Pattern match memory poisons.
- Fallback Strategy: If macros don't solve the issue, fall back to basic primitives manually:
./scripts/agent-crash.sh -k vmlinux -c vmcore run "rd ffff880123456780". - Check
references/agentic-heuristics.mdfor extended expert methodologies.
Prerequisites
| Item | Requirement |
|---|---|
| vmlinux | Must have debug symbols (CONFIG_DEBUG_INFO=y) |
| vmcore | kdump/netdump/diskdump/ELF format |
| Version | vmlinux must exactly match the vmcore kernel version |
Package Installation
Anolis OS / Alibaba Cloud Linux
# Install crash utility
sudo dnf install crash
# Install kernel debuginfo (match your kernel version)
sudo dnf install kernel-debuginfo-$(uname -r)
# Install additional analysis tools
sudo dnf install gdb readelf objdump makedumpfile
# Optional: Install kernel-devel for source code reference
sudo dnf install kernel-devel-$(uname -r)
RHEL / CentOS / Rocky / AlmaLinux
sudo dnf install crash kernel-debuginfo-$(uname -r)
sudo dnf install gdb binutils makedumpfile
Ubuntu / Debian
sudo apt install crash linux-crashdump gdb binutils makedumpfile
sudo apt install linux-image-$(uname -r)-dbgsym
Self-compiled Kernel
# Enable debug symbols in kernel config
make menuconfig # Enable CONFIG_DEBUG_INFO, CONFIG_DEBUG_INFO_REDUCED=n
# Or set directly
scripts/config --enable CONFIG_DEBUG_INFO
scripts/config --enable CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT
Verify Installation
# Check crash version
crash --version
# Verify debuginfo matches kernel
crash /usr/lib/debug/lib/modules/$(uname -r)/vmlinux /proc/kcore
Core Command Reference
Debugging Analysis
| Command | Purpose | Example |
|---|---|---|
sys |
System info/panic reason | sys, sys -i |
log |
Kernel message buffer | log, log | tail |
bt |
Stack backtrace | bt, bt -a, bt -f |
struct |
View structures | struct task_struct \x3Caddr> |
p/px/pd |
Print variables | p jiffies, px current |
kmem |
Memory analysis | kmem -i, kmem -S \x3Ccache> |
Tasks and Processes
| Command | Purpose | Example |
|---|---|---|
ps |
Process list | ps, ps -m | grep UN |
set |
Switch context | set \x3Cpid>, set -p |
foreach |
Batch task operations | foreach bt, foreach UN bt |
task |
task_struct contents | task \x3Cpid> |
files |
Open files | files \x3Cpid> |
Memory Operations
| Command | Purpose | Example |
|---|---|---|
rd |
Read memory | rd \x3Caddr>, rd -p \x3Cphys> |
search |
Search memory | search -k deadbeef |
vtop |
Address translation | vtop \x3Caddr> |
list |
Traverse linked lists | list task_struct.tasks -h \x3Caddr> |
bt Command Details
The most important debugging command:
crash> bt # Current task stack
crash> bt -a # All CPU active tasks
crash> bt -f # Expand stack frame raw data
crash> bt -F # Symbolic stack frame data
crash> bt -l # Show source file and line number
crash> bt -e # Search for exception frames
crash> bt -v # Check stack overflow
crash> bt -R \x3Csym> # Only show stacks referencing symbol
crash> bt \x3Cpid> # Specific process
Context Management
Crash session has a "current context" affecting bt, files, vm commands:
crash> set # View current context
crash> set \x3Cpid> # Switch to specified PID
crash> set \x3Ctask_addr> # Switch to task address
crash> set -p # Restore to panic task
Session Control
# Output control
crash> set scroll off # Disable pagination
crash> sf # Alias for scroll off
# Output redirection
crash> foreach bt > bt.all
# GDB passthrough
crash> gdb bt # Single gdb invocation
crash> set gdb on # Enter gdb mode
(gdb) info registers
(gdb) set gdb off
# Read commands from file
crash> \x3C commands.txt
Typical Debugging Scenarios
Kernel BUG Location
crash> sys # Confirm panic
crash> log | tail -50 # View logs
crash> bt # Call stack
crash> bt -f # Expand frames for parameters
crash> struct \x3Ctype> \x3Caddr> # Inspect data structures
Deadlock Analysis
crash> bt -a # All CPU call stacks
crash> ps -m | grep UN # Uninterruptible processes
crash> foreach UN bt # View waiting reasons
crash> struct mutex \x3Caddr> # Inspect lock state
Memory Issues
crash> kmem -i # Memory statistics
crash> kmem -S \x3Ccache> # Inspect slab
crash> vm \x3Cpid> # Process memory mapping
crash> search -k \x3Cpattern> # Search memory
Stack Overflow
crash> bt -v # Check stack overflow
crash> bt -r # Raw stack data
Advanced Techniques
Chained Queries
crash> bt -f # Get pointers
crash> struct file.f_dentry \x3Caddr>
crash> struct dentry.d_inode \x3Caddr>
crash> struct inode.i_pipe \x3Caddr>
Batch Slab Inspection
crash> kmem -S inode_cache | grep counter | grep -v "= 1"
Kernel Linked List Traversal
crash> list task_struct.tasks -s task_struct.pid -h \x3Cstart>
crash> list -h \x3Caddr> -s dentry.d_name.name
Extended Reference
For detailed information, refer to the following reference files:
| File | Content |
|---|---|
references/advanced-commands.md |
Advanced commands: list, rd, search, vtop, kmem, foreach |
references/vmcore-format.md |
vmcore file format, ELF structure, VMCOREINFO |
references/case-studies.md |
Debugging cases: kernel BUG, deadlock, OOM, NULL pointer, stack overflow |
references/debug-tools-guide.md |
Advanced debugging tools: KASAN, Kprobes, Kmemleak, UBSAN (require kernel rebuild) |
Usage:
crash> help \x3Ccommand> # Built-in help
# Or ask Claude to view reference files
Common Errors
crash: vmlinux and vmcore do not match!
# -> Ensure vmlinux version exactly matches vmcore
crash: cannot find booted kernel
# -> Specify vmlinux path explicitly
crash: cannot resolve symbol
# -> Check if vmlinux has debug symbols
Security Warnings
⚠️ Dangerous Operations
The following commands can cause system damage or data loss:
| Command | Risk | Recommendation |
|---|---|---|
wr |
Writes to live kernel memory | NEVER use on production systems - can crash or corrupt running kernel |
| GDB passthrough | Unrestricted memory access | Use with caution, may modify memory or registers |
🔒 Sensitive Data Handling
- vmcore files contain complete kernel memory, potentially including:
- User process memory and credentials
- Encryption keys and secrets
- Network connection data and passwords
- Access control: Restrict vmcore file access to authorized personnel
- Secure storage: Store dump files in encrypted or access-controlled directories
- Secure disposal: Use
shredor secure delete when disposing of vmcore files
🛡️ Best Practices
- Only analyze vmcore files in isolated/test environments when possible
- Never share raw vmcore files publicly without sanitization
- Consider using
makedumpfile -dto filter sensitive pages before analysis - Document and audit all crash analysis sessions for compliance
Important Notes
- Version Match: vmlinux must exactly match the vmcore kernel version
- Debug Info: Must use vmlinux with debug symbols
- Context Awareness:
bt,files,vmcommands are affected by current context - Live System Modification:
wrcommand modifies running kernel, extremely dangerous
Resources
Contributing
This is an open-source project. Contributions are welcome!
- GitHub Repository: https://github.com/crazyss/linux-kernel-crash-debug
- Report Issues: GitHub Issues
- Submit PRs: Pull requests are welcome for bug fixes, new features, or documentation improvements
See CONTRIBUTING.md for guidelines.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install linux-kernel-crash-debug - 安装完成后,直接呼叫该 Skill 的名称或使用
/linux-kernel-crash-debug触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Linux Kernel Crash Debug 是什么?
Debug Linux kernel crashes using the crash utility and memory debugging tools. Use when users mention kernel crash, kernel panic, vmcore analysis, kernel dum... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 583 次。
如何安装 Linux Kernel Crash Debug?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install linux-kernel-crash-debug」即可一键安装,无需额外配置。
Linux Kernel Crash Debug 是免费的吗?
是的,Linux Kernel Crash Debug 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Linux Kernel Crash Debug 支持哪些平台?
Linux Kernel Crash Debug 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Linux Kernel Crash Debug?
由 James Wang(@crazyss)开发并维护,当前版本 v1.0.4。