Files

176 lines
4.2 KiB
Go
Raw Permalink Normal View History

2020-06-22 10:30:21 -07:00
// Copyright 2020 The gVisor Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package nested_test
import (
"os"
2020-06-22 10:30:21 -07:00
"testing"
"gvisor.dev/gvisor/pkg/refs"
2020-06-22 10:30:21 -07:00
"gvisor.dev/gvisor/pkg/tcpip"
"gvisor.dev/gvisor/pkg/tcpip/header"
"gvisor.dev/gvisor/pkg/tcpip/link/nested"
"gvisor.dev/gvisor/pkg/tcpip/stack"
)
type parentEndpoint struct {
nested.Endpoint
}
var _ stack.LinkEndpoint = (*parentEndpoint)(nil)
var _ stack.NetworkDispatcher = (*parentEndpoint)(nil)
type childEndpoint struct {
2024-06-24 16:54:47 -07:00
mtu uint32
addr tcpip.LinkAddress
2020-06-22 10:30:21 -07:00
stack.LinkEndpoint
dispatcher stack.NetworkDispatcher
}
var _ stack.LinkEndpoint = (*childEndpoint)(nil)
func (c *childEndpoint) Attach(dispatcher stack.NetworkDispatcher) {
c.dispatcher = dispatcher
}
func (c *childEndpoint) IsAttached() bool {
return c.dispatcher != nil
}
func (c *childEndpoint) LinkAddress() tcpip.LinkAddress {
return c.addr
}
func (c *childEndpoint) SetLinkAddress(addr tcpip.LinkAddress) {
c.addr = addr
}
2024-06-24 16:54:47 -07:00
func (c *childEndpoint) MTU() uint32 {
return c.mtu
}
func (c *childEndpoint) SetMTU(mtu uint32) {
c.mtu = mtu
}
2020-06-22 10:30:21 -07:00
type counterDispatcher struct {
count int
}
var _ stack.NetworkDispatcher = (*counterDispatcher)(nil)
2024-02-29 11:07:59 -08:00
func (d *counterDispatcher) DeliverNetworkPacket(tcpip.NetworkProtocolNumber, *stack.PacketBuffer) {
2020-06-22 10:30:21 -07:00
d.count++
}
2024-02-29 11:07:59 -08:00
func (*counterDispatcher) DeliverLinkPacket(tcpip.NetworkProtocolNumber, *stack.PacketBuffer) {
2022-01-28 13:41:00 -08:00
panic("not implemented")
}
2020-06-22 10:30:21 -07:00
func TestNestedLinkEndpoint(t *testing.T) {
var (
childEP childEndpoint
nestedEP parentEndpoint
disp counterDispatcher
)
nestedEP.Endpoint.Init(&childEP, &nestedEP)
if childEP.IsAttached() {
t.Error("On init, childEP.IsAttached() = true, want = false")
}
if nestedEP.IsAttached() {
t.Error("On init, nestedEP.IsAttached() = true, want = false")
}
nestedEP.Attach(&disp)
if disp.count != 0 {
t.Fatalf("After attach, got disp.count = %d, want = 0", disp.count)
}
if !childEP.IsAttached() {
t.Error("After attach, childEP.IsAttached() = false, want = true")
}
if !nestedEP.IsAttached() {
t.Error("After attach, nestedEP.IsAttached() = false, want = true")
}
{
p := stack.NewPacketBuffer(stack.PacketBufferOptions{})
2022-01-26 13:21:16 -08:00
nestedEP.DeliverNetworkPacket(header.IPv4ProtocolNumber, p)
p.DecRef()
if disp.count != 1 {
t.Errorf("After first packet with dispatcher attached, got disp.count = %d, want = 1", disp.count)
}
2020-06-22 10:30:21 -07:00
}
nestedEP.Attach(nil)
if childEP.IsAttached() {
t.Error("After detach, childEP.IsAttached() = true, want = false")
}
if nestedEP.IsAttached() {
t.Error("After detach, nestedEP.IsAttached() = true, want = false")
}
{
disp.count = 0
p := stack.NewPacketBuffer(stack.PacketBufferOptions{})
2022-01-26 13:21:16 -08:00
nestedEP.DeliverNetworkPacket(header.IPv4ProtocolNumber, p)
p.DecRef()
if disp.count != 0 {
t.Errorf("After second packet with dispatcher detached, got disp.count = %d, want = 0", disp.count)
}
2020-06-22 10:30:21 -07:00
}
}
2020-06-22 10:30:21 -07:00
func TestSetLinkAddress(t *testing.T) {
var (
childEP childEndpoint
ep parentEndpoint
disp counterDispatcher
)
addrs := []tcpip.LinkAddress{"abc", "def"}
ep.Endpoint.Init(&childEP, &disp)
for _, addr := range addrs {
ep.SetLinkAddress(addr)
if want, v := addr, ep.LinkAddress(); want != v {
t.Errorf("LinkAddress() = %v, want %v", v, want)
}
}
}
2024-06-24 16:54:47 -07:00
func TestMTU(t *testing.T) {
var (
childEP childEndpoint
ep parentEndpoint
disp counterDispatcher
)
mtus := []uint32{1500, 2000}
ep.Endpoint.Init(&childEP, &disp)
for _, mtu := range mtus {
ep.Endpoint.SetMTU(mtu)
if want, v := mtu, ep.MTU(); want != v {
t.Errorf("LinkAddress() = %v, want %v", v, want)
}
}
}
func TestMain(m *testing.M) {
refs.SetLeakMode(refs.LeaksPanic)
code := m.Run()
2022-12-01 12:43:06 -08:00
refs.DoLeakCheck()
os.Exit(code)
2020-06-22 10:30:21 -07:00
}