]> Cypherpunks.ru repositories - govpn.git/blob - tap.go
Merge branch 'develop'
[govpn.git] / tap.go
1 /*
2 GoVPN -- simple secure free software virtual private network daemon
3 Copyright (C) 2014-2015 Sergey Matveev <stargrave@stargrave.org>
4
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 package govpn
20
21 import (
22         "io"
23
24         "golang.org/x/crypto/poly1305"
25 )
26
27 const (
28         EtherSize = 14
29 )
30
31 type TAP struct {
32         Name   string
33         dev    io.ReadWriter
34         buf    []byte
35         sink   chan []byte
36         ready  chan struct{}
37         synced bool
38 }
39
40 // Return maximal acceptable TAP interface MTU. This is daemon's MTU
41 // minus nonce, MAC, packet size mark and Ethernet header sizes.
42 func TAPMaxMTU() int {
43         return MTU - poly1305.TagSize - NonceSize - PktSizeSize - EtherSize
44 }
45
46 func NewTAP(ifaceName string) (*TAP, error) {
47         maxIfacePktSize := TAPMaxMTU() + EtherSize
48         tapRaw, err := newTAPer(ifaceName)
49         if err != nil {
50                 return nil, err
51         }
52         tap := TAP{
53                 Name:   ifaceName,
54                 dev:    tapRaw,
55                 buf:    make([]byte, maxIfacePktSize),
56                 sink:   make(chan []byte),
57                 ready:  make(chan struct{}),
58                 synced: false,
59         }
60         go func() {
61                 var n int
62                 var err error
63                 for {
64                         <-tap.ready
65                         n, err = tap.dev.Read(tap.buf)
66                         if err != nil {
67                                 panic(err)
68                         }
69                         tap.sink <- tap.buf[:n]
70                 }
71         }()
72         return &tap, nil
73 }
74
75 func (t *TAP) Write(data []byte) (n int, err error) {
76         return t.dev.Write(data)
77 }