Page MenuHomeFreeBSD

netgraph/ng_bridge: Handle send errors during loop processing
ClosedPublic

Authored by donner on Apr 27 2021, 7:58 AM.
Tags
None
Referenced Files
F151273259: D30008.id88246.diff
Tue, Apr 7, 6:17 AM
F151245346: D30008.id88476.diff
Tue, Apr 7, 2:20 AM
Unknown Object (File)
Mon, Apr 6, 8:16 AM
Unknown Object (File)
Mon, Apr 6, 5:08 AM
Unknown Object (File)
Sun, Apr 5, 11:29 AM
Unknown Object (File)
Sun, Apr 5, 3:40 AM
Unknown Object (File)
Sun, Apr 5, 12:21 AM
Unknown Object (File)
Sat, Apr 4, 11:37 AM

Details

Summary

If sending out a packet fails during the loop over all links, the
allocated memory is leaked and not all links receive a copy. This
patch fixes those problems, clarifies a premature abort of the loop,
and fixes a minory style(9) bug.

PR: 255430
MFC: 1 week
Submitted by: Dancho Penev

Test Plan

Build a bridge over a bunch of ng_eiface(4). Set one of the
interfaces down (causing the error), try to send out a broadcast
packet and monitor all the interfaces.

Diff Detail

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

Event Timeline

  • Free packet if not send at all.
donner retitled this revision from netgraph/ng_bridge: Handle send errors during loop handling to netgraph/ng_bridge: Handle send errors during loop processing.Apr 27 2021, 11:11 AM
donner edited the summary of this revision. (Show Details)
julian added inline comments.
sys/netgraph/ng_bridge.c
667

I would do: if error ( error stuff; return error} followed by the non error case continuing on with one level less indent. just a style thing.. result is the same

  • Restructure the error handling in a more common way.
This revision was not accepted when it landed; it landed in state Needs Review.May 13 2021, 7:51 PM
This revision was automatically updated to reflect the committed changes.