惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
博客园 - 叶小钗
Hugging Face - Blog
Hugging Face - Blog
博客园 - 司徒正美
Last Week in AI
Last Week in AI
罗磊的独立博客
量子位
Jina AI
Jina AI
T
Tailwind CSS Blog
Apple Machine Learning Research
Apple Machine Learning Research
IT之家
IT之家
美团技术团队
雷峰网
雷峰网
爱范儿
爱范儿
S
SegmentFault 最新的问题
小众软件
小众软件
月光博客
月光博客
酷 壳 – CoolShell
酷 壳 – CoolShell
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Debugging Legacy C++ Crashes: Core Dumps, Symbols, addr2l...
Rui-Tech · 2026-04-27 · via DEV Community

You're on call. A production C++ service just crashed — no logs, no stack trace, just a dead process and maybe a core file.

This guide gives you a clear, repeatable workflow to diagnose any crash, even when you're missing debug symbols or working with a stripped legacy binary. Whether you have a core file, a symbol file, an unstripped build, or nothing at all, you will always know the next step.


Why This Matters

Debugging crashes in legacy C++ systems is notoriously difficult because:

  • Deployments often strip symbols
  • Core dumps are disabled in production
  • Build IDs don’t match
  • ASLR shifts memory layouts
  • Frame pointers are omitted
  • Systemd overrides ulimit settings

This workflow eliminates guesswork and gives you a deterministic path from crash to root cause.


Crash Debugging Decision Map

CRASH
  |
  v
HAVE CORE FILE?
  |-- No --> Enable cores (Path B) → Reproduce crash
  |
  |-- Yes (Path A)
        |
        v
   HAVE DEBUG SYMBOLS?
        |-- Yes --> Debug now (A4)
        |
        |-- No
              |
              v
        HAVE SYMBOL FILE?
              |-- Yes --> Load with -s (A6)
              |
              |-- No
                    |
                    v
        CAN REPRODUCE WITH SYMBOLS?
              |-- Yes --> Rebuild with -g (A7)
              |
              |-- No
                    |
                    v
        HAVE ORIGINAL BUILD?
              |-- Yes --> Map addresses (A8)
              |
              |-- No --> Fallback analysis (A9)

Enter fullscreen mode Exit fullscreen mode


Path A — You Have a Core File

A1 — Locate the Core File

Common locations:

ls -la core*
ls -la /var/core/
find / -name "core*" -type f 2>/dev/null
cat /proc/sys/kernel/core_pattern

Enter fullscreen mode Exit fullscreen mode

If you find a core file, continue to A2.

If not, jump to Path B.


A2 — Identify Which Binary Produced the Core

file core
gdb -c core -batch -ex "info files"

Enter fullscreen mode Exit fullscreen mode

Confirm that the core file belongs to the binary you intend to debug (path, build, version).


A3 — Check Whether the Binary Has Debug Symbols

file ./myapp
nm ./myapp | head

Enter fullscreen mode Exit fullscreen mode

  • If the binary is not stripped and you see symbol names → go to A4.
  • If it is stripped → go to A5.

A4 — Debugging With Symbols (Best Case)

gdb ./myapp core

Enter fullscreen mode Exit fullscreen mode

Useful GDB commands:

bt full
info threads
thread apply all bt
frame 0
info locals
print var
list

Enter fullscreen mode Exit fullscreen mode

At this point you usually have:

  • The crashing function and line
  • The call stack
  • Local variables and arguments

A5 — Binary Is Stripped: Find the Symbol File

In many production setups, the deployed binary is stripped, but symbol files are archived separately.

A5.1 — Extract Build ID

readelf -n ./myapp | grep "Build ID"

Enter fullscreen mode Exit fullscreen mode

You’ll get something like:

Build ID: 1234567890abcdef...

Enter fullscreen mode Exit fullscreen mode

A5.2 — Locate Matching Symbol File

Search your symbol store (example path):

find /symbols -type f -exec grep -l "1234567890abcdef" {} \;

Enter fullscreen mode Exit fullscreen mode

  • If you find a matching symbol file → go to A6.
  • If not → go to A7.

A6 — Debug Using Separate Symbol Files

If your symbol file is myapp.dbg:

gdb -s myapp.dbg -e ./myapp -c core

Enter fullscreen mode Exit fullscreen mode

Or recombine into a single unstripped binary:

eu-unstrip ./myapp myapp.dbg -o myapp.full
gdb ./myapp.full core

Enter fullscreen mode Exit fullscreen mode

Now you can use the same commands as in A4.


A7 — No Symbol File: Reproduce With Debug Build

If you can rebuild and reproduce the crash:

g++ -g -O0 -fno-omit-frame-pointer -o myapp_debug ...

Enter fullscreen mode Exit fullscreen mode

Run the debug build under the same conditions until it crashes and generates a new core file. Then debug that core with full symbols as in A4.

If you cannot reproduce the crash (e.g., one‑off production incident), continue with A8 or A9.


A8 — Map Raw Addresses Using an Unstripped Build

If you still have the original unstripped build (or can reconstruct it):

  1. Extract the crash address from the core:
   gdb -c core -batch -ex "info registers" | grep rip

Enter fullscreen mode Exit fullscreen mode

  1. Get the memory map of the process:
   gdb -c core -batch -ex "info proc mappings"

Enter fullscreen mode Exit fullscreen mode

  1. Compute the offset:
   offset = crash_address - base_address_of_binary

Enter fullscreen mode Exit fullscreen mode

  1. Map the offset to source:
   addr2line -e /path/to/unstripped/myapp -f 0xOFFSET

Enter fullscreen mode Exit fullscreen mode

This gives you the function and line number corresponding to the crash address.


A9 — No Symbols, No Reproduction: Fallback Forensics

Even with no symbols and no way to reproduce, you can still extract useful information.

Inspect Registers

gdb -c core -batch -ex "info registers"

Enter fullscreen mode Exit fullscreen mode

Look for:

  • Null pointers (rax, rdi, etc. equal to 0x0)
  • Suspicious addresses in your binary’s range

Inspect Instructions Around the Crash

gdb -c core -batch -ex "x/20i $rip-40"

Enter fullscreen mode Exit fullscreen mode

You might see something like:

mov    %rax,%rdi
test   %rdi,%rdi
je     <skip>
mov    (%rdi),%rdx   ← crash here

Enter fullscreen mode Exit fullscreen mode

If rdi is 0x0, you can infer a null pointer dereference, even without symbols.


Path B — No Core File Generated

B1 — Check Core Dump Settings

ulimit -c
cat /proc/sys/kernel/core_pattern

Enter fullscreen mode Exit fullscreen mode

If ulimit -c is 0, core dumps are disabled for your shell or service.


B2 — Enable Core Dumps

Temporary (current shell):

ulimit -c unlimited

Enter fullscreen mode Exit fullscreen mode

Permanent (system‑wide):

echo "* soft core unlimited" | sudo tee -a /etc/security/limits.conf
echo "* hard core unlimited" | sudo tee -a /etc/security/limits.conf

Enter fullscreen mode Exit fullscreen mode

You may need to log out and back in, or restart services.


B3 — Set Core File Location

Configure a directory for core files:

echo "/var/core/core.%e.%p.%t" | sudo tee /proc/sys/kernel/core_pattern

Enter fullscreen mode Exit fullscreen mode

This pattern includes:

  • %e — executable name
  • %p — PID
  • %t — timestamp

B4 — Fix Permissions

sudo mkdir -p /var/core
sudo chmod 1777 /var/core

Enter fullscreen mode Exit fullscreen mode

This ensures any process can write core files there.


B5 — Test Core Dump Generation

Create a small crash program:

int main() {
    int* p = nullptr;
    *p = 42;
}

Enter fullscreen mode Exit fullscreen mode

Compile and run it:

g++ -g crash_test.cpp -o crash_test
./crash_test

Enter fullscreen mode Exit fullscreen mode

Verify that a core file appears in /var/core (or your configured directory).


B6 — Rerun the Crashed Application

Now rerun the real application under the same conditions.

When it crashes, it should generate a core file.

Then return to Path A and continue from A2.


Common Pitfalls

  • Core dumps disabled in production (ulimit -c 0)
  • Stripped binaries deployed without archiving symbol files
  • Mismatched Build IDs between binary and symbol file
  • ASLR causing incorrect address mapping when computing offsets
  • Missing frame pointers (-fomit-frame-pointer) breaking backtraces
  • Systemd or other service managers overriding ulimit
  • Symbol files not stored or indexed by Build ID

Quick Reference Table

Task Command
Enable cores ulimit -c unlimited
Find cores find / -name "core*"
Check symbols file ./myapp
Get Build ID readelf -n ./myapp
Debug with symbols gdb -s myapp.dbg -e myapp -c core
Map address addr2line -e myapp -f 0xOFFSET
Check core pattern cat /proc/sys/kernel/core_pattern

Pro Tips

  • Always compile with -g, then strip separately for release.
  • Store symbol files indexed by Build ID in a central, backed‑up location.
  • Use -fno-omit-frame-pointer for more reliable backtraces.
  • Test core dump generation in a staging environment that mirrors production.
  • Automate core collection and symbol archiving as part of your deployment pipeline.

Conclusion

This workflow covers every crash scenario — from “no core file” to “no symbols” to “full debug context.”

Bookmark it, share it with your team, and use it as your standard operating procedure for production crash analysis.