]> 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         "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 }
35
36 func NewTAP(ifaceName string) (*TAP, error) {
37         maxIfacePktSize := MTU - poly1305.TagSize - NonceSize
38         tapRaw, err := newTAPer(ifaceName)
39         if err != nil {
40                 return nil, err
41         }
42         tap := TAP{
43                 Name:  ifaceName,
44                 dev:   tapRaw,
45                 buf:   make([]byte, maxIfacePktSize),
46                 sink:  make(chan []byte),
47                 ready: make(chan struct{}),
48         }
49         go func() {
50                 var n int
51                 var err error
52                 for {
53                         <-tap.ready
54                         n, err = tap.dev.Read(tap.buf)
55                         if err != nil {
56                                 panic(err)
57                         }
58                         tap.sink <- tap.buf[:n]
59                 }
60         }()
61         return &tap, nil
62 }
63
64 func (t *TAP) Write(data []byte) {
65         if _, err := t.dev.Write(data); err != nil {
66                 log.Println("Error writing to iface: ", err)
67         }
68 }