Created
November 29, 2018 05:41
-
-
Save linjunzhe/43d1f2e85f73b0e51a6385722b42cc37 to your computer and use it in GitHub Desktop.
when net.ipv4.tcp_tw_recycle is enabled, kernel will check SYN packets using tcp_peer_is_proven. If it return false, kernel will drop the packet https://elixir.bootlin.com/linux/v3.10/source/net/ipv4/tcp_ipv4.c#L1555. This systemtap script will output the last timestamp and the new request timestamp in tcp_peer_is_proven when it return false.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
global tm_tcpm_ts | |
probe begin { | |
printf("Starting detecting...\n") | |
} | |
// $tm can't read in function tcp_peer_is_proven in our envirionment (kernel 3.10.0-693.11.1.el7.x86_64). | |
// So the alternative way is read it from another function tcpm_check_stamp which is called in tcp_peer_is_proven. | |
probe kernel.function("tcpm_check_stamp").return { | |
tm_tcpm_ts = $tm->tcpm_ts; | |
} | |
// Print tm->tcpm_ts, req->ts_recent, their delta and return code. | |
probe kernel.function("tcp_peer_is_proven").return { | |
//tm_tcpm_ts = @cast(tcp_get_metrics_req($req, $dst), "struct tcp_metrics_block")->tcpm_ts; | |
if ($return==0) { | |
printf("tm->tcpm_ts:\t%d\treq->ts_recent:\t%d\tdelta:%d\treturn:\t%d\n", | |
tm_tcpm_ts, | |
$req->ts_recent, | |
(tm_tcpm_ts - $req->ts_recent), | |
$return); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment