Skip to content

Commit

Permalink
device: allow blackholing sockets
Browse files Browse the repository at this point in the history
  • Loading branch information
zx2c4 committed Oct 21, 2019
1 parent 47b02c6 commit ffffbbc
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
6 changes: 4 additions & 2 deletions device/boundif_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const (
sockoptIPV6_UNICAST_IF = 31
)

func (device *Device) BindSocketToInterface4(interfaceIndex uint32) error {
func (device *Device) BindSocketToInterface4(interfaceIndex uint32, blackhole bool) error {
/* MSDN says for IPv4 this needs to be in net byte order, so that it's like an IP address with leading zeros. */
bytes := make([]byte, 4)
binary.BigEndian.PutUint32(bytes, interfaceIndex)
Expand All @@ -41,10 +41,11 @@ func (device *Device) BindSocketToInterface4(interfaceIndex uint32) error {
if err != nil {
return err
}
device.net.bind.(*nativeBind).blackhole4 = blackhole
return nil
}

func (device *Device) BindSocketToInterface6(interfaceIndex uint32) error {
func (device *Device) BindSocketToInterface6(interfaceIndex uint32, blackhole bool) error {
sysconn, err := device.net.bind.(*nativeBind).ipv6.SyscallConn()
if err != nil {
return err
Expand All @@ -58,5 +59,6 @@ func (device *Device) BindSocketToInterface6(interfaceIndex uint32) error {
if err != nil {
return err
}
device.net.bind.(*nativeBind).blackhole6 = blackhole
return nil
}
12 changes: 10 additions & 2 deletions device/conn_default.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@ import (
*/

type nativeBind struct {
ipv4 *net.UDPConn
ipv6 *net.UDPConn
ipv4 *net.UDPConn
ipv6 *net.UDPConn
blackhole4 bool
blackhole6 bool
}

type NativeEndpoint net.UDPAddr
Expand Down Expand Up @@ -159,11 +161,17 @@ func (bind *nativeBind) Send(buff []byte, endpoint Endpoint) error {
if bind.ipv4 == nil {
return syscall.EAFNOSUPPORT
}
if bind.blackhole4 {
return nil
}
_, err = bind.ipv4.WriteToUDP(buff, (*net.UDPAddr)(nend))
} else {
if bind.ipv6 == nil {
return syscall.EAFNOSUPPORT
}
if bind.blackhole6 {
return nil
}
_, err = bind.ipv6.WriteToUDP(buff, (*net.UDPAddr)(nend))
}
return err
Expand Down

0 comments on commit ffffbbc

Please sign in to comment.