5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-09-20 11:52:32 +00:00
yggdrasil-go/src/yggdrasil/tun.go

92 lines
1.9 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 ethernet "github.com/songgao/packets/ethernet"
2017-12-29 04:16:20 +00:00
const IPv6_HEADER_LENGTH = 40
2018-01-25 17:44:56 +00:00
const ETHER_HEADER_LENGTH = 14
2017-12-29 04:16:20 +00:00
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-02-12 18:19:31 +00:00
core *Core
icmpv6 icmpv6
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
2018-02-12 18:19:31 +00:00
tun.icmpv6.init(tun)
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 tun.iface.IsTAP() {
var frame ethernet.Frame
frame.Prepare(
2018-02-12 18:19:31 +00:00
tun.icmpv6.peermac[:6], // Destination MAC address
tun.icmpv6.mymac[:6], // Source MAC address
ethernet.NotTagged, // VLAN tagging
ethernet.IPv6, // Ethertype
len(data)) // Payload length
2018-01-25 17:44:56 +00:00
copy(frame[ETHER_HEADER_LENGTH:], data[:])
if _, err := tun.iface.Write(frame); err != nil {
2018-01-25 17:44:56 +00:00
panic(err)
}
} else {
if _, err := tun.iface.Write(data); err != nil {
2018-01-25 17:44:56 +00:00
panic(err)
}
2018-01-04 22:37:51 +00:00
}
util_putBytes(data)
}
2017-12-29 04:16:20 +00:00
}
func (tun *tunDevice) read() error {
2018-01-25 17:44:56 +00:00
mtu := tun.mtu
if tun.iface.IsTAP() {
mtu += ETHER_HEADER_LENGTH
}
buf := make([]byte, mtu)
2018-01-04 22:37:51 +00:00
for {
n, err := tun.iface.Read(buf)
if err != nil {
2018-01-25 17:44:56 +00:00
panic(err)
2018-01-04 22:37:51 +00:00
}
o := 0
if tun.iface.IsTAP() {
2018-01-25 17:44:56 +00:00
o = ETHER_HEADER_LENGTH
}
if buf[o]&0xf0 != 0x60 ||
n != 256*int(buf[o+4])+int(buf[o+5])+IPv6_HEADER_LENGTH+o {
2018-01-04 22:37:51 +00:00
// Either not an IPv6 packet or not the complete packet for some reason
//panic("Should not happen in testing")
continue
}
2018-02-12 18:19:31 +00:00
if buf[o+6] == 58 {
// Found an ICMPv6 packet
b := make([]byte, n)
copy(b, buf)
tun.icmpv6.recv <- b
}
packet := append(util_getBytes(), buf[o:n]...)
2018-01-04 22:37:51 +00:00
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
}