Memory API Misuse (CWE-690, CWE-415, CWE-401)
SkillFiles & storageDetects function-local misuse of memory and resource APIs in C, C++, and Rust unsafe — allocations whose return value is not checked, frees on error paths that race the success path, locks initialized incorrectly, file descriptors leaked across exec. Use when writing or modifying C or C++ code that calls malloc/calloc/realloc/free, mmap/munmap, pthread_mutex_*, fopen/open, or any kernel/library memory or resource primitive. Use when writing Rust code inside an unsafe block that calls a raw allocation or pointer API.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Memory API Misuse (CWE-690, CWE-415, CWE-401) skill
What this skill tells your AI
The instructions your AI receives, as published by thejefflarson/soundcheck in .claude/skills/memory-api-misuse/SKILL.md and read by ahel’s review.
What this checks
C, C++, and Rust unsafe memory and resource APIs called incorrectly at a single call
site — a NULL return dereferenced, a double-free on an error path, a lock used
before init, a file descriptor that survives exec(). Existing static analyzers
catch the easy cases; this skill targets the ones that read clean on first pass but
fail in error or cleanup paths. It does local pattern matching at the call site,
not whole-program lifetime analysis (that's the job of TSAN, ASAN, Valgrind, and the
Rust borrow checker).
Vulnerable patterns
- Allocation API (
malloc,calloc,mmap, equivalent) whose return is used without a NULL orMAP_FAILEDcheck before the next dereference reallocwhose return value overwrites the original pointer in place, leaking the original allocation if reallocation fails- A buffer freed on an error path that also flows through a common cleanup label that frees it again, producing a double-free
- Mutex, rwlock, or semaphore used before its initializer (function call or static initializer macro) has run
- File-descriptor-producing call (
fopen,open, equivalent) that opens an fd which must not surviveexec()without the close-on-exec mode or flag set - Rust
unsafeblock that calls a raw FFI allocation or pointer API and dereferences the result with no NULL check free(or equivalent) on a pointer with no immediate nulling, leaving the dangling pointer available for later use-after-free
Fix immediately
Flag the vulnerable call site and rewrite it so the API return value is checked and cleanup runs exactly once per allocation. Establish these properties:
- Every allocation return is checked before use. A NULL or
MAP_FAILEDreturn turns into a controlled error path — never a silent dereference. reallocresults land in a temporary first. The original pointer remains valid on failure so the caller can free it deterministically; the original pointer is overwritten only after success is confirmed.- Allocation cleanup has a single owner per path. Use one cleanup label, one
RAII wrapper, or one
defer/scope_exit— neverfreethe same allocation on both an error branch and a shared cleanup path. - Synchronization primitives are initialized before first use. A static initializer macro at declaration or a documented init call before the first lock — never used uninitialized.
- File descriptors that should not cross
exec()are opened close-on-exec. Use the close-on-exec mode flag at open time, not a follow-upfcntlrace. - Freed pointers are nulled at the same call site so subsequent reads fault loudly instead of silently using freed memory.
Translate these principles to the specific allocator, lock, and fd API of the audited file. Use the platform's documented safe forms — do not invent variants.
Verification
After rewriting, confirm:
- Every allocation return is checked against NULL (or the API's documented failure sentinel) before use
- No allocation is freed on more than one path through the function — a single cleanup owner per allocation
- Every synchronization primitive is initialized before its first lock or wait call
- Every file descriptor that must not survive
exec()is opened with the close-on-exec flag or mode at open time - In Rust
unsafe, every raw pointer obtained from an FFI API is checked for NULL before dereference or slice construction
References
- CWE-690 (Unchecked Return Value to NULL Pointer Dereference)
- CWE-415 (Double Free)
- CWE-401 (Missing Release of Memory after Effective Lifetime)
- CWE-403 (Exposure of File Descriptor to Unintended Control Sphere)
Signals
- GitHub stars
- 20
- Last commit
- Jul 2026
Advanced
- Catalog kind
- skill
- Gateway key
memory-api-misuse- Source
- github.com/thejefflarson/soundcheck