123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412 |
- // Copyright © 2021 Ettore Di Giacinto <[email protected]>
- //
- // 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 2 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 <http://www.gnu.org/licenses/>.
- package cmd
- import (
- "runtime"
- "time"
- "github.com/ipfs/go-log"
- "github.com/mudler/edgevpn/internal"
- "github.com/mudler/edgevpn/pkg/config"
- nodeConfig "github.com/mudler/edgevpn/pkg/config"
- "github.com/mudler/edgevpn/pkg/logger"
- node "github.com/mudler/edgevpn/pkg/node"
- "github.com/mudler/edgevpn/pkg/vpn"
- "github.com/urfave/cli"
- )
- var CommonFlags []cli.Flag = []cli.Flag{
- &cli.StringFlag{
- Name: "config",
- Usage: "Specify a path to a edgevpn config file",
- EnvVar: "EDGEVPNCONFIG",
- },
- &cli.StringFlag{
- Name: "timeout",
- Usage: "Specify a default timeout for connection stream",
- EnvVar: "EDGEVPNTIMEOUT",
- Value: "15s",
- },
- &cli.IntFlag{
- Name: "mtu",
- Usage: "Specify a mtu",
- EnvVar: "EDGEVPNMTU",
- Value: 1200,
- },
- &cli.BoolTFlag{
- Name: "bootstrap-iface",
- Usage: "Setup interface on startup (need privileges)",
- EnvVar: "EDGEVPNBOOTSTRAPIFACE",
- },
- &cli.IntFlag{
- Name: "packet-mtu",
- Usage: "Specify a mtu",
- EnvVar: "EDGEVPNPACKETMTU",
- Value: 1420,
- },
- &cli.IntFlag{
- Name: "channel-buffer-size",
- Usage: "Specify a channel buffer size",
- EnvVar: "EDGEVPNCHANNELBUFFERSIZE",
- Value: 0,
- },
- &cli.IntFlag{
- Name: "discovery-interval",
- Usage: "DHT discovery interval time",
- EnvVar: "EDGEVPNDHTINTERVAL",
- Value: 120,
- },
- &cli.IntFlag{
- Name: "ledger-announce-interval",
- Usage: "Ledger announce interval time",
- EnvVar: "EDGEVPNLEDGERINTERVAL",
- Value: 10,
- },
- &cli.StringFlag{
- Name: "autorelay-discovery-interval",
- Usage: "Autorelay discovery interval (Experimental. 0 to disable)",
- EnvVar: "EDGEVPNAUTORELAYDISCOVERYINTERVAL",
- Value: "0",
- },
- &cli.IntFlag{
- Name: "ledger-syncronization-interval",
- Usage: "Ledger syncronization interval time",
- EnvVar: "EDGEVPNLEDGERSYNCINTERVAL",
- Value: 10,
- },
- &cli.IntFlag{
- Name: "nat-ratelimit-global",
- Usage: "Rate limit global requests",
- EnvVar: "EDGEVPNNATRATELIMITGLOBAL",
- Value: 10,
- },
- &cli.IntFlag{
- Name: "nat-ratelimit-peer",
- Usage: "Rate limit perr requests",
- EnvVar: "EDGEVPNNATRATELIMITPEER",
- Value: 10,
- },
- &cli.IntFlag{
- Name: "nat-ratelimit-interval",
- Usage: "Rate limit interval",
- EnvVar: "EDGEVPNNATRATELIMITINTERVAL",
- Value: 60,
- },
- &cli.BoolTFlag{
- Name: "nat-ratelimit",
- Usage: "Changes the default rate limiting configured in helping other peers determine their reachability status",
- EnvVar: "EDGEVPNNATRATELIMIT",
- },
- &cli.IntFlag{
- Name: "max-connections",
- Usage: "Max connections",
- EnvVar: "EDGEVPNMAXCONNS",
- Value: 100,
- },
- &cli.StringFlag{
- Name: "ledger-state",
- Usage: "Specify a ledger state directory",
- EnvVar: "EDGEVPNLEDGERSTATE",
- },
- &cli.BoolTFlag{
- Name: "mdns",
- Usage: "Enable mDNS for peer discovery",
- EnvVar: "EDGEVPNMDNS",
- },
- &cli.BoolTFlag{
- Name: "autorelay",
- Usage: "Automatically act as a relay if the node can accept inbound connections",
- EnvVar: "EDGEVPNAUTORELAY",
- },
- &cli.BoolTFlag{
- Name: "autorelay-v1",
- Usage: "Enable autorelay v1 circuits",
- EnvVar: "EDGEVPNAUTORELAYV1",
- },
- &cli.IntFlag{
- Name: "concurrency",
- Usage: "Number of concurrent requests to serve",
- Value: runtime.NumCPU(),
- },
- &cli.BoolTFlag{
- Name: "holepunch",
- Usage: "Automatically try holepunching when possible",
- EnvVar: "EDGEVPNHOLEPUNCH",
- },
- &cli.BoolTFlag{
- Name: "natservice",
- Usage: "Tries to determine reachability status of nodes",
- EnvVar: "EDGEVPNNATSERVICE",
- },
- &cli.BoolTFlag{
- Name: "natmap",
- Usage: "Tries to open a port in the firewall via upnp",
- EnvVar: "EDGEVPNNATMAP",
- },
- &cli.BoolTFlag{
- Name: "dht",
- Usage: "Enable DHT for peer discovery",
- EnvVar: "EDGEVPNDHT",
- },
- &cli.BoolTFlag{
- Name: "low-profile",
- Usage: "Enable low profile. Lowers connections usage",
- EnvVar: "EDGEVPNLOWPROFILE",
- },
- &cli.BoolFlag{
- Name: "mplex-multiplexer",
- Usage: "Enable mplex multiplexer.",
- EnvVar: "EDGEVPNMPLEX",
- },
- &cli.BoolTFlag{
- Name: "low-profile-vpn",
- Usage: "Enable low profile on VPN",
- EnvVar: "EDGEVPNLOWPROFILEVPN",
- },
- &cli.IntFlag{
- Name: "max-streams",
- Usage: "Number of concurrent streams",
- Value: 100,
- EnvVar: "EDGEVPNMAXSTREAMS",
- },
- &cli.StringFlag{
- Name: "log-level",
- Usage: "Specify loglevel",
- EnvVar: "EDGEVPNLOGLEVEL",
- Value: "info",
- },
- &cli.StringFlag{
- Name: "libp2p-log-level",
- Usage: "Specify libp2p loglevel",
- EnvVar: "EDGEVPNLIBP2PLOGLEVEL",
- Value: "fatal",
- },
- &cli.StringSliceFlag{
- Name: "discovery-bootstrap-peers",
- Usage: "List of discovery peers to use",
- EnvVar: "EDGEVPNBOOTSTRAPPEERS",
- },
- &cli.StringSliceFlag{
- Name: "autorelay-static-peer",
- Usage: "List of autorelay static peers to use",
- EnvVar: "EDGEVPNAUTORELAYPEERS",
- },
- &cli.StringSliceFlag{
- Name: "blacklist",
- Usage: "List of peers/cidr to gate",
- EnvVar: "EDGEVPNBLACKLIST",
- },
- &cli.StringFlag{
- Name: "token",
- Usage: "Specify an edgevpn token in place of a config file",
- EnvVar: "EDGEVPNTOKEN",
- },
- &cli.StringFlag{
- Name: "limit-file",
- Usage: "Specify an limit config (json)",
- EnvVar: "LIMITFILE",
- },
- &cli.StringFlag{
- Name: "limit-scope",
- Usage: "Specify a limit scope",
- EnvVar: "LIMITSCOPE",
- Value: "system",
- },
- &cli.BoolFlag{
- Name: "limit-config",
- Usage: "Enable inline resource limit configuration",
- EnvVar: "LIMITCONFIG",
- },
- &cli.BoolFlag{
- Name: "limit-enable",
- Usage: "Enable resource manager. (Experimental) All options prefixed with limit requires resource manager to be enabled",
- EnvVar: "LIMITENABLE",
- },
- &cli.BoolFlag{
- Name: "limit-config-dynamic",
- Usage: "Enable dynamic resource limit configuration",
- EnvVar: "LIMITCONFIGDYNAMIC",
- },
- &cli.Int64Flag{
- Name: "limit-config-memory",
- Usage: "Memory resource limit configuration",
- EnvVar: "LIMITCONFIGMEMORY",
- Value: 128,
- },
- &cli.Float64Flag{
- Name: "limit-config-memory-fraction",
- Usage: "Fraction memory resource limit configuration (dynamic)",
- EnvVar: "LIMITCONFIGMEMORYFRACTION",
- Value: 10,
- },
- &cli.Int64Flag{
- Name: "limit-config-min-memory",
- Usage: "Minimum memory resource limit configuration (dynamic)",
- EnvVar: "LIMITCONFIGMINMEMORY",
- Value: 10,
- },
- &cli.Int64Flag{
- Name: "limit-config-max-memory",
- Usage: "Maximum memory resource limit configuration (dynamic)",
- EnvVar: "LIMITCONFIGMAXMEMORY",
- Value: 200,
- },
- &cli.IntFlag{
- Name: "limit-config-streams",
- Usage: "Streams resource limit configuration",
- EnvVar: "LIMITCONFIGSTREAMS",
- Value: 200,
- },
- &cli.IntFlag{
- Name: "limit-config-streams-inbound",
- Usage: "Inbound streams resource limit configuration",
- EnvVar: "LIMITCONFIGSTREAMSINBOUND",
- Value: 30,
- },
- &cli.IntFlag{
- Name: "limit-config-streams-outbound",
- Usage: "Outbound streams resource limit configuration",
- EnvVar: "LIMITCONFIGSTREAMSOUTBOUND",
- Value: 30,
- },
- &cli.IntFlag{
- Name: "limit-config-conn",
- Usage: "Connections resource limit configuration",
- EnvVar: "LIMITCONFIGCONNS",
- Value: 200,
- },
- &cli.IntFlag{
- Name: "limit-config-conn-inbound",
- Usage: "Inbound connections resource limit configuration",
- EnvVar: "LIMITCONFIGCONNSINBOUND",
- Value: 30,
- },
- &cli.IntFlag{
- Name: "limit-config-conn-outbound",
- Usage: "Outbound connections resource limit configuration",
- EnvVar: "LIMITCONFIGCONNSOUTBOUND",
- Value: 30,
- },
- &cli.IntFlag{
- Name: "limit-config-fd",
- Usage: "Max fd resource limit configuration",
- EnvVar: "LIMITCONFIGFD",
- Value: 30,
- },
- }
- func displayStart(ll *logger.Logger) {
- ll.Info(Copyright)
- ll.Infof("Version: %s commit: %s", internal.Version, internal.Commit)
- }
- func cliToOpts(c *cli.Context) ([]node.Option, []vpn.Option, *logger.Logger) {
- var limitConfig *node.NetLimitConfig
- autorelayInterval, err := time.ParseDuration(c.String("autorelay-discovery-interval"))
- if err != nil {
- autorelayInterval = 0
- }
- if c.Bool("limit-config") {
- limitConfig = &node.NetLimitConfig{
- Dynamic: c.Bool("limit-config-dynamic"),
- Memory: c.Int64("limit-config-memory"),
- MinMemory: c.Int64("limit-config-min-memory"),
- MaxMemory: c.Int64("limit-config-max-memory"),
- MemoryFraction: c.Float64("limit-config-memory-fraction"),
- Streams: c.Int("limit-config-streams"),
- StreamsInbound: c.Int("limit-config-streams-inbound"),
- StreamsOutbound: c.Int("limit-config-streams-outbound"),
- Conns: c.Int("limit-config-conn"),
- ConnsInbound: c.Int("limit-config-conn-inbound"),
- ConnsOutbound: c.Int("limit-config-conn-outbound"),
- FD: c.Int("limit-config-fd"),
- }
- }
- nc := nodeConfig.Config{
- NetworkConfig: c.String("config"),
- NetworkToken: c.String("token"),
- Address: c.String("address"),
- Router: c.String("router"),
- Interface: c.String("interface"),
- Libp2pLogLevel: c.String("libp2p-log-level"),
- LogLevel: c.String("log-level"),
- LowProfile: c.Bool("low-profile"),
- VPNLowProfile: c.Bool("low-profile-vpn"),
- Blacklist: c.StringSlice("blacklist"),
- Concurrency: c.Int("concurrency"),
- FrameTimeout: c.String("timeout"),
- ChannelBufferSize: c.Int("channel-buffer-size"),
- InterfaceMTU: c.Int("mtu"),
- PacketMTU: c.Int("packet-mtu"),
- BootstrapIface: c.Bool("bootstrap-iface"),
- Ledger: config.Ledger{
- StateDir: c.String("ledger-state"),
- AnnounceInterval: time.Duration(c.Int("ledger-announce-interval")) * time.Second,
- SyncInterval: time.Duration(c.Int("ledger-syncronization-interval")) * time.Second,
- },
- NAT: config.NAT{
- Service: c.Bool("natservice"),
- Map: c.Bool("natmap"),
- RateLimit: c.Bool("nat-ratelimit"),
- RateLimitGlobal: c.Int("nat-ratelimit-global"),
- RateLimitPeer: c.Int("nat-ratelimit-peer"),
- RateLimitInterval: time.Duration(c.Int("nat-ratelimit-interval")) * time.Second,
- },
- Discovery: config.Discovery{
- BootstrapPeers: c.StringSlice("discovery-bootstrap-peers"),
- DHT: c.Bool("dht"),
- MDNS: c.Bool("mdns"),
- Interval: time.Duration(c.Int("discovery-interval")) * time.Second,
- },
- Connection: config.Connection{
- AutoRelay: c.Bool("autorelay"),
- RelayV1: c.Bool("autorelay-v1"),
- MaxConnections: c.Int("max-connections"),
- MaxStreams: c.Int("max-streams"),
- HolePunch: c.Bool("holepunch"),
- Mplex: c.Bool("mplex-multiplexer"),
- StaticRelays: c.StringSlice("autorelay-static-peer"),
- AutoRelayDiscoveryInterval: autorelayInterval,
- },
- Limit: config.ResourceLimit{
- Enable: c.Bool("limit-enable"),
- FileLimit: c.String("limit-file"),
- Scope: c.String("limit-scope"),
- MaxConns: c.Int("max-connections"), // Turn to 0 to use other way of limiting. Files take precedence
- LimitConfig: limitConfig,
- },
- }
- lvl, err := log.LevelFromString(nc.LogLevel)
- if err != nil {
- lvl = log.LevelError
- }
- llger := logger.New(lvl)
- nodeOpts, vpnOpts, err := nc.ToOpts(llger)
- if err != nil {
- llger.Fatal(err.Error())
- }
- return nodeOpts, vpnOpts, llger
- }
|