Page MenuHomeFreeBSD

tcp: update error counter when dropping a packet due to bad source
ClosedPublic

Authored by glebius on Mar 23 2023, 9:54 PM.
Tags
None
Referenced Files
F154405324: D39234.id119539.diff
Tue, Apr 28, 9:14 AM
Unknown Object (File)
Mon, Apr 27, 1:53 PM
Unknown Object (File)
Mon, Apr 27, 8:24 AM
Unknown Object (File)
Mon, Apr 27, 7:37 AM
Unknown Object (File)
Thu, Apr 9, 1:46 AM
Unknown Object (File)
Mon, Apr 6, 3:42 AM
Unknown Object (File)
Mar 28 2026, 12:51 AM
Unknown Object (File)
Mar 18 2026, 9:20 AM

Details

Summary

Use the same counter that ip_input()/ip6_input() use for bad destination
address. For IPv6 this is already heavily abused ip6s_badscope, which
needs to be split into several separate error counters.

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped
Build Status
Buildable 50549
Build 47440: arc lint + arc unit

Event Timeline

tuexen added inline comments.
sys/netinet/tcp_input.c
678

Why do you keep the /* XXX */ in one case, but not in the other. I suggest to be consistent.

markj added inline comments.
sys/netinet/tcp_input.c
678

For v4, badaddr seems like a reasonable counter. Here, the use of badscope is overloaded, I believe the XXX comment indicates that this is not the right counter. However, it's better than not counting at all.

sys/netinet/tcp_input.c
678

Yes, exactly what Mark said. :)

This revision was not accepted when it landed; it landed in state Needs Review.Mar 28 2023, 1:38 AM
This revision was automatically updated to reflect the committed changes.