5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-09-20 10:42:33 +00:00
yggdrasil-go/src/yggdrasil/tun.go

61 lines
1.1 KiB
Go
Raw Normal View History

2017-12-29 04:16:20 +00:00
package yggdrasil
// This manages the tun driver to send/recv packets to/from applications
// import water "github.com/songgao/water"
2017-12-29 04:16:20 +00:00
const IPv6_HEADER_LENGTH = 40
type tunInterface interface {
IsTUN() bool
IsTAP() bool
Name() string
Read(to []byte) (int, error)
Write(from []byte) (int, error)
Close() error
}
2017-12-29 04:16:20 +00:00
type tunDevice struct {
2018-01-04 22:37:51 +00:00
core *Core
send chan<- []byte
recv <-chan []byte
mtu int
iface tunInterface
2017-12-29 04:16:20 +00:00
}
func (tun *tunDevice) init(core *Core) {
2018-01-04 22:37:51 +00:00
tun.core = core
2017-12-29 04:16:20 +00:00
}
func (tun *tunDevice) write() error {
2018-01-04 22:37:51 +00:00
for {
data := <-tun.recv
if _, err := tun.iface.Write(data); err != nil {
return err
}
util_putBytes(data)
}
2017-12-29 04:16:20 +00:00
}
func (tun *tunDevice) read() error {
2018-01-04 22:37:51 +00:00
buf := make([]byte, tun.mtu)
for {
n, err := tun.iface.Read(buf)
if err != nil {
return err
}
if buf[0]&0xf0 != 0x60 ||
n != 256*int(buf[4])+int(buf[5])+IPv6_HEADER_LENGTH {
// Either not an IPv6 packet or not the complete packet for some reason
//panic("Should not happen in testing")
continue
}
packet := append(util_getBytes(), buf[:n]...)
tun.send <- packet
}
2017-12-29 04:16:20 +00:00
}
func (tun *tunDevice) close() error {
2018-01-04 22:37:51 +00:00
return tun.iface.Close()
2017-12-29 04:16:20 +00:00
}