]> Cypherpunks.ru repositories - govpn.git/blob - tap.go
Keep TAP listener state and skip sinkReady step if necessary
[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         "log"
24
25         "golang.org/x/crypto/poly1305"
26 )
27
28 type TAP struct {
29         Name   string
30         dev    io.ReadWriter
31         buf    []byte
32         sink   chan []byte
33         ready  chan struct{}
34         synced bool
35 }
36
37 func NewTAP(ifaceName string) (*TAP, error) {
38         maxIfacePktSize := MTU - poly1305.TagSize - NonceSize
39         tapRaw, err := newTAPer(ifaceName)
40         if err != nil {
41                 return nil, err
42         }
43         tap := TAP{
44                 Name:   ifaceName,
45                 dev:    tapRaw,
46                 buf:    make([]byte, maxIfacePktSize),
47                 sink:   make(chan []byte),
48                 ready:  make(chan struct{}),
49                 synced: false,
50         }
51         go func() {
52                 var n int
53                 var err error
54                 for {
55                         <-tap.ready
56                         n, err = tap.dev.Read(tap.buf)
57                         if err != nil {
58                                 panic(err)
59                         }
60                         tap.sink <- tap.buf[:n]
61                 }
62         }()
63         return &tap, nil
64 }
65
66 func (t *TAP) Write(data []byte) {
67         if _, err := t.dev.Write(data); err != nil {
68                 log.Println("Error writing to iface: ", err)
69         }
70 }