/* GoVPN -- simple secure free software virtual private network daemon Copyright (C) 2014-2017 Sergey Matveev This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ // Simple secure, DPI/censorship-resistant free software VPN daemon client. package main import ( "flag" "fmt" "time" "github.com/Sirupsen/logrus" "cypherpunks.ru/govpn" "cypherpunks.ru/govpn/client" ) func main() { var ( remoteAddr = flag.String("remote", "", "Remote server address") proto = flag.String("proto", "udp", "Protocol to use: udp or tcp") ifaceName = flag.String("iface", "tap0", "TUN/TAP network interface") verifierRaw = flag.String("verifier", "", "Verifier") keyPath = flag.String("key", "", "Path to passphrase file") upPath = flag.String("up", "", "Path to up-script") downPath = flag.String("down", "", "Path to down-script") stats = flag.String("stats", "", "Enable stats retrieving on host:port") proxyAddr = flag.String("proxy", "", "Use HTTP proxy on host:port") proxyAuth = flag.String("proxy-auth", "", "user:password Basic proxy auth") mtu = flag.Int("mtu", govpn.MTUDefault, "MTU of TUN/TAP interface") timeoutP = flag.Int("timeout", 60, "Timeout seconds") timeSync = flag.Int("timesync", 0, "Time synchronization requirement") noreconnect = flag.Bool("noreconnect", false, "Disable reconnection after timeout") noisy = flag.Bool("noise", false, "Enable noise appending") encless = flag.Bool("encless", false, "Encryptionless mode") cpr = flag.Int("cpr", 0, "Enable constant KiB/sec out traffic rate") egdPath = flag.String("egd", "", "Optional path to EGD socket") syslog = flag.Bool("syslog", false, "Enable logging to syslog") version = flag.Bool("version", false, "Print version information") warranty = flag.Bool("warranty", false, "Print warranty information") logLevel = flag.String("log_level", "warning", "Log level") protocol govpn.Protocol err error fields = logrus.Fields{"func": "main"} ) flag.Parse() if *warranty { fmt.Println(govpn.Warranty) return } if *version { fmt.Println(govpn.VersionGet()) return } logger, err := govpn.NewLogger(*logLevel, *syslog) if err != nil { logrus.WithFields(fields).WithError(err).Fatal("Can't initialize logging") } if *egdPath != "" { logger.WithField("egd_path", *egdPath).WithFields(fields).Debug("Init EGD") govpn.EGDInit(*egdPath) } if protocol, err = govpn.NewProtocolFromString(*proto); err != nil { logger.WithError(err).WithFields(fields).WithField("proto", *proto).Fatal("Invalid protocol") } if *proxyAddr != "" && protocol == govpn.ProtocolUDP { logrus.WithFields(fields).WithFields(logrus.Fields{ "proxy": *proxyAddr, "proto": *proto, }).Fatal("HTTP proxy is supported only in TCP mode") } if *verifierRaw == "" { logger.Fatalln("-verifier is required") } verifier, err := govpn.VerifierFromString(*verifierRaw) if err != nil { logger.WithError(err).Fatal("Invalid -verifier") } key, err := govpn.KeyRead(*keyPath) if err != nil { logger.WithError(err).Fatal("Invalid -key") } priv, err := verifier.PasswordApply(key) if err != nil { logger.WithError(err).Fatal("Can't PasswordApply") } if *encless { if protocol != govpn.ProtocolTCP { logger.Fatal("Currently encryptionless mode works only with TCP") } *noisy = true } conf := client.Configuration{ PrivateKey: priv, Peer: &govpn.PeerConf{ ID: verifier.ID, Iface: *ifaceName, MTU: *mtu, Timeout: time.Second * time.Duration(*timeoutP), TimeSync: *timeSync, Noise: *noisy, CPR: *cpr, Encless: *encless, Verifier: verifier, DSAPriv: priv, Up: govpn.RunScriptAction(upPath), Down: govpn.RunScriptAction(downPath), }, Protocol: protocol, ProxyAddress: *proxyAddr, ProxyAuthentication: *proxyAuth, RemoteAddress: *remoteAddr, NoReconnect: *noreconnect, } if err = conf.Validate(); err != nil { logger.WithError(err).Fatal("Invalid settings") } c, err := client.NewClient(conf, logger, govpn.CatchSignalShutdown()) if err != nil { logger.WithError(err).Fatal("Can't initialize client") } if *stats != "" { go govpn.StatsProcessor(*stats, c.KnownPeers()) } go c.MainCycle() if err = <-c.Error; err != nil { logger.WithError(err).Fatal("Fatal error") } }