]> Cypherpunks.ru repositories - govpn.git/blob - src/cypherpunks.ru/govpn/cmd/govpn-client/main.go
Merge branch 'develop'
[govpn.git] / src / cypherpunks.ru / govpn / cmd / govpn-client / main.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 // Simple secure, DPI/censorship-resistant free software VPN daemon client.
20 package main
21
22 import (
23         "flag"
24         "fmt"
25         "log"
26         "net"
27         "os"
28         "os/signal"
29         "time"
30
31         "cypherpunks.ru/govpn"
32 )
33
34 var (
35         remoteAddr  = flag.String("remote", "", "Remote server address")
36         proto       = flag.String("proto", "udp", "Protocol to use: udp or tcp")
37         ifaceName   = flag.String("iface", "tap0", "TAP network interface")
38         verifierRaw = flag.String("verifier", "", "Verifier")
39         keyPath     = flag.String("key", "", "Path to passphrase file")
40         upPath      = flag.String("up", "", "Path to up-script")
41         downPath    = flag.String("down", "", "Path to down-script")
42         stats       = flag.String("stats", "", "Enable stats retrieving on host:port")
43         proxyAddr   = flag.String("proxy", "", "Use HTTP proxy on host:port")
44         proxyAuth   = flag.String("proxy-auth", "", "user:password Basic proxy auth")
45         mtu         = flag.Int("mtu", govpn.MTUDefault, "MTU of TAP interface")
46         timeoutP    = flag.Int("timeout", 60, "Timeout seconds")
47         timeSync    = flag.Int("timesync", 0, "Time synchronization requirement")
48         noisy       = flag.Bool("noise", false, "Enable noise appending")
49         encless     = flag.Bool("encless", false, "Encryptionless mode")
50         cpr         = flag.Int("cpr", 0, "Enable constant KiB/sec out traffic rate")
51         egdPath     = flag.String("egd", "", "Optional path to EGD socket")
52         warranty    = flag.Bool("warranty", false, "Print warranty information")
53
54         conf        *govpn.PeerConf
55         tap         *govpn.TAP
56         timeout     int
57         firstUpCall bool = true
58         knownPeers  govpn.KnownPeers
59         idsCache    *govpn.CipherCache
60 )
61
62 func main() {
63         flag.Parse()
64         if *warranty {
65                 fmt.Println(govpn.Warranty)
66                 return
67         }
68         timeout = *timeoutP
69         var err error
70         log.SetFlags(log.Ldate | log.Lmicroseconds | log.Lshortfile)
71
72         if *mtu > govpn.MTUMax {
73                 log.Fatalln("Maximum allowable MTU is", govpn.MTUMax)
74         }
75         if *egdPath != "" {
76                 log.Println("Using", *egdPath, "EGD")
77                 govpn.EGDInit(*egdPath)
78         }
79
80         if *verifierRaw == "" {
81                 log.Fatalln("No verifier specified")
82         }
83         verifier, err := govpn.VerifierFromString(*verifierRaw)
84         if err != nil {
85                 log.Fatalln(err)
86         }
87         key, err := govpn.KeyRead(*keyPath)
88         if err != nil {
89                 log.Fatalln("Unable to read the key", err)
90         }
91         priv := verifier.PasswordApply(key)
92         if *encless {
93                 if *proto != "tcp" {
94                         log.Fatalln("Currently encryptionless mode works only with TCP")
95                 }
96                 *noisy = true
97         }
98         conf = &govpn.PeerConf{
99                 Id:       verifier.Id,
100                 Iface:    *ifaceName,
101                 MTU:      *mtu,
102                 Timeout:  time.Second * time.Duration(timeout),
103                 TimeSync: *timeSync,
104                 Noise:    *noisy,
105                 CPR:      *cpr,
106                 Encless:  *encless,
107                 Verifier: verifier,
108                 DSAPriv:  priv,
109         }
110         idsCache = govpn.NewCipherCache()
111         confs := map[govpn.PeerId]*govpn.PeerConf{*verifier.Id: conf}
112         idsCache.Update(&confs)
113         log.Println(govpn.VersionGet())
114
115         tap, err = govpn.TAPListen(*ifaceName, *mtu)
116         if err != nil {
117                 log.Fatalln("Can not listen on TAP interface:", err)
118         }
119
120         if *stats != "" {
121                 log.Println("Stats are going to listen on", *stats)
122                 statsPort, err := net.Listen("tcp", *stats)
123                 if err != nil {
124                         log.Fatalln("Can not listen on stats port:", err)
125                 }
126                 go govpn.StatsProcessor(statsPort, &knownPeers)
127         }
128
129         termSignal := make(chan os.Signal, 1)
130         signal.Notify(termSignal, os.Interrupt, os.Kill)
131
132 MainCycle:
133         for {
134                 timeouted := make(chan struct{})
135                 rehandshaking := make(chan struct{})
136                 termination := make(chan struct{})
137                 if *proxyAddr != "" {
138                         *proto = "tcp"
139                 }
140                 switch *proto {
141                 case "udp":
142                         go startUDP(timeouted, rehandshaking, termination)
143                 case "tcp":
144                         if *proxyAddr != "" {
145                                 go proxyTCP(timeouted, rehandshaking, termination)
146                         } else {
147                                 go startTCP(timeouted, rehandshaking, termination)
148                         }
149                 default:
150                         log.Fatalln("Unknown protocol specified")
151                 }
152                 select {
153                 case <-termSignal:
154                         log.Fatalln("Finishing")
155                         termination <- struct{}{}
156                         break MainCycle
157                 case <-timeouted:
158                         break MainCycle
159                 case <-rehandshaking:
160                 }
161                 close(timeouted)
162                 close(rehandshaking)
163                 close(termination)
164         }
165         govpn.ScriptCall(*downPath, *ifaceName, *remoteAddr)
166 }