Page MenuHomeFreeBSD

debugnet: fix an errant assertion
ClosedPublic

Authored by mhorne on May 12 2022, 3:47 PM.
Tags
None
Referenced Files
Unknown Object (File)
Fri, Jan 24, 4:53 AM
Unknown Object (File)
Sat, Jan 11, 2:38 PM
Unknown Object (File)
Dec 7 2024, 7:52 PM
Unknown Object (File)
Dec 2 2024, 12:55 AM
Unknown Object (File)
Nov 25 2024, 8:59 AM
Unknown Object (File)
Nov 23 2024, 12:44 AM
Unknown Object (File)
Nov 21 2024, 11:53 AM
Unknown Object (File)
Nov 19 2024, 7:40 AM

Details

Summary

We may call debugnet_free() before g_debugnet_pcb_inuse is true,
specifically in the cases where the interface is down or does not
support debugnet. pcb->dp_drv_input is used to hold the real driver
if_input callback while debugnet is in use, so we can check the status
of this field in the assertion.

This can be triggered trivially by trying to configure netdump on an
unsupported interface at the ddb prompt.

Initializing the dp_drv_input field to NULL explicitly is not necessary
but helps display the intent.

PR: 263929
Reported by: Martin Filla <freebsd@sysctl.cz>

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable