2018-05-03 13:04:00 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0
|
|
|
|
*
|
|
|
|
* Copyright (C) 2017-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
|
2018-05-18 22:34:56 +00:00
|
|
|
* Copyright (C) 2017-2018 Mathias N. Hall-Andersen <mathias@hall-andersen.dk>.
|
2018-05-03 13:04:00 +00:00
|
|
|
*/
|
|
|
|
|
2017-08-11 14:18:20 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-09-24 19:35:25 +00:00
|
|
|
"errors"
|
2017-11-14 15:27:53 +00:00
|
|
|
"golang.org/x/net/ipv4"
|
|
|
|
"golang.org/x/net/ipv6"
|
2017-08-11 14:18:20 +00:00
|
|
|
"net"
|
|
|
|
)
|
|
|
|
|
2018-05-16 20:20:15 +00:00
|
|
|
const (
|
|
|
|
ConnRoutineNumber = 2
|
|
|
|
)
|
|
|
|
|
2017-11-18 22:34:02 +00:00
|
|
|
/* A Bind handles listening on a port for both IPv6 and IPv4 UDP traffic
|
|
|
|
*/
|
|
|
|
type Bind interface {
|
2017-10-08 20:03:32 +00:00
|
|
|
SetMark(value uint32) error
|
2017-11-18 22:34:02 +00:00
|
|
|
ReceiveIPv6(buff []byte) (int, Endpoint, error)
|
|
|
|
ReceiveIPv4(buff []byte) (int, Endpoint, error)
|
|
|
|
Send(buff []byte, end Endpoint) error
|
2017-10-08 20:03:32 +00:00
|
|
|
Close() error
|
|
|
|
}
|
|
|
|
|
2017-11-17 16:25:45 +00:00
|
|
|
/* An Endpoint maintains the source/destination caching for a peer
|
|
|
|
*
|
2017-11-18 22:34:02 +00:00
|
|
|
* dst : the remote address of a peer ("endpoint" in uapi terminology)
|
2017-11-17 16:25:45 +00:00
|
|
|
* src : the local address from which datagrams originate going to the peer
|
|
|
|
*/
|
2017-11-18 22:34:02 +00:00
|
|
|
type Endpoint interface {
|
2017-11-17 16:25:45 +00:00
|
|
|
ClearSrc() // clears the source address
|
|
|
|
SrcToString() string // returns the local source address (ip:port)
|
|
|
|
DstToString() string // returns the destination address (ip:port)
|
|
|
|
DstToBytes() []byte // used for mac2 cookie calculations
|
|
|
|
DstIP() net.IP
|
|
|
|
SrcIP() net.IP
|
|
|
|
}
|
|
|
|
|
2017-09-24 19:35:25 +00:00
|
|
|
func parseEndpoint(s string) (*net.UDPAddr, error) {
|
|
|
|
|
|
|
|
// ensure that the host is an IP address
|
|
|
|
|
|
|
|
host, _, err := net.SplitHostPort(s)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if ip := net.ParseIP(host); ip == nil {
|
|
|
|
return nil, errors.New("Failed to parse IP address: " + host)
|
|
|
|
}
|
|
|
|
|
|
|
|
// parse address and port
|
|
|
|
|
|
|
|
addr, err := net.ResolveUDPAddr("udp", s)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2018-05-18 03:02:35 +00:00
|
|
|
ip4 := addr.IP.To4()
|
|
|
|
if ip4 != nil {
|
|
|
|
addr.IP = ip4
|
|
|
|
}
|
2017-09-24 19:35:25 +00:00
|
|
|
return addr, err
|
|
|
|
}
|
|
|
|
|
2017-11-11 14:43:55 +00:00
|
|
|
/* Must hold device and net lock
|
|
|
|
*/
|
2017-11-19 12:35:17 +00:00
|
|
|
func unsafeCloseBind(device *Device) error {
|
2017-11-11 22:26:44 +00:00
|
|
|
var err error
|
2017-11-11 14:43:55 +00:00
|
|
|
netc := &device.net
|
|
|
|
if netc.bind != nil {
|
2017-11-11 22:26:44 +00:00
|
|
|
err = netc.bind.Close()
|
2017-11-11 14:43:55 +00:00
|
|
|
netc.bind = nil
|
|
|
|
}
|
2018-05-20 04:19:29 +00:00
|
|
|
netc.stopping.Wait()
|
2017-11-11 22:26:44 +00:00
|
|
|
return err
|
2017-11-11 14:43:55 +00:00
|
|
|
}
|
|
|
|
|
2018-02-18 19:49:03 +00:00
|
|
|
func (device *Device) BindSetMark(mark uint32) error {
|
|
|
|
|
|
|
|
device.net.mutex.Lock()
|
|
|
|
defer device.net.mutex.Unlock()
|
|
|
|
|
|
|
|
// check if modified
|
|
|
|
|
|
|
|
if device.net.fwmark == mark {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// update fwmark on existing bind
|
|
|
|
|
|
|
|
device.net.fwmark = mark
|
|
|
|
if device.isUp.Get() && device.net.bind != nil {
|
|
|
|
if err := device.net.bind.SetMark(mark); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-13 21:14:43 +00:00
|
|
|
// clear cached source addresses
|
|
|
|
|
|
|
|
device.peers.mutex.RLock()
|
|
|
|
for _, peer := range device.peers.keyMap {
|
|
|
|
peer.mutex.Lock()
|
|
|
|
defer peer.mutex.Unlock()
|
|
|
|
if peer.endpoint != nil {
|
|
|
|
peer.endpoint.ClearSrc()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
device.peers.mutex.RUnlock()
|
|
|
|
|
2018-02-18 19:49:03 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-01-26 21:52:32 +00:00
|
|
|
func (device *Device) BindUpdate() error {
|
|
|
|
|
2018-02-02 15:40:14 +00:00
|
|
|
device.net.mutex.Lock()
|
|
|
|
defer device.net.mutex.Unlock()
|
|
|
|
|
2017-10-07 20:35:23 +00:00
|
|
|
// close existing sockets
|
2017-08-11 14:18:20 +00:00
|
|
|
|
2017-11-19 12:35:17 +00:00
|
|
|
if err := unsafeCloseBind(device); err != nil {
|
2017-11-11 14:43:55 +00:00
|
|
|
return err
|
2017-08-11 14:18:20 +00:00
|
|
|
}
|
|
|
|
|
2017-10-07 20:35:23 +00:00
|
|
|
// open new sockets
|
2017-08-11 14:18:20 +00:00
|
|
|
|
2017-12-29 16:42:09 +00:00
|
|
|
if device.isUp.Get() {
|
2017-08-17 10:58:18 +00:00
|
|
|
|
2017-10-08 20:03:32 +00:00
|
|
|
// bind to new port
|
|
|
|
|
|
|
|
var err error
|
2018-02-02 15:40:14 +00:00
|
|
|
netc := &device.net
|
2018-05-14 01:00:40 +00:00
|
|
|
netc.bind, netc.port, err = CreateBind(netc.port, device)
|
2017-10-08 20:03:32 +00:00
|
|
|
if err != nil {
|
2017-11-11 14:43:55 +00:00
|
|
|
netc.bind = nil
|
2018-02-18 19:49:03 +00:00
|
|
|
netc.port = 0
|
2017-10-08 20:03:32 +00:00
|
|
|
return err
|
2017-08-11 14:18:20 +00:00
|
|
|
}
|
2017-08-17 10:58:18 +00:00
|
|
|
|
2018-02-18 19:49:03 +00:00
|
|
|
// set fwmark
|
2017-10-08 20:03:32 +00:00
|
|
|
|
2018-02-18 19:49:03 +00:00
|
|
|
if netc.fwmark != 0 {
|
|
|
|
err = netc.bind.SetMark(netc.fwmark)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-08-22 15:22:45 +00:00
|
|
|
}
|
|
|
|
|
2017-10-16 19:33:47 +00:00
|
|
|
// clear cached source addresses
|
|
|
|
|
2018-05-13 21:14:43 +00:00
|
|
|
device.peers.mutex.RLock()
|
2018-02-02 15:40:14 +00:00
|
|
|
for _, peer := range device.peers.keyMap {
|
2017-10-16 19:33:47 +00:00
|
|
|
peer.mutex.Lock()
|
2018-02-02 15:40:14 +00:00
|
|
|
defer peer.mutex.Unlock()
|
2017-11-18 22:34:02 +00:00
|
|
|
if peer.endpoint != nil {
|
|
|
|
peer.endpoint.ClearSrc()
|
|
|
|
}
|
2017-10-16 19:33:47 +00:00
|
|
|
}
|
2018-05-13 21:14:43 +00:00
|
|
|
device.peers.mutex.RUnlock()
|
2017-11-11 14:43:55 +00:00
|
|
|
|
2018-01-26 21:52:32 +00:00
|
|
|
// start receiving routines
|
2017-11-11 14:43:55 +00:00
|
|
|
|
2018-05-20 04:19:29 +00:00
|
|
|
device.net.starting.Add(ConnRoutineNumber)
|
|
|
|
device.net.stopping.Add(ConnRoutineNumber)
|
2017-11-29 17:46:31 +00:00
|
|
|
go device.RoutineReceiveIncoming(ipv4.Version, netc.bind)
|
|
|
|
go device.RoutineReceiveIncoming(ipv6.Version, netc.bind)
|
2018-05-20 04:19:29 +00:00
|
|
|
device.net.starting.Wait()
|
2017-11-14 15:27:53 +00:00
|
|
|
|
2017-11-11 22:26:44 +00:00
|
|
|
device.log.Debug.Println("UDP bind has been updated")
|
2017-08-11 14:18:20 +00:00
|
|
|
}
|
|
|
|
|
2017-08-17 10:58:18 +00:00
|
|
|
return nil
|
2017-08-11 14:18:20 +00:00
|
|
|
}
|
|
|
|
|
2018-01-26 21:52:32 +00:00
|
|
|
func (device *Device) BindClose() error {
|
2017-11-11 14:43:55 +00:00
|
|
|
device.net.mutex.Lock()
|
2017-11-19 12:35:17 +00:00
|
|
|
err := unsafeCloseBind(device)
|
2017-11-11 14:43:55 +00:00
|
|
|
device.net.mutex.Unlock()
|
|
|
|
return err
|
2017-08-11 14:18:20 +00:00
|
|
|
}
|