6a84778f2c
StdNetBind probes for UDP GSO and GRO support at runtime. UDP GSO is
dependent on checksum offload support on the egress netdev. UDP GSO
will be disabled in the event sendmmsg() returns EIO, which is a strong
signal that the egress netdev does not support checksum offload.
The iperf3 results below demonstrate the effect of this commit between
two Linux computers with i5-12400 CPUs. There is roughly ~13us of round
trip latency between them.
The first result is from commit 052af4a
without UDP GSO or GRO.
Starting Test: protocol: TCP, 1 streams, 131072 byte blocks
[ ID] Interval Transfer Bitrate Retr Cwnd
[ 5] 0.00-10.00 sec 9.85 GBytes 8.46 Gbits/sec 1139 3.01 MBytes
- - - - - - - - - - - - - - - - - - - - - - - - -
Test Complete. Summary Results:
[ ID] Interval Transfer Bitrate Retr
[ 5] 0.00-10.00 sec 9.85 GBytes 8.46 Gbits/sec 1139 sender
[ 5] 0.00-10.04 sec 9.85 GBytes 8.42 Gbits/sec receiver
The second result is with UDP GSO and GRO.
Starting Test: protocol: TCP, 1 streams, 131072 byte blocks
[ ID] Interval Transfer Bitrate Retr Cwnd
[ 5] 0.00-10.00 sec 12.3 GBytes 10.6 Gbits/sec 232 3.15 MBytes
- - - - - - - - - - - - - - - - - - - - - - - - -
Test Complete. Summary Results:
[ ID] Interval Transfer Bitrate Retr
[ 5] 0.00-10.00 sec 12.3 GBytes 10.6 Gbits/sec 232 sender
[ 5] 0.00-10.04 sec 12.3 GBytes 10.6 Gbits/sec receiver
Reviewed-by: Adrian Dewhurst <adrian@tailscale.com>
Signed-off-by: Jordan Whited <jordan@tailscale.com>
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
52 lines
1.3 KiB
Go
52 lines
1.3 KiB
Go
//go:build !linux || android
|
|
|
|
/* SPDX-License-Identifier: MIT
|
|
*
|
|
* Copyright (C) 2017-2023 WireGuard LLC. All Rights Reserved.
|
|
*/
|
|
|
|
package conn
|
|
|
|
import "net/netip"
|
|
|
|
func (e *StdNetEndpoint) SrcIP() netip.Addr {
|
|
return netip.Addr{}
|
|
}
|
|
|
|
func (e *StdNetEndpoint) SrcIfidx() int32 {
|
|
return 0
|
|
}
|
|
|
|
func (e *StdNetEndpoint) SrcToString() string {
|
|
return ""
|
|
}
|
|
|
|
// TODO: macOS, FreeBSD and other BSDs likely do support the sticky sockets
|
|
// {get,set}srcControl feature set, but use alternatively named flags and need
|
|
// ports and require testing.
|
|
|
|
// getSrcFromControl parses the control for PKTINFO and if found updates ep with
|
|
// the source information found.
|
|
func getSrcFromControl(control []byte, ep *StdNetEndpoint) {
|
|
}
|
|
|
|
// setSrcControl parses the control for PKTINFO and if found updates ep with
|
|
// the source information found.
|
|
func setSrcControl(control *[]byte, ep *StdNetEndpoint) {
|
|
}
|
|
|
|
// getGSOSize parses control for UDP_GRO and if found returns its GSO size data.
|
|
func getGSOSize(control []byte) (int, error) {
|
|
return 0, nil
|
|
}
|
|
|
|
// setGSOSize sets a UDP_SEGMENT in control based on gsoSize.
|
|
func setGSOSize(control *[]byte, gsoSize uint16) {
|
|
}
|
|
|
|
// controlSize returns the recommended buffer size for pooling sticky and UDP
|
|
// offloading control data.
|
|
const controlSize = 0
|
|
|
|
const StdNetSupportsStickySockets = false
|