mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
Improve type safety for network protocol options
The existing implementation for NetworkProtocol.{Set}Option take
arguments of an empty interface type which all types (implicitly)
implement; any type may be passed to the functions.
This change introduces marker interfaces for network protocol options
that may be set or queried which network protocol option types implement
to ensure that invalid types are caught at compile time. Different
interfaces are used to allow the compiler to enforce read-only or
set-only socket options.
PiperOrigin-RevId: 328980359
This commit is contained in:
committed by
gVisor bot
parent
8b9cb36d1c
commit
bdd5996a73
@@ -217,12 +217,12 @@ func (*protocol) ResolveStaticAddress(addr tcpip.Address) (tcpip.LinkAddress, bo
|
||||
}
|
||||
|
||||
// SetOption implements stack.NetworkProtocol.SetOption.
|
||||
func (*protocol) SetOption(option interface{}) *tcpip.Error {
|
||||
func (*protocol) SetOption(tcpip.SettableNetworkProtocolOption) *tcpip.Error {
|
||||
return tcpip.ErrUnknownProtocolOption
|
||||
}
|
||||
|
||||
// Option implements stack.NetworkProtocol.Option.
|
||||
func (*protocol) Option(option interface{}) *tcpip.Error {
|
||||
func (*protocol) Option(tcpip.GettableNetworkProtocolOption) *tcpip.Error {
|
||||
return tcpip.ErrUnknownProtocolOption
|
||||
}
|
||||
|
||||
|
||||
@@ -486,10 +486,10 @@ func (*protocol) ParseAddresses(v buffer.View) (src, dst tcpip.Address) {
|
||||
}
|
||||
|
||||
// SetOption implements NetworkProtocol.SetOption.
|
||||
func (p *protocol) SetOption(option interface{}) *tcpip.Error {
|
||||
func (p *protocol) SetOption(option tcpip.SettableNetworkProtocolOption) *tcpip.Error {
|
||||
switch v := option.(type) {
|
||||
case tcpip.DefaultTTLOption:
|
||||
p.SetDefaultTTL(uint8(v))
|
||||
case *tcpip.DefaultTTLOption:
|
||||
p.SetDefaultTTL(uint8(*v))
|
||||
return nil
|
||||
default:
|
||||
return tcpip.ErrUnknownProtocolOption
|
||||
@@ -497,7 +497,7 @@ func (p *protocol) SetOption(option interface{}) *tcpip.Error {
|
||||
}
|
||||
|
||||
// Option implements NetworkProtocol.Option.
|
||||
func (p *protocol) Option(option interface{}) *tcpip.Error {
|
||||
func (p *protocol) Option(option tcpip.GettableNetworkProtocolOption) *tcpip.Error {
|
||||
switch v := option.(type) {
|
||||
case *tcpip.DefaultTTLOption:
|
||||
*v = tcpip.DefaultTTLOption(p.DefaultTTL())
|
||||
|
||||
@@ -469,10 +469,10 @@ func (p *protocol) NewEndpoint(nicID tcpip.NICID, linkAddrCache stack.LinkAddres
|
||||
}
|
||||
|
||||
// SetOption implements NetworkProtocol.SetOption.
|
||||
func (p *protocol) SetOption(option interface{}) *tcpip.Error {
|
||||
func (p *protocol) SetOption(option tcpip.SettableNetworkProtocolOption) *tcpip.Error {
|
||||
switch v := option.(type) {
|
||||
case tcpip.DefaultTTLOption:
|
||||
p.SetDefaultTTL(uint8(v))
|
||||
case *tcpip.DefaultTTLOption:
|
||||
p.SetDefaultTTL(uint8(*v))
|
||||
return nil
|
||||
default:
|
||||
return tcpip.ErrUnknownProtocolOption
|
||||
@@ -480,7 +480,7 @@ func (p *protocol) SetOption(option interface{}) *tcpip.Error {
|
||||
}
|
||||
|
||||
// Option implements NetworkProtocol.Option.
|
||||
func (p *protocol) Option(option interface{}) *tcpip.Error {
|
||||
func (p *protocol) Option(option tcpip.GettableNetworkProtocolOption) *tcpip.Error {
|
||||
switch v := option.(type) {
|
||||
case *tcpip.DefaultTTLOption:
|
||||
*v = tcpip.DefaultTTLOption(p.DefaultTTL())
|
||||
|
||||
@@ -154,17 +154,17 @@ func (f *fwdTestNetworkProtocol) NewEndpoint(nicID tcpip.NICID, _ LinkAddressCac
|
||||
}
|
||||
}
|
||||
|
||||
func (f *fwdTestNetworkProtocol) SetOption(option interface{}) *tcpip.Error {
|
||||
func (*fwdTestNetworkProtocol) SetOption(tcpip.SettableNetworkProtocolOption) *tcpip.Error {
|
||||
return tcpip.ErrUnknownProtocolOption
|
||||
}
|
||||
|
||||
func (f *fwdTestNetworkProtocol) Option(option interface{}) *tcpip.Error {
|
||||
func (*fwdTestNetworkProtocol) Option(tcpip.GettableNetworkProtocolOption) *tcpip.Error {
|
||||
return tcpip.ErrUnknownProtocolOption
|
||||
}
|
||||
|
||||
func (f *fwdTestNetworkProtocol) Close() {}
|
||||
func (*fwdTestNetworkProtocol) Close() {}
|
||||
|
||||
func (f *fwdTestNetworkProtocol) Wait() {}
|
||||
func (*fwdTestNetworkProtocol) Wait() {}
|
||||
|
||||
func (f *fwdTestNetworkProtocol) LinkAddressRequest(addr, localAddr tcpip.Address, remoteLinkAddr tcpip.LinkAddress, linkEP LinkEndpoint) *tcpip.Error {
|
||||
if f.onLinkAddressResolved != nil {
|
||||
@@ -182,7 +182,7 @@ func (f *fwdTestNetworkProtocol) ResolveStaticAddress(addr tcpip.Address) (tcpip
|
||||
return "", false
|
||||
}
|
||||
|
||||
func (f *fwdTestNetworkProtocol) LinkAddressProtocol() tcpip.NetworkProtocolNumber {
|
||||
func (*fwdTestNetworkProtocol) LinkAddressProtocol() tcpip.NetworkProtocolNumber {
|
||||
return fwdTestNetNumber
|
||||
}
|
||||
|
||||
|
||||
@@ -201,12 +201,12 @@ func (p *testIPv6Protocol) NewEndpoint(nicID tcpip.NICID, _ LinkAddressCache, _
|
||||
}
|
||||
|
||||
// SetOption implements NetworkProtocol.SetOption.
|
||||
func (*testIPv6Protocol) SetOption(interface{}) *tcpip.Error {
|
||||
func (*testIPv6Protocol) SetOption(tcpip.SettableNetworkProtocolOption) *tcpip.Error {
|
||||
return nil
|
||||
}
|
||||
|
||||
// Option implements NetworkProtocol.Option.
|
||||
func (*testIPv6Protocol) Option(interface{}) *tcpip.Error {
|
||||
func (*testIPv6Protocol) Option(tcpip.GettableNetworkProtocolOption) *tcpip.Error {
|
||||
return nil
|
||||
}
|
||||
|
||||
|
||||
@@ -303,12 +303,12 @@ type NetworkProtocol interface {
|
||||
// SetOption allows enabling/disabling protocol specific features.
|
||||
// SetOption returns an error if the option is not supported or the
|
||||
// provided option value is invalid.
|
||||
SetOption(option interface{}) *tcpip.Error
|
||||
SetOption(option tcpip.SettableNetworkProtocolOption) *tcpip.Error
|
||||
|
||||
// Option allows retrieving protocol specific option values.
|
||||
// Option returns an error if the option is not supported or the
|
||||
// provided option value is invalid.
|
||||
Option(option interface{}) *tcpip.Error
|
||||
Option(option tcpip.GettableNetworkProtocolOption) *tcpip.Error
|
||||
|
||||
// Close requests that any worker goroutines owned by the protocol
|
||||
// stop.
|
||||
|
||||
@@ -785,7 +785,7 @@ func (s *Stack) UniqueID() uint64 {
|
||||
// options. This method returns an error if the protocol is not supported or
|
||||
// option is not supported by the protocol implementation or the provided value
|
||||
// is incorrect.
|
||||
func (s *Stack) SetNetworkProtocolOption(network tcpip.NetworkProtocolNumber, option interface{}) *tcpip.Error {
|
||||
func (s *Stack) SetNetworkProtocolOption(network tcpip.NetworkProtocolNumber, option tcpip.SettableNetworkProtocolOption) *tcpip.Error {
|
||||
netProto, ok := s.networkProtocols[network]
|
||||
if !ok {
|
||||
return tcpip.ErrUnknownProtocol
|
||||
@@ -802,7 +802,7 @@ func (s *Stack) SetNetworkProtocolOption(network tcpip.NetworkProtocolNumber, op
|
||||
// if err != nil {
|
||||
// ...
|
||||
// }
|
||||
func (s *Stack) NetworkProtocolOption(network tcpip.NetworkProtocolNumber, option interface{}) *tcpip.Error {
|
||||
func (s *Stack) NetworkProtocolOption(network tcpip.NetworkProtocolNumber, option tcpip.GettableNetworkProtocolOption) *tcpip.Error {
|
||||
netProto, ok := s.networkProtocols[network]
|
||||
if !ok {
|
||||
return tcpip.ErrUnknownProtocol
|
||||
|
||||
@@ -158,23 +158,13 @@ func (*fakeNetworkEndpoint) WriteHeaderIncludedPacket(r *stack.Route, pkt *stack
|
||||
|
||||
func (*fakeNetworkEndpoint) Close() {}
|
||||
|
||||
type fakeNetGoodOption bool
|
||||
|
||||
type fakeNetBadOption bool
|
||||
|
||||
type fakeNetInvalidValueOption int
|
||||
|
||||
type fakeNetOptions struct {
|
||||
good bool
|
||||
}
|
||||
|
||||
// fakeNetworkProtocol is a network-layer protocol descriptor. It aggregates the
|
||||
// number of packets sent and received via endpoints of this protocol. The index
|
||||
// where packets are added is given by the packet's destination address MOD 10.
|
||||
type fakeNetworkProtocol struct {
|
||||
packetCount [10]int
|
||||
sendPacketCount [10]int
|
||||
opts fakeNetOptions
|
||||
defaultTTL uint8
|
||||
}
|
||||
|
||||
func (f *fakeNetworkProtocol) Number() tcpip.NetworkProtocolNumber {
|
||||
@@ -206,22 +196,20 @@ func (f *fakeNetworkProtocol) NewEndpoint(nicID tcpip.NICID, _ stack.LinkAddress
|
||||
}
|
||||
}
|
||||
|
||||
func (f *fakeNetworkProtocol) SetOption(option interface{}) *tcpip.Error {
|
||||
func (f *fakeNetworkProtocol) SetOption(option tcpip.SettableNetworkProtocolOption) *tcpip.Error {
|
||||
switch v := option.(type) {
|
||||
case fakeNetGoodOption:
|
||||
f.opts.good = bool(v)
|
||||
case *tcpip.DefaultTTLOption:
|
||||
f.defaultTTL = uint8(*v)
|
||||
return nil
|
||||
case fakeNetInvalidValueOption:
|
||||
return tcpip.ErrInvalidOptionValue
|
||||
default:
|
||||
return tcpip.ErrUnknownProtocolOption
|
||||
}
|
||||
}
|
||||
|
||||
func (f *fakeNetworkProtocol) Option(option interface{}) *tcpip.Error {
|
||||
func (f *fakeNetworkProtocol) Option(option tcpip.GettableNetworkProtocolOption) *tcpip.Error {
|
||||
switch v := option.(type) {
|
||||
case *fakeNetGoodOption:
|
||||
*v = fakeNetGoodOption(f.opts.good)
|
||||
case *tcpip.DefaultTTLOption:
|
||||
*v = tcpip.DefaultTTLOption(f.defaultTTL)
|
||||
return nil
|
||||
default:
|
||||
return tcpip.ErrUnknownProtocolOption
|
||||
@@ -1640,46 +1628,24 @@ func TestMulticastOrIPv6LinkLocalNeedsNoRoute(t *testing.T) {
|
||||
}
|
||||
}
|
||||
|
||||
func TestNetworkOptions(t *testing.T) {
|
||||
func TestNetworkOption(t *testing.T) {
|
||||
s := stack.New(stack.Options{
|
||||
NetworkProtocols: []stack.NetworkProtocol{fakeNetFactory()},
|
||||
TransportProtocols: []stack.TransportProtocol{},
|
||||
})
|
||||
|
||||
// Try an unsupported network protocol.
|
||||
if err := s.SetNetworkProtocolOption(tcpip.NetworkProtocolNumber(99999), fakeNetGoodOption(false)); err != tcpip.ErrUnknownProtocol {
|
||||
t.Fatalf("SetNetworkProtocolOption(fakeNet2, blah, false) = %v, want = tcpip.ErrUnknownProtocol", err)
|
||||
opt := tcpip.DefaultTTLOption(5)
|
||||
if err := s.SetNetworkProtocolOption(fakeNetNumber, &opt); err != nil {
|
||||
t.Fatalf("s.SetNetworkProtocolOption(%d, &%T(%d)): %s", fakeNetNumber, opt, opt, err)
|
||||
}
|
||||
|
||||
testCases := []struct {
|
||||
option interface{}
|
||||
wantErr *tcpip.Error
|
||||
verifier func(t *testing.T, p stack.NetworkProtocol)
|
||||
}{
|
||||
{fakeNetGoodOption(true), nil, func(t *testing.T, p stack.NetworkProtocol) {
|
||||
t.Helper()
|
||||
fakeNet := p.(*fakeNetworkProtocol)
|
||||
if fakeNet.opts.good != true {
|
||||
t.Fatalf("fakeNet.opts.good = false, want = true")
|
||||
}
|
||||
var v fakeNetGoodOption
|
||||
if err := s.NetworkProtocolOption(fakeNetNumber, &v); err != nil {
|
||||
t.Fatalf("s.NetworkProtocolOption(fakeNetNumber, &v) = %v, want = nil, where v is option %T", v, err)
|
||||
}
|
||||
if v != true {
|
||||
t.Fatalf("s.NetworkProtocolOption(fakeNetNumber, &v) returned v = %v, want = true", v)
|
||||
}
|
||||
}},
|
||||
{fakeNetBadOption(true), tcpip.ErrUnknownProtocolOption, nil},
|
||||
{fakeNetInvalidValueOption(1), tcpip.ErrInvalidOptionValue, nil},
|
||||
var optGot tcpip.DefaultTTLOption
|
||||
if err := s.NetworkProtocolOption(fakeNetNumber, &optGot); err != nil {
|
||||
t.Fatalf("s.NetworkProtocolOption(%d, &%T): %s", fakeNetNumber, optGot, err)
|
||||
}
|
||||
for _, tc := range testCases {
|
||||
if got := s.SetNetworkProtocolOption(fakeNetNumber, tc.option); got != tc.wantErr {
|
||||
t.Errorf("s.SetNetworkProtocolOption(fakeNet, %v) = %v, want = %v", tc.option, got, tc.wantErr)
|
||||
}
|
||||
if tc.verifier != nil {
|
||||
tc.verifier(t, s.NetworkProtocolInstance(fakeNetNumber))
|
||||
}
|
||||
|
||||
if opt != optGot {
|
||||
t.Errorf("got optGot = %d, want = %d", optGot, opt)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -841,10 +841,26 @@ const (
|
||||
PMTUDiscoveryProbe
|
||||
)
|
||||
|
||||
// GettableNetworkProtocolOption is a marker interface for network protocol
|
||||
// options that may be queried.
|
||||
type GettableNetworkProtocolOption interface {
|
||||
isGettableNetworkProtocolOption()
|
||||
}
|
||||
|
||||
// SettableNetworkProtocolOption is a marker interface for network protocol
|
||||
// options that may be set.
|
||||
type SettableNetworkProtocolOption interface {
|
||||
isSettableNetworkProtocolOption()
|
||||
}
|
||||
|
||||
// DefaultTTLOption is used by stack.(*Stack).NetworkProtocolOption to specify
|
||||
// a default TTL.
|
||||
type DefaultTTLOption uint8
|
||||
|
||||
func (*DefaultTTLOption) isGettableNetworkProtocolOption() {}
|
||||
|
||||
func (*DefaultTTLOption) isSettableNetworkProtocolOption() {}
|
||||
|
||||
// AvailableCongestionControlOption is used to query the supported congestion
|
||||
// control algorithms.
|
||||
type AvailableCongestionControlOption string
|
||||
|
||||
@@ -1066,8 +1066,13 @@ func newEmptySandboxNetworkStack(clock tcpip.Clock, uniqueID stack.UniqueID) (in
|
||||
}
|
||||
|
||||
// Set default TTLs as required by socket/netstack.
|
||||
s.Stack.SetNetworkProtocolOption(ipv4.ProtocolNumber, tcpip.DefaultTTLOption(netstack.DefaultTTL))
|
||||
s.Stack.SetNetworkProtocolOption(ipv6.ProtocolNumber, tcpip.DefaultTTLOption(netstack.DefaultTTL))
|
||||
opt := tcpip.DefaultTTLOption(netstack.DefaultTTL)
|
||||
if err := s.Stack.SetNetworkProtocolOption(ipv4.ProtocolNumber, &opt); err != nil {
|
||||
return nil, fmt.Errorf("SetNetworkProtocolOption(%d, &%T(%d)): %s", ipv4.ProtocolNumber, opt, opt, err)
|
||||
}
|
||||
if err := s.Stack.SetNetworkProtocolOption(ipv6.ProtocolNumber, &opt); err != nil {
|
||||
return nil, fmt.Errorf("SetNetworkProtocolOption(%d, &%T(%d)): %s", ipv6.ProtocolNumber, opt, opt, err)
|
||||
}
|
||||
|
||||
// Enable Receive Buffer Auto-Tuning.
|
||||
if err := s.Stack.SetTransportProtocolOption(tcp.ProtocolNumber, tcpip.ModerateReceiveBufferOption(true)); err != nil {
|
||||
|
||||
Reference in New Issue
Block a user