]> Cypherpunks.ru repositories - govpn.git/blob - cmd/govpn-server/common.go
Raise copyright years
[govpn.git] / cmd / govpn-server / common.go
1 /*
2 GoVPN -- simple secure free software virtual private network daemon
3 Copyright (C) 2014-2020 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, version 3 of the License.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17
18 package main
19
20 import (
21         "bytes"
22         "sync"
23
24         "go.cypherpunks.ru/govpn/v7"
25 )
26
27 type PeerState struct {
28         peer       *govpn.Peer
29         terminator chan struct{}
30         tap        *govpn.TAP
31 }
32
33 var (
34         handshakes sync.Map
35         peers      sync.Map
36         peersByID  sync.Map
37         knownPeers sync.Map
38 )
39
40 func callUp(peerID *govpn.PeerID, remoteAddr string) (string, error) {
41         ifaceName := confs[*peerID].Iface
42         if confs[*peerID].Up != "" {
43                 result, err := govpn.ScriptCall(confs[*peerID].Up, ifaceName, remoteAddr)
44                 if err != nil {
45                         govpn.Printf(
46                                 `[script-failed bind="%s" path="%s" err="%s"]`,
47                                 *bindAddr,
48                                 confs[*peerID].Up,
49                                 err,
50                         )
51                         return "", err
52                 }
53                 if ifaceName == "" {
54                         sepIndex := bytes.Index(result, []byte{'\n'})
55                         if sepIndex < 0 {
56                                 sepIndex = len(result)
57                         }
58                         ifaceName = string(result[:sepIndex])
59                 }
60         }
61         if ifaceName == "" {
62                 govpn.Printf(`[tap-failed bind="%s" peer="%s"]`, *bindAddr, *peerID)
63         }
64         return ifaceName, nil
65 }