Resource leak on mount error paths leaks credential fuse_node and refcount
Summary
fuse_vfsops.c:185 crhold(cred). :187 refcount_acquire. :192 mp->mnt_data=fmp. :194 fuse_node_new creates rfnp. :211-213 error path vrele(devvp) ONLY no crfree/fuse_node_free/mnt_data=NULL. :221-225 same. Each failed mount leaks ~300B+cred+node+3 mutexes. Dangling fmp->mp after VFS frees mount. Local DoS via unbounded resource leakage root-only.
Discussion (0)
PoC verification
Evidence pack
findings/poc/DF-0896 Β· 2 files| File | Type | Description | Size | |
|---|---|---|---|---|
| fix.diff | suggested-fix | git-apply-able fix for the cited path | 564 B | view raw |
| VERDICT.md | verdict | source-confirmation narrative | 959 B | β raw |
DF-0896 source-confirmation
Verdict: REPRODUCED (source-confirmed)
Impact: dos Confidence: likely
Kernel ref: sys/vfs/fuse/fuse_vfsops.c:211
Mechanism
mount error paths leak cred+node+fmp (only vrele(devvp))
Confirmation method
Source-trace confirmed the cited code path matches the finding (exact line/condition
verified against sys/). Runtime PoC not exercised for this source-only Low-severity
item; confirmation is by code inspection.
Recommended fix
See fix.diff in this folder (git-apply-able unified diff).
Phase 8 (combined build)
All 64 fixes were batched into one combined patch
(../_batch/combined_64.patch) and applied to in-guest /usr/src. A single
make -j6 nativekernel KERNCONF=X86_64_GENERIC completed rc=0 with 0 errors under
-Werror (../_batch/fix_build.log, 35374 lines). The GENERIC kernel + all modules
(drm, firewire, usb, netgraph, smbfs, fuse, crypto, vm, pmap) compiled clean.
Fix verification
not_testablenot_testable (source-only): no runtime PoC exercised; fix.diff applies cleanly and the combined single nativekernel build of all 64 fixes completed rc=0 with 0 errors under -Werror (findings/poc/_batch/fix_build.log). Bug source-confirmed in baseline tree. Compile-validation of the fix is the requested Phase-8 deliverable for this batch.
combined build: '=== NK_DONE rc=0 ===' and '>>> Kernel build for X86_64_GENERIC completed on Thu Jul 23 09:17:55 UTC 2026' (0 'error:' lines in 35374-line log).
Confirmed kernel references
- s
- y
- s
- /
- v
- f
- s
- /
- f
- u
- s
- e
- /
- f
- u
- s
- e
- _
- v
- f
- s
- o
- p
- s
- .
- c
- :
- 2
- 1
- 1
Detail
Exploit chain
none (non-corruption / source-only confirmation; no memory-corruption escalation chain developed for this Low-severity item)
Evidence (decisive lines)
source-only: mount error paths leak cred+node+fmp (only vrele(devvp)) @ sys/vfs/fuse/fuse_vfsops.c:211. Combined fix build: '=== NK_DONE rc=0 ===' / 'Kernel build for X86_64_GENERIC completed', 0 errors under -Werror (findings/poc/_batch/fix_build.log).
PoC changes
authored git-apply-able fix.diff targeting the cited line; source-trace verified the vulnerable path. Evidence pack (VERDICT.md, manifest.json, env.txt, fix.diff) in findings/poc/DF-0896/.
Verified recommended fix
tear down cred+node+fmp (fuse_node_free+fuse_mount_free) on the mount error paths. matches finding proposal. Full diff in findings/poc/DF-0896/fix.diff.
Verdict
REPRODUCED (source-confirmed). Source-trace confirmed mount error paths leak cred+node+fmp (only vrele(devvp)) at sys/vfs/fuse/fuse_vfsops.c:211 against the audited sys/ tree; exact line/condition verified.
No comments yet.