]> Cypherpunks.ru repositories - govpn.git/blob - src/cypherpunks.ru/govpn/cmd/govpn-client/udp.go
96dbfba418822b9833c40ffd7154070a11c3c8b6
[govpn.git] / src / cypherpunks.ru / govpn / cmd / govpn-client / udp.go
1 /*
2 GoVPN -- simple secure free software virtual private network daemon
3 Copyright (C) 2014-2016 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 main
20
21 import (
22         "log"
23         "net"
24         "sync/atomic"
25         "time"
26
27         "cypherpunks.ru/govpn"
28 )
29
30 func startUDP(timeouted, rehandshaking, termination chan struct{}) {
31         remote, err := net.ResolveUDPAddr("udp", *remoteAddr)
32         if err != nil {
33                 log.Fatalln("Can not resolve remote address:", err)
34         }
35         conn, err := net.DialUDP("udp", nil, remote)
36         if err != nil {
37                 log.Fatalln("Can not listen on UDP:", err)
38         }
39         govpn.Printf(`[connected remote="%s"]`, *remoteAddr)
40
41         hs := govpn.HandshakeStart(*remoteAddr, conn, conf)
42         buf := make([]byte, *mtu*2)
43         var n int
44         var timeouts int
45         var peer *govpn.Peer
46         var terminator chan struct{}
47 MainCycle:
48         for {
49                 select {
50                 case <-termination:
51                         break MainCycle
52                 default:
53                 }
54
55                 conn.SetReadDeadline(time.Now().Add(time.Second))
56                 n, err = conn.Read(buf)
57                 if timeouts == timeout {
58                         govpn.Printf(`[connection-timeouted remote="%s"]`, *remoteAddr)
59                         timeouted <- struct{}{}
60                         break
61                 }
62                 if err != nil {
63                         timeouts++
64                         continue
65                 }
66                 if peer != nil {
67                         if peer.PktProcess(buf[:n], tap, true) {
68                                 timeouts = 0
69                         } else {
70                                 govpn.Printf(`[packet-unauthenticated remote="%s"]`, *remoteAddr)
71                                 timeouts++
72                         }
73                         if atomic.LoadUint64(&peer.BytesIn)+atomic.LoadUint64(&peer.BytesOut) > govpn.MaxBytesPerKey {
74                                 govpn.Printf(`[rehandshake-required remote="%s"]`, *remoteAddr)
75                                 rehandshaking <- struct{}{}
76                                 break MainCycle
77                         }
78                         continue
79                 }
80                 if idsCache.Find(buf[:n]) == nil {
81                         govpn.Printf(`[identity-invalid remote="%s"]`, *remoteAddr)
82                         continue
83                 }
84                 timeouts = 0
85                 peer = hs.Client(buf[:n])
86                 if peer == nil {
87                         continue
88                 }
89                 govpn.Printf(`[handshake-completed remote="%s"]`, *remoteAddr)
90                 knownPeers = govpn.KnownPeers(map[string]**govpn.Peer{*remoteAddr: &peer})
91                 if firstUpCall {
92                         go govpn.ScriptCall(*upPath, *ifaceName, *remoteAddr)
93                         firstUpCall = false
94                 }
95                 hs.Zero()
96                 terminator = make(chan struct{})
97                 go govpn.PeerTapProcessor(peer, tap, terminator)
98         }
99         if terminator != nil {
100                 terminator <- struct{}{}
101         }
102         if hs != nil {
103                 hs.Zero()
104         }
105         conn.Close()
106 }