Page MenuHomeFreeBSD

Add missing dtrace receive and send probes for TCP
ClosedPublic

Authored by tuexen on Jul 20 2018, 8:07 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Apr 16, 5:21 PM
Unknown Object (File)
Dec 20 2023, 6:53 AM
Unknown Object (File)
Dec 10 2023, 6:00 PM
Unknown Object (File)
Nov 9 2023, 2:04 AM
Unknown Object (File)
Oct 10 2023, 6:03 PM
Unknown Object (File)
Sep 16 2023, 10:19 AM
Unknown Object (File)
Mar 30 2023, 9:48 PM
Unknown Object (File)
Mar 30 2023, 9:47 PM
Subscribers

Details

Summary

TCP was missing a couple of send and receive probes for dtrace, mostly in the syn-cache handling and the handling of the TIMEWAIT state. This patch fixes that.

Test Plan

Execute the tests from D16288.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

markj added inline comments.
sys/netinet/tcp_timewait.c
458 ↗(On Diff #45626)

I would use an "else" here instead of adding an extra label and goto.

sys/netinet/tcp_timewait.c
458 ↗(On Diff #45626)

So you would prefer:

	/*
	 * Acknowledge the segment if it has data or is not a duplicate ACK.
	 */
	if (thflags != TH_ACK || tlen != 0 ||
	    th->th_seq != tw->rcv_nxt || th->th_ack != tw->snd_nxt) {
		TCP_PROBE5(receive, NULL, NULL, m, NULL, th);
		tcp_twrespond(tw, TH_ACK);
	} else {
drop:
		TCP_PROBE5(receive, NULL, NULL, m, NULL, th);
	}
	INP_WUNLOCK(inp);
	m_freem(m);
	return (0);
}

I thought about it, but didn't like the drop label inside an else clause...
Do you really prefer it? If yes, I'll change. Please let me know.

tuexen retitled this revision from Add missing dtrace receive and send probes to Add missing dtrace receive and send probes for TCP.Jul 22 2018, 11:31 AM
sys/netinet/tcp_timewait.c
458 ↗(On Diff #45626)

I don't prefer it strongly enough to insist upon it, especially since I don't work on TCP. :) The version here is fine with me.

rrs added inline comments.
sys/netinet/tcp_timewait.c
458 ↗(On Diff #45626)

I like it with the label. The drop inside the else is not something
I would like to see.

This revision is now accepted and ready to land.Jul 30 2018, 12:00 PM
This revision was automatically updated to reflect the committed changes.