mirror of
https://github.com/vishvananda/netlink
synced 2025-04-04 23:39:43 +00:00
link: add LinkSetGSOIPv4MaxSize and LinkSetGROIPv4MaxSize
Add two new methods to allow setting GSO and GRO max size attributes only.
They make it much easier to enable IPv4 BIG TCP [0].
The equivalent iproute2 commands are:
$ ip link set $link gso_ipv4_max_size $maxSize
$ ip link set $link gro_ipv4_max_size $maxSize
Also add tests for them. We already do support the IPv6 counterpart via
543bb1cade
("link: add LinkSetGSOMaxSize and LinkSetGROMaxSize").
[0] https://lore.kernel.org/netdev/cover.1674921359.git.lucien.xin@gmail.com/
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
This commit is contained in:
parent
acdc658b86
commit
2b008399a4
@ -171,6 +171,14 @@ func (h *Handle) LinkSetGROMaxSize(link Link, maxSize int) error {
|
|||||||
return ErrNotImplemented
|
return ErrNotImplemented
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (h *Handle) LinkSetGSOIPv4MaxSize(link Link, maxSize int) error {
|
||||||
|
return ErrNotImplemented
|
||||||
|
}
|
||||||
|
|
||||||
|
func (h *Handle) LinkSetGROIPv4MaxSize(link Link, maxSize int) error {
|
||||||
|
return ErrNotImplemented
|
||||||
|
}
|
||||||
|
|
||||||
func (h *Handle) setProtinfoAttr(link Link, mode bool, attr int) error {
|
func (h *Handle) setProtinfoAttr(link Link, mode bool, attr int) error {
|
||||||
return ErrNotImplemented
|
return ErrNotImplemented
|
||||||
}
|
}
|
||||||
|
4
link.go
4
link.go
@ -45,9 +45,11 @@ type LinkAttrs struct {
|
|||||||
NetNsID int
|
NetNsID int
|
||||||
NumTxQueues int
|
NumTxQueues int
|
||||||
NumRxQueues int
|
NumRxQueues int
|
||||||
GSOMaxSize uint32
|
|
||||||
GSOMaxSegs uint32
|
GSOMaxSegs uint32
|
||||||
|
GSOMaxSize uint32
|
||||||
GROMaxSize uint32
|
GROMaxSize uint32
|
||||||
|
GSOIPv4MaxSize uint32
|
||||||
|
GROIPv4MaxSize uint32
|
||||||
Vfs []VfInfo // virtual functions available on link
|
Vfs []VfInfo // virtual functions available on link
|
||||||
Group uint32
|
Group uint32
|
||||||
Slave LinkSlave
|
Slave LinkSlave
|
||||||
|
@ -956,13 +956,13 @@ func LinkSetXdpFdWithFlags(link Link, fd, flags int) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
// LinkSetGSOMaxSize sets the GSO maximum size of the link device.
|
// LinkSetGSOMaxSize sets the IPv6 GSO maximum size of the link device.
|
||||||
// Equivalent to: `ip link set $link gso_max_size $maxSize`
|
// Equivalent to: `ip link set $link gso_max_size $maxSize`
|
||||||
func LinkSetGSOMaxSize(link Link, maxSize int) error {
|
func LinkSetGSOMaxSize(link Link, maxSize int) error {
|
||||||
return pkgHandle.LinkSetGSOMaxSize(link, maxSize)
|
return pkgHandle.LinkSetGSOMaxSize(link, maxSize)
|
||||||
}
|
}
|
||||||
|
|
||||||
// LinkSetGSOMaxSize sets the GSO maximum size of the link device.
|
// LinkSetGSOMaxSize sets the IPv6 GSO maximum size of the link device.
|
||||||
// Equivalent to: `ip link set $link gso_max_size $maxSize`
|
// Equivalent to: `ip link set $link gso_max_size $maxSize`
|
||||||
func (h *Handle) LinkSetGSOMaxSize(link Link, maxSize int) error {
|
func (h *Handle) LinkSetGSOMaxSize(link Link, maxSize int) error {
|
||||||
base := link.Attrs()
|
base := link.Attrs()
|
||||||
@ -983,13 +983,13 @@ func (h *Handle) LinkSetGSOMaxSize(link Link, maxSize int) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
// LinkSetGROMaxSize sets the GRO maximum size of the link device.
|
// LinkSetGROMaxSize sets the IPv6 GRO maximum size of the link device.
|
||||||
// Equivalent to: `ip link set $link gro_max_size $maxSize`
|
// Equivalent to: `ip link set $link gro_max_size $maxSize`
|
||||||
func LinkSetGROMaxSize(link Link, maxSize int) error {
|
func LinkSetGROMaxSize(link Link, maxSize int) error {
|
||||||
return pkgHandle.LinkSetGROMaxSize(link, maxSize)
|
return pkgHandle.LinkSetGROMaxSize(link, maxSize)
|
||||||
}
|
}
|
||||||
|
|
||||||
// LinkSetGROMaxSize sets the GRO maximum size of the link device.
|
// LinkSetGROMaxSize sets the IPv6 GRO maximum size of the link device.
|
||||||
// Equivalent to: `ip link set $link gro_max_size $maxSize`
|
// Equivalent to: `ip link set $link gro_max_size $maxSize`
|
||||||
func (h *Handle) LinkSetGROMaxSize(link Link, maxSize int) error {
|
func (h *Handle) LinkSetGROMaxSize(link Link, maxSize int) error {
|
||||||
base := link.Attrs()
|
base := link.Attrs()
|
||||||
@ -1010,6 +1010,60 @@ func (h *Handle) LinkSetGROMaxSize(link Link, maxSize int) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// LinkSetGSOIPv4MaxSize sets the IPv4 GSO maximum size of the link device.
|
||||||
|
// Equivalent to: `ip link set $link gso_ipv4_max_size $maxSize`
|
||||||
|
func LinkSetGSOIPv4MaxSize(link Link, maxSize int) error {
|
||||||
|
return pkgHandle.LinkSetGSOIPv4MaxSize(link, maxSize)
|
||||||
|
}
|
||||||
|
|
||||||
|
// LinkSetGSOIPv4MaxSize sets the IPv4 GSO maximum size of the link device.
|
||||||
|
// Equivalent to: `ip link set $link gso_ipv4_max_size $maxSize`
|
||||||
|
func (h *Handle) LinkSetGSOIPv4MaxSize(link Link, maxSize int) error {
|
||||||
|
base := link.Attrs()
|
||||||
|
h.ensureIndex(base)
|
||||||
|
req := h.newNetlinkRequest(unix.RTM_SETLINK, unix.NLM_F_ACK)
|
||||||
|
|
||||||
|
msg := nl.NewIfInfomsg(unix.AF_UNSPEC)
|
||||||
|
msg.Index = int32(base.Index)
|
||||||
|
req.AddData(msg)
|
||||||
|
|
||||||
|
b := make([]byte, 4)
|
||||||
|
native.PutUint32(b, uint32(maxSize))
|
||||||
|
|
||||||
|
data := nl.NewRtAttr(nl.IFLA_GSO_IPV4_MAX_SIZE, b)
|
||||||
|
req.AddData(data)
|
||||||
|
|
||||||
|
_, err := req.Execute(unix.NETLINK_ROUTE, 0)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// LinkSetGROIPv4MaxSize sets the IPv4 GRO maximum size of the link device.
|
||||||
|
// Equivalent to: `ip link set $link gro_ipv4_max_size $maxSize`
|
||||||
|
func LinkSetGROIPv4MaxSize(link Link, maxSize int) error {
|
||||||
|
return pkgHandle.LinkSetGROIPv4MaxSize(link, maxSize)
|
||||||
|
}
|
||||||
|
|
||||||
|
// LinkSetGROIPv4MaxSize sets the IPv4 GRO maximum size of the link device.
|
||||||
|
// Equivalent to: `ip link set $link gro_ipv4_max_size $maxSize`
|
||||||
|
func (h *Handle) LinkSetGROIPv4MaxSize(link Link, maxSize int) error {
|
||||||
|
base := link.Attrs()
|
||||||
|
h.ensureIndex(base)
|
||||||
|
req := h.newNetlinkRequest(unix.RTM_SETLINK, unix.NLM_F_ACK)
|
||||||
|
|
||||||
|
msg := nl.NewIfInfomsg(unix.AF_UNSPEC)
|
||||||
|
msg.Index = int32(base.Index)
|
||||||
|
req.AddData(msg)
|
||||||
|
|
||||||
|
b := make([]byte, 4)
|
||||||
|
native.PutUint32(b, uint32(maxSize))
|
||||||
|
|
||||||
|
data := nl.NewRtAttr(nl.IFLA_GRO_IPV4_MAX_SIZE, b)
|
||||||
|
req.AddData(data)
|
||||||
|
|
||||||
|
_, err := req.Execute(unix.NETLINK_ROUTE, 0)
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
func boolAttr(val bool) []byte {
|
func boolAttr(val bool) []byte {
|
||||||
var v uint8
|
var v uint8
|
||||||
if val {
|
if val {
|
||||||
@ -1470,6 +1524,16 @@ func (h *Handle) linkModify(link Link, flags int) error {
|
|||||||
req.AddData(groAttr)
|
req.AddData(groAttr)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if base.GSOIPv4MaxSize > 0 {
|
||||||
|
gsoAttr := nl.NewRtAttr(nl.IFLA_GSO_IPV4_MAX_SIZE, nl.Uint32Attr(base.GSOIPv4MaxSize))
|
||||||
|
req.AddData(gsoAttr)
|
||||||
|
}
|
||||||
|
|
||||||
|
if base.GROIPv4MaxSize > 0 {
|
||||||
|
groAttr := nl.NewRtAttr(nl.IFLA_GRO_IPV4_MAX_SIZE, nl.Uint32Attr(base.GROIPv4MaxSize))
|
||||||
|
req.AddData(groAttr)
|
||||||
|
}
|
||||||
|
|
||||||
if base.Group > 0 {
|
if base.Group > 0 {
|
||||||
groupAttr := nl.NewRtAttr(unix.IFLA_GROUP, nl.Uint32Attr(base.Group))
|
groupAttr := nl.NewRtAttr(unix.IFLA_GROUP, nl.Uint32Attr(base.Group))
|
||||||
req.AddData(groupAttr)
|
req.AddData(groupAttr)
|
||||||
@ -2006,12 +2070,16 @@ func LinkDeserialize(hdr *unix.NlMsghdr, m []byte) (Link, error) {
|
|||||||
base.PhysSwitchID = int(native.Uint32(attr.Value[0:4]))
|
base.PhysSwitchID = int(native.Uint32(attr.Value[0:4]))
|
||||||
case unix.IFLA_LINK_NETNSID:
|
case unix.IFLA_LINK_NETNSID:
|
||||||
base.NetNsID = int(native.Uint32(attr.Value[0:4]))
|
base.NetNsID = int(native.Uint32(attr.Value[0:4]))
|
||||||
case unix.IFLA_GSO_MAX_SIZE:
|
|
||||||
base.GSOMaxSize = native.Uint32(attr.Value[0:4])
|
|
||||||
case unix.IFLA_GSO_MAX_SEGS:
|
case unix.IFLA_GSO_MAX_SEGS:
|
||||||
base.GSOMaxSegs = native.Uint32(attr.Value[0:4])
|
base.GSOMaxSegs = native.Uint32(attr.Value[0:4])
|
||||||
|
case unix.IFLA_GSO_MAX_SIZE:
|
||||||
|
base.GSOMaxSize = native.Uint32(attr.Value[0:4])
|
||||||
case unix.IFLA_GRO_MAX_SIZE:
|
case unix.IFLA_GRO_MAX_SIZE:
|
||||||
base.GROMaxSize = native.Uint32(attr.Value[0:4])
|
base.GROMaxSize = native.Uint32(attr.Value[0:4])
|
||||||
|
case nl.IFLA_GSO_IPV4_MAX_SIZE:
|
||||||
|
base.GSOIPv4MaxSize = native.Uint32(attr.Value[0:4])
|
||||||
|
case nl.IFLA_GRO_IPV4_MAX_SIZE:
|
||||||
|
base.GROIPv4MaxSize = native.Uint32(attr.Value[0:4])
|
||||||
case unix.IFLA_VFINFO_LIST:
|
case unix.IFLA_VFINFO_LIST:
|
||||||
data, err := nl.ParseRouteAttr(attr.Value)
|
data, err := nl.ParseRouteAttr(attr.Value)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
60
link_test.go
60
link_test.go
@ -2148,6 +2148,66 @@ func TestLinkSetGROMaxSize(t *testing.T) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestLinkSetGSOIPv4MaxSize(t *testing.T) {
|
||||||
|
minKernelRequired(t, 6, 3)
|
||||||
|
tearDown := setUpNetlinkTest(t)
|
||||||
|
defer tearDown()
|
||||||
|
|
||||||
|
iface := &Veth{LinkAttrs: LinkAttrs{Name: "foo", TxQLen: testTxQLen, MTU: 1500}, PeerName: "bar"}
|
||||||
|
if err := LinkAdd(iface); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
link, err := LinkByName("foo")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
err = LinkSetGSOIPv4MaxSize(link, 32768)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
link, err = LinkByName("foo")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if link.Attrs().GSOIPv4MaxSize != 32768 {
|
||||||
|
t.Fatalf("GSO max size was not modified")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestLinkSetGROIPv4MaxSize(t *testing.T) {
|
||||||
|
minKernelRequired(t, 6, 3)
|
||||||
|
tearDown := setUpNetlinkTest(t)
|
||||||
|
defer tearDown()
|
||||||
|
|
||||||
|
iface := &Veth{LinkAttrs: LinkAttrs{Name: "foo", TxQLen: testTxQLen, MTU: 1500}, PeerName: "bar"}
|
||||||
|
if err := LinkAdd(iface); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
link, err := LinkByName("foo")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
err = LinkSetGROIPv4MaxSize(link, 32768)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
link, err = LinkByName("foo")
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if link.Attrs().GROIPv4MaxSize != 32768 {
|
||||||
|
t.Fatalf("GRO max size was not modified")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
func TestBridgeCreationWithMulticastSnooping(t *testing.T) {
|
func TestBridgeCreationWithMulticastSnooping(t *testing.T) {
|
||||||
minKernelRequired(t, 4, 4)
|
minKernelRequired(t, 4, 4)
|
||||||
|
|
||||||
|
@ -132,6 +132,14 @@ func LinkSetGROMaxSize(link Link, maxSize int) error {
|
|||||||
return ErrNotImplemented
|
return ErrNotImplemented
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func LinkSetGSOIPv4MaxSize(link Link, maxSize int) error {
|
||||||
|
return ErrNotImplemented
|
||||||
|
}
|
||||||
|
|
||||||
|
func LinkSetGROIPv4MaxSize(link Link, maxSize int) error {
|
||||||
|
return ErrNotImplemented
|
||||||
|
}
|
||||||
|
|
||||||
func LinkAdd(link Link) error {
|
func LinkAdd(link Link) error {
|
||||||
return ErrNotImplemented
|
return ErrNotImplemented
|
||||||
}
|
}
|
||||||
|
@ -20,6 +20,11 @@ const (
|
|||||||
IFLA_INFO_MAX = IFLA_INFO_SLAVE_DATA
|
IFLA_INFO_MAX = IFLA_INFO_SLAVE_DATA
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
IFLA_GSO_IPV4_MAX_SIZE = 63
|
||||||
|
IFLA_GRO_IPV4_MAX_SIZE = 64
|
||||||
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
IFLA_VLAN_UNSPEC = iota
|
IFLA_VLAN_UNSPEC = iota
|
||||||
IFLA_VLAN_ID
|
IFLA_VLAN_ID
|
||||||
|
Loading…
Reference in New Issue
Block a user