2017-06-04 19:48:15 +00:00
|
|
|
package main
|
|
|
|
|
2017-08-22 12:57:32 +00:00
|
|
|
import (
|
2017-11-14 17:26:28 +00:00
|
|
|
"os"
|
2017-08-22 12:57:32 +00:00
|
|
|
"sync/atomic"
|
|
|
|
)
|
2017-07-15 14:27:59 +00:00
|
|
|
|
|
|
|
const DefaultMTU = 1420
|
|
|
|
|
2018-02-11 17:55:30 +00:00
|
|
|
type TUNEvent int
|
|
|
|
|
2017-08-07 13:25:04 +00:00
|
|
|
const (
|
|
|
|
TUNEventUp = 1 << iota
|
|
|
|
TUNEventDown
|
|
|
|
TUNEventMTUUpdate
|
|
|
|
)
|
|
|
|
|
2017-06-28 21:45:45 +00:00
|
|
|
type TUNDevice interface {
|
2017-12-04 20:39:06 +00:00
|
|
|
File() *os.File // returns the file descriptor of the device
|
|
|
|
Read([]byte, int) (int, error) // read a packet from the device (without any additional headers)
|
|
|
|
Write([]byte, int) (int, error) // writes a packet to the device (without any additional headers)
|
|
|
|
MTU() (int, error) // returns the MTU of the device
|
|
|
|
Name() string // returns the current name
|
2018-02-11 17:55:30 +00:00
|
|
|
Events() chan TUNEvent // returns a constant channel of events related to the device
|
2017-12-04 20:39:06 +00:00
|
|
|
Close() error // stops the device and closes the event channel
|
2017-06-04 19:48:15 +00:00
|
|
|
}
|
2017-08-22 12:57:32 +00:00
|
|
|
|
|
|
|
func (device *Device) RoutineTUNEventReader() {
|
2018-02-11 22:26:54 +00:00
|
|
|
setUp := false
|
2017-08-22 12:57:32 +00:00
|
|
|
logInfo := device.log.Info
|
|
|
|
logError := device.log.Error
|
|
|
|
|
|
|
|
for event := range device.tun.device.Events() {
|
2018-02-11 17:55:30 +00:00
|
|
|
if event&TUNEventMTUUpdate != 0 {
|
2017-08-22 12:57:32 +00:00
|
|
|
mtu, err := device.tun.device.MTU()
|
|
|
|
old := atomic.LoadInt32(&device.tun.mtu)
|
|
|
|
if err != nil {
|
|
|
|
logError.Println("Failed to load updated MTU of device:", err)
|
|
|
|
} else if int(old) != mtu {
|
|
|
|
if mtu+MessageTransportSize > MaxMessageSize {
|
|
|
|
logInfo.Println("MTU updated:", mtu, "(too large)")
|
|
|
|
} else {
|
|
|
|
logInfo.Println("MTU updated:", mtu)
|
|
|
|
}
|
2017-08-22 15:22:45 +00:00
|
|
|
atomic.StoreInt32(&device.tun.mtu, int32(mtu))
|
2017-08-22 12:57:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-11 22:26:54 +00:00
|
|
|
if event&TUNEventUp != 0 && !setUp {
|
2017-12-29 16:42:09 +00:00
|
|
|
logInfo.Println("Interface set up")
|
2018-02-11 22:26:54 +00:00
|
|
|
setUp = true
|
2017-12-29 16:42:09 +00:00
|
|
|
device.Up()
|
2017-08-22 12:57:32 +00:00
|
|
|
}
|
|
|
|
|
2018-02-11 22:26:54 +00:00
|
|
|
if event&TUNEventDown != 0 && setUp {
|
2017-12-29 16:42:09 +00:00
|
|
|
logInfo.Println("Interface set down")
|
2018-02-11 22:26:54 +00:00
|
|
|
setUp = false
|
2018-01-13 08:00:37 +00:00
|
|
|
device.Down()
|
2017-08-22 12:57:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|