# DF-1431 — Verification Verdict

## Verdict: CONFIRMED-BY-SOURCE-TRACE (HW-gated)

**Status:** inconclusive (HW-gated / not reachable as unprivileged maxx)
**Impact:** none (cannot reproduce on QEMU guest — no GPU/HW, or root/operator-only)
**Confidence:** certain (source-trace confirmed bug is real)

## Mechanism

radeon_compute_pll_avivo (:959): target_clock=freq/10. freq=mode->clock from DRM_IOCTL_MODE_SETCRTC. DRM core rejects only clock==0. clock 1-9 → target_clock=0 → :1012 post_div_max=vco_max/target_clock → #DE panic. AVIVO+ ASICs.

**Source:** `sys/dev/drm/radeon/radeon_display.c:959, 1012`

## Why it cannot be reproduced on this guest

HW-gated. radeon.ko requires ATI/AMD AVIVO+ GPU. No GPU in QEMU guest.

## Phase 6: Escalation Assessment

This is a **HW-gated GPU module (radeon display)** finding. The primitive is not reachable from the
unprivileged maxx user on this guest (no hardware / module not loaded / root-only device).
No escalation chain is possible because the trigger path is not exercisable.

For GPU findings: the module (radeon.ko/amdgpu.ko/i915.ko) is a loadable module not
present in the GENERIC kernel and requires actual GPU hardware absent from the QEMU guest.
For root/operator findings: the device node is mode 0600 or 0640 root:operator, and maxx
(uid 1001) has no operator group membership.

## Fix

Guard target_clock==0: return early from radeon_compute_pll_avivo if target_clock is 0.

**Fix description:** Add `if (target_clock == 0) return;` guard after freq/10 computation.

The full git-apply-able diff is in `fix.diff`. It applies cleanly to the audit source tree
and compiles as part of the kernel build (validated via `make nativekernel` rc=0).

## Classification

- **status:** inconclusive
- **reproduced:** 0
- **impact:** none
- **fix_status:** not_testable (HW-gated: PoC cannot run on guest; diff applies + compiles verified)
