| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071 |
- /*
- * Copyright (c) 2016, Psiphon Inc.
- * All rights reserved.
- *
- * 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 <http://www.gnu.org/licenses/>.
- *
- */
- package server
- import (
- "crypto/rand"
- "crypto/rsa"
- "crypto/x509"
- "encoding/base64"
- "encoding/hex"
- "encoding/json"
- "encoding/pem"
- "fmt"
- "net"
- "os"
- "strconv"
- "strings"
- "sync/atomic"
- "time"
- "github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common"
- "github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common/accesscontrol"
- "github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common/crypto/ssh"
- "github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common/errors"
- "github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common/osl"
- "github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common/protocol"
- "github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common/tactics"
- "github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common/values"
- "golang.org/x/crypto/nacl/box"
- )
- const (
- SERVER_CONFIG_FILENAME = "psiphond.config"
- SERVER_TRAFFIC_RULES_CONFIG_FILENAME = "psiphond-traffic-rules.config"
- SERVER_OSL_CONFIG_FILENAME = "psiphond-osl.config"
- SERVER_TACTICS_CONFIG_FILENAME = "psiphond-tactics.config"
- SERVER_ENTRY_FILENAME = "server-entry.dat"
- DEFAULT_SERVER_IP_ADDRESS = "127.0.0.1"
- WEB_SERVER_SECRET_BYTE_LENGTH = 32
- DISCOVERY_VALUE_KEY_BYTE_LENGTH = 32
- SSH_USERNAME_SUFFIX_BYTE_LENGTH = 8
- SSH_PASSWORD_BYTE_LENGTH = 32
- SSH_RSA_HOST_KEY_BITS = 2048
- SSH_OBFUSCATED_KEY_BYTE_LENGTH = 32
- PERIODIC_GARBAGE_COLLECTION = 120 * time.Second
- STOP_ESTABLISH_TUNNELS_ESTABLISHED_CLIENT_THRESHOLD = 20
- DEFAULT_LOG_FILE_REOPEN_RETRIES = 25
- )
- // Config specifies the configuration and behavior of a Psiphon
- // server.
- type Config struct {
- // LogLevel specifies the log level. Valid values are:
- // panic, fatal, error, warn, info, debug
- LogLevel string
- // LogFilename specifies the path of the file to log
- // to. When blank, logs are written to stderr.
- LogFilename string
- // LogFileReopenRetries specifies how many retries, each with a 1ms delay,
- // will be attempted after reopening a rotated log file fails. Retries
- // mitigate any race conditions between writes/reopens and file operations
- // performed by external log managers, such as logrotate.
- //
- // When omitted, DEFAULT_LOG_FILE_REOPEN_RETRIES is used.
- LogFileReopenRetries *int
- // LogFileCreateMode specifies that the Psiphon server should create a new
- // log file when one is not found, such as after rotation with logrotate
- // configured with nocreate. The value is the os.FileMode value to use when
- // creating the file.
- //
- // When omitted, the Psiphon server does not create log files.
- LogFileCreateMode *int
- // SkipPanickingLogWriter disables panicking when
- // unable to write any logs.
- SkipPanickingLogWriter bool
- // DiscoveryValueHMACKey is the network-wide secret value
- // used to determine a unique discovery strategy.
- DiscoveryValueHMACKey string
- // GeoIPDatabaseFilenames are paths of GeoIP2/GeoLite2
- // MaxMind database files. When empty, no GeoIP lookups are
- // performed. Each file is queried, in order, for the
- // logged fields: country code, city, and ISP. Multiple
- // file support accommodates the MaxMind distribution where
- // ISP data in a separate file.
- GeoIPDatabaseFilenames []string
- // PsinetDatabaseFilename is the path of the file containing
- // psinet.Database data.
- PsinetDatabaseFilename string
- // HostID is the ID of the server host; this is used for API
- // event logging.
- HostID string
- // ServerIPAddress is the public IP address of the server.
- ServerIPAddress string
- // WebServerPort is the listening port of the web server.
- // When <= 0, no web server component is run.
- WebServerPort int
- // WebServerSecret is the unique secret value that the client
- // must supply to make requests to the web server.
- WebServerSecret string
- // WebServerCertificate is the certificate the client uses to
- // authenticate the web server.
- WebServerCertificate string
- // WebServerPrivateKey is the private key the web server uses to
- // authenticate itself to clients.
- WebServerPrivateKey string
- // WebServerPortForwardAddress specifies the expected network
- // address ("<host>:<port>") specified in a client's port forward
- // HostToConnect and PortToConnect when the client is making a
- // tunneled connection to the web server. This address is always
- // exempted from validation against SSH_DISALLOWED_PORT_FORWARD_HOSTS
- // and AllowTCPPorts.
- WebServerPortForwardAddress string
- // WebServerPortForwardRedirectAddress specifies an alternate
- // destination address to be substituted and dialed instead of
- // the original destination when the port forward destination is
- // WebServerPortForwardAddress.
- WebServerPortForwardRedirectAddress string
- // TunnelProtocolPorts specifies which tunnel protocols to run
- // and which ports to listen on for each protocol. Valid tunnel
- // protocols include:
- // "SSH", "OSSH", "UNFRONTED-MEEK-OSSH", "UNFRONTED-MEEK-HTTPS-OSSH",
- // "UNFRONTED-MEEK-SESSION-TICKET-OSSH", "FRONTED-MEEK-OSSH",
- // "FRONTED-MEEK-QUIC-OSSH", "FRONTED-MEEK-HTTP-OSSH", "QUIC-OSSH",
- // "MARIONETTE-OSSH", "TAPDANCE-OSSH", abd "CONJURE-OSSH".
- //
- // In the case of "MARIONETTE-OSSH" the port value is ignored and must be
- // set to 0. The port value specified in the Marionette format is used.
- TunnelProtocolPorts map[string]int
- // TunnelProtocolPassthroughAddresses specifies passthrough addresses to be
- // used for tunnel protocols configured in TunnelProtocolPorts. Passthrough
- // is a probing defense which relays all network traffic between a client and
- // the passthrough target when the client fails anti-probing tests.
- //
- // TunnelProtocolPassthroughAddresses is supported for:
- // "UNFRONTED-MEEK-HTTPS-OSSH", "UNFRONTED-MEEK-SESSION-TICKET-OSSH".
- TunnelProtocolPassthroughAddresses map[string]string
- // SSHPrivateKey is the SSH host key. The same key is used for
- // all protocols, run by this server instance, which use SSH.
- SSHPrivateKey string
- // SSHServerVersion is the server version presented in the
- // identification string. The same value is used for all
- // protocols, run by this server instance, which use SSH.
- SSHServerVersion string
- // SSHUserName is the SSH user name to be presented by the
- // the tunnel-core client. The same value is used for all
- // protocols, run by this server instance, which use SSH.
- SSHUserName string
- // SSHPassword is the SSH password to be presented by the
- // the tunnel-core client. The same value is used for all
- // protocols, run by this server instance, which use SSH.
- SSHPassword string
- // SSHBeginHandshakeTimeoutMilliseconds specifies the timeout
- // for clients queueing to begin an SSH handshake. The default
- // is SSH_BEGIN_HANDSHAKE_TIMEOUT.
- SSHBeginHandshakeTimeoutMilliseconds *int
- // SSHHandshakeTimeoutMilliseconds specifies the timeout
- // before which a client must complete its handshake. The default
- // is SSH_HANDSHAKE_TIMEOUT.
- SSHHandshakeTimeoutMilliseconds *int
- // ObfuscatedSSHKey is the secret key for use in the Obfuscated
- // SSH protocol. The same secret key is used for all protocols,
- // run by this server instance, which use Obfuscated SSH.
- ObfuscatedSSHKey string
- // MeekCookieEncryptionPrivateKey is the NaCl private key used
- // to decrypt meek cookie payload sent from clients. The same
- // key is used for all meek protocols run by this server instance.
- MeekCookieEncryptionPrivateKey string
- // MeekObfuscatedKey is the secret key used for obfuscating
- // meek cookies sent from clients. The same key is used for all
- // meek protocols run by this server instance.
- MeekObfuscatedKey string
- // MeekProhibitedHeaders is a list of HTTP headers to check for
- // in client requests. If one of these headers is found, the
- // request fails. This is used to defend against abuse.
- MeekProhibitedHeaders []string
- // MeekProxyForwardedForHeaders is a list of HTTP headers which
- // may be added by downstream HTTP proxies or CDNs in front
- // of clients. These headers supply the original client IP
- // address, which is geolocated for stats purposes. Headers
- // include, for example, X-Forwarded-For. The header's value
- // is assumed to be a comma delimted list of IP addresses where
- // the client IP is the first IP address in the list. Meek protocols
- // look for these headers and use the client IP address from
- // the header if any one is present and the value is a valid
- // IP address; otherwise the direct connection remote address is
- // used as the client IP.
- MeekProxyForwardedForHeaders []string
- // MeekTurnAroundTimeoutMilliseconds specifies the amount of time meek will
- // wait for downstream bytes before responding to a request. The default is
- // MEEK_DEFAULT_TURN_AROUND_TIMEOUT.
- MeekTurnAroundTimeoutMilliseconds *int
- // MeekExtendedTurnAroundTimeoutMilliseconds specifies the extended amount of
- // time meek will wait for downstream bytes, as long as bytes arrive every
- // MeekTurnAroundTimeoutMilliseconds, before responding to a request. The
- // default is MEEK_DEFAULT_EXTENDED_TURN_AROUND_TIMEOUT.
- MeekExtendedTurnAroundTimeoutMilliseconds *int
- // MeekMaxSessionStalenessMilliseconds specifies the TTL for meek sessions.
- // The default is MEEK_DEFAULT_MAX_SESSION_STALENESS.
- MeekMaxSessionStalenessMilliseconds *int
- // MeekHTTPClientIOTimeoutMilliseconds specifies meek HTTP server I/O
- // timeouts. The default is MEEK_DEFAULT_HTTP_CLIENT_IO_TIMEOUT.
- MeekHTTPClientIOTimeoutMilliseconds *int
- // MeekCachedResponseBufferSize is the size of a private,
- // fixed-size buffer allocated for every meek client. The buffer
- // is used to cache response payload, allowing the client to retry
- // fetching when a network connection is interrupted. This retry
- // makes the OSSH tunnel within meek resilient to interruptions
- // at the HTTP TCP layer.
- // Larger buffers increase resiliency to interruption, but consume
- // more memory as buffers as never freed. The maximum size of a
- // response payload is a function of client activity, network
- // throughput and throttling.
- // A default of 64K is used when MeekCachedResponseBufferSize is 0.
- MeekCachedResponseBufferSize int
- // MeekCachedResponsePoolBufferSize is the size of a fixed-size,
- // shared buffer used to temporarily extend a private buffer when
- // MeekCachedResponseBufferSize is insufficient. Shared buffers
- // allow some clients to successfully retry longer response payloads
- // without allocating large buffers for all clients.
- // A default of 64K is used when MeekCachedResponsePoolBufferSize
- // is 0.
- MeekCachedResponsePoolBufferSize int
- // MeekCachedResponsePoolBufferCount is the number of shared
- // buffers. Shared buffers are allocated on first use and remain
- // allocated, so shared buffer count * size is roughly the memory
- // overhead of this facility.
- // A default of 2048 is used when MeekCachedResponsePoolBufferCount
- // is 0.
- MeekCachedResponsePoolBufferCount int
- // UDPInterceptUdpgwServerAddress specifies the network address of
- // a udpgw server which clients may be port forwarding to. When
- // specified, these TCP port forwards are intercepted and handled
- // directly by this server, which parses the SSH channel using the
- // udpgw protocol. Handling includes udpgw transparent DNS: tunneled
- // UDP DNS packets are rerouted to the host's DNS server.
- //
- // The intercept is applied before the port forward destination is
- // validated against SSH_DISALLOWED_PORT_FORWARD_HOSTS and
- // AllowTCPPorts. So the intercept address may be any otherwise
- // prohibited destination.
- UDPInterceptUdpgwServerAddress string
- // DNSResolverIPAddress specifies the IP address of a DNS server
- // to be used when "/etc/resolv.conf" doesn't exist or fails to
- // parse. When blank, "/etc/resolv.conf" must contain a usable
- // "nameserver" entry.
- DNSResolverIPAddress string
- // LoadMonitorPeriodSeconds indicates how frequently to log server
- // load information (number of connected clients per tunnel protocol,
- // number of running goroutines, amount of memory allocated, etc.)
- // The default, 0, disables load logging.
- LoadMonitorPeriodSeconds int
- // ProcessProfileOutputDirectory is the path of a directory to which
- // process profiles will be written when signaled with SIGUSR2. The
- // files are overwritten on each invocation. When set to the default
- // value, blank, no profiles are written on SIGUSR2. Profiles include
- // the default profiles here: https://golang.org/pkg/runtime/pprof/#Profile.
- ProcessProfileOutputDirectory string
- // ProcessBlockProfileDurationSeconds specifies the sample duration for
- // "block" profiling. For the default, 0, no "block" profile is taken.
- ProcessBlockProfileDurationSeconds int
- // ProcessCPUProfileDurationSeconds specifies the sample duration for
- // CPU profiling. For the default, 0, no CPU profile is taken.
- ProcessCPUProfileDurationSeconds int
- // TrafficRulesFilename is the path of a file containing a JSON-encoded
- // TrafficRulesSet, the traffic rules to apply to Psiphon client tunnels.
- TrafficRulesFilename string
- // OSLConfigFilename is the path of a file containing a JSON-encoded
- // OSL Config, the OSL schemes to apply to Psiphon client tunnels.
- OSLConfigFilename string
- // RunPacketTunnel specifies whether to run a packet tunnel.
- RunPacketTunnel bool
- // PacketTunnelEgressInterface specifies tun.ServerConfig.EgressInterface.
- PacketTunnelEgressInterface string
- // PacketTunnelEnableDNSFlowTracking sets
- // tun.ServerConfig.EnableDNSFlowTracking.
- PacketTunnelEnableDNSFlowTracking bool
- // PacketTunnelDownstreamPacketQueueSize specifies
- // tun.ServerConfig.DownStreamPacketQueueSize.
- PacketTunnelDownstreamPacketQueueSize int
- // PacketTunnelSessionIdleExpirySeconds specifies
- // tun.ServerConfig.SessionIdleExpirySeconds.
- PacketTunnelSessionIdleExpirySeconds int
- // PacketTunnelSudoNetworkConfigCommands sets
- // tun.ServerConfig.SudoNetworkConfigCommands.
- PacketTunnelSudoNetworkConfigCommands bool
- // RunPacketManipulator specifies whether to run a packet manipulator.
- RunPacketManipulator bool
- // MaxConcurrentSSHHandshakes specifies a limit on the number of concurrent
- // SSH handshake negotiations. This is set to mitigate spikes in memory
- // allocations and CPU usage associated with SSH handshakes when many clients
- // attempt to connect concurrently. When a maximum limit is specified and
- // reached, additional clients that establish TCP or meek connections will
- // be disconnected after a short wait for the number of concurrent handshakes
- // to drop below the limit.
- // The default, 0 is no limit.
- MaxConcurrentSSHHandshakes int
- // PeriodicGarbageCollectionSeconds turns on periodic calls to
- // debug.FreeOSMemory, every specified number of seconds, to force garbage
- // collection and memory scavenging. Specify 0 to disable. The default is
- // PERIODIC_GARBAGE_COLLECTION.
- PeriodicGarbageCollectionSeconds *int
- // StopEstablishTunnelsEstablishedClientThreshold sets the established client
- // threshold for dumping profiles when SIGTSTP is signaled. When there are
- // less than or equal to the threshold number of established clients,
- // profiles are dumped to aid investigating unusual load limited states that
- // occur when few clients are connected and load should be relatively low. A
- // profile dump is attempted at most once per process lifetime, the first
- // time the threshold is met. Disabled when < 0.
- StopEstablishTunnelsEstablishedClientThreshold *int
- // AccessControlVerificationKeyRing is the access control authorization
- // verification key ring used to verify signed authorizations presented
- // by clients. Verified, active (unexpired) access control types will be
- // available for matching in the TrafficRulesFilter for the client via
- // AuthorizedAccessTypes. All other authorizations are ignored.
- AccessControlVerificationKeyRing accesscontrol.VerificationKeyRing
- // TacticsConfigFilename is the path of a file containing a JSON-encoded
- // tactics server configuration.
- TacticsConfigFilename string
- // MarionetteFormat specifies a Marionette format to use with the
- // MARIONETTE-OSSH tunnel protocol. The format specifies the network
- // protocol port to listen on.
- MarionetteFormat string
- // BlocklistFilename is the path of a file containing a CSV-encoded
- // blocklist configuration. See NewBlocklist for more file format
- // documentation.
- BlocklistFilename string
- // BlocklistActive indicates whether to actively prevent blocklist hits in
- // addition to logging events.
- BlocklistActive bool
- // AllowBogons disables port forward bogon checks. This should be used only
- // for testing.
- AllowBogons bool
- // OwnEncodedServerEntries is a list of the server's own encoded server
- // entries, idenfified by server entry tag. These values are used in the
- // handshake API to update clients that don't yet have a signed copy of these
- // server entries.
- //
- // For purposes of compartmentalization, each server receives only its own
- // server entries here; and, besides the discovery server entries, in
- // psinet.Database, necessary for the discovery feature, no other server
- // entries are stored on a Psiphon server.
- OwnEncodedServerEntries map[string]string
- sshBeginHandshakeTimeout time.Duration
- sshHandshakeTimeout time.Duration
- periodicGarbageCollection time.Duration
- stopEstablishTunnelsEstablishedClientThreshold int
- dumpProfilesOnStopEstablishTunnelsDone int32
- frontingProviderID string
- runningProtocols []string
- }
- // GetLogFileReopenConfig gets the reopen retries, and create/mode inputs for
- // rotate.NewRotatableFileWriter, which is used when writing to log files.
- //
- // By default, we expect the log files to be managed by logrotate, with
- // logrotate configured to re-create the next log file after rotation. As
- // described in the documentation for rotate.NewRotatableFileWriter, and as
- // observed in production, we occasionally need retries when attempting to
- // reopen the log file post-rotation; and we avoid conflicts, and spurious
- // re-rotations, by disabling file create in rotate.NewRotatableFileWriter. In
- // large scale production, incidents requiring retry are very rare, so the
- // retry delay is not expected to have a significant impact on performance.
- //
- // The defaults may be overriden in the Config.
- func (config *Config) GetLogFileReopenConfig() (int, bool, os.FileMode) {
- retries := DEFAULT_LOG_FILE_REOPEN_RETRIES
- if config.LogFileReopenRetries != nil {
- retries = *config.LogFileReopenRetries
- }
- create := false
- mode := os.FileMode(0)
- if config.LogFileCreateMode != nil {
- create = true
- mode = os.FileMode(*config.LogFileCreateMode)
- }
- return retries, create, mode
- }
- // RunWebServer indicates whether to run a web server component.
- func (config *Config) RunWebServer() bool {
- return config.WebServerPort > 0
- }
- // RunLoadMonitor indicates whether to monitor and log server load.
- func (config *Config) RunLoadMonitor() bool {
- return config.LoadMonitorPeriodSeconds > 0
- }
- // RunPeriodicGarbageCollection indicates whether to run periodic garbage collection.
- func (config *Config) RunPeriodicGarbageCollection() bool {
- return config.periodicGarbageCollection > 0
- }
- // DumpProfilesOnStopEstablishTunnels indicates whether dump profiles due to
- // an unexpectedly low number of established clients during high load.
- func (config *Config) DumpProfilesOnStopEstablishTunnels(establishedClientsCount int) bool {
- if config.stopEstablishTunnelsEstablishedClientThreshold < 0 {
- return false
- }
- if atomic.LoadInt32(&config.dumpProfilesOnStopEstablishTunnelsDone) != 0 {
- return false
- }
- dump := (establishedClientsCount <= config.stopEstablishTunnelsEstablishedClientThreshold)
- atomic.StoreInt32(&config.dumpProfilesOnStopEstablishTunnelsDone, 1)
- return dump
- }
- // GetOwnEncodedServerEntry returns one of the server's own server entries, as
- // identified by the server entry tag.
- func (config *Config) GetOwnEncodedServerEntry(serverEntryTag string) (string, bool) {
- serverEntry, ok := config.OwnEncodedServerEntries[serverEntryTag]
- return serverEntry, ok
- }
- // GetFrontingProviderID returns the fronting provider ID associated with the
- // server's fronted protocol(s).
- func (config *Config) GetFrontingProviderID() string {
- return config.frontingProviderID
- }
- // GetRunningProtocols returns the list of protcols this server is running.
- // The caller must not mutate the return value.
- func (config *Config) GetRunningProtocols() []string {
- return config.runningProtocols
- }
- // LoadConfig loads and validates a JSON encoded server config.
- func LoadConfig(configJSON []byte) (*Config, error) {
- var config Config
- err := json.Unmarshal(configJSON, &config)
- if err != nil {
- return nil, errors.Trace(err)
- }
- if config.ServerIPAddress == "" {
- return nil, errors.TraceNew("ServerIPAddress is required")
- }
- if config.WebServerPort > 0 && (config.WebServerSecret == "" || config.WebServerCertificate == "" ||
- config.WebServerPrivateKey == "") {
- return nil, errors.TraceNew(
- "Web server requires WebServerSecret, WebServerCertificate, WebServerPrivateKey")
- }
- if config.WebServerPortForwardAddress != "" {
- if err := validateNetworkAddress(config.WebServerPortForwardAddress, false); err != nil {
- return nil, errors.TraceNew("WebServerPortForwardAddress is invalid")
- }
- }
- if config.WebServerPortForwardRedirectAddress != "" {
- if config.WebServerPortForwardAddress == "" {
- return nil, errors.TraceNew(
- "WebServerPortForwardRedirectAddress requires WebServerPortForwardAddress")
- }
- if err := validateNetworkAddress(config.WebServerPortForwardRedirectAddress, false); err != nil {
- return nil, errors.TraceNew("WebServerPortForwardRedirectAddress is invalid")
- }
- }
- for tunnelProtocol, port := range config.TunnelProtocolPorts {
- if !common.Contains(protocol.SupportedTunnelProtocols, tunnelProtocol) {
- return nil, errors.Tracef("Unsupported tunnel protocol: %s", tunnelProtocol)
- }
- if protocol.TunnelProtocolUsesSSH(tunnelProtocol) ||
- protocol.TunnelProtocolUsesObfuscatedSSH(tunnelProtocol) {
- if config.SSHPrivateKey == "" || config.SSHServerVersion == "" ||
- config.SSHUserName == "" || config.SSHPassword == "" {
- return nil, errors.Tracef(
- "Tunnel protocol %s requires SSHPrivateKey, SSHServerVersion, SSHUserName, SSHPassword",
- tunnelProtocol)
- }
- }
- if protocol.TunnelProtocolUsesObfuscatedSSH(tunnelProtocol) {
- if config.ObfuscatedSSHKey == "" {
- return nil, errors.Tracef(
- "Tunnel protocol %s requires ObfuscatedSSHKey",
- tunnelProtocol)
- }
- }
- if protocol.TunnelProtocolUsesMeekHTTP(tunnelProtocol) ||
- protocol.TunnelProtocolUsesMeekHTTPS(tunnelProtocol) {
- if config.MeekCookieEncryptionPrivateKey == "" || config.MeekObfuscatedKey == "" {
- return nil, errors.Tracef(
- "Tunnel protocol %s requires MeekCookieEncryptionPrivateKey, MeekObfuscatedKey",
- tunnelProtocol)
- }
- }
- if protocol.TunnelProtocolUsesMarionette(tunnelProtocol) {
- if port != 0 {
- return nil, errors.Tracef(
- "Tunnel protocol %s port is specified in format, not TunnelProtocolPorts",
- tunnelProtocol)
- }
- }
- }
- for tunnelProtocol, address := range config.TunnelProtocolPassthroughAddresses {
- if !protocol.TunnelProtocolSupportsPassthrough(tunnelProtocol) {
- return nil, errors.Tracef("Passthrough unsupported tunnel protocol: %s", tunnelProtocol)
- }
- if _, _, err := net.SplitHostPort(address); err != nil {
- if err != nil {
- return nil, errors.Tracef(
- "Tunnel protocol %s passthrough address %s invalid: %s",
- tunnelProtocol, address, err)
- }
- }
- }
- config.sshBeginHandshakeTimeout = SSH_BEGIN_HANDSHAKE_TIMEOUT
- if config.SSHBeginHandshakeTimeoutMilliseconds != nil {
- config.sshBeginHandshakeTimeout = time.Duration(*config.SSHBeginHandshakeTimeoutMilliseconds) * time.Millisecond
- }
- config.sshHandshakeTimeout = SSH_HANDSHAKE_TIMEOUT
- if config.SSHHandshakeTimeoutMilliseconds != nil {
- config.sshHandshakeTimeout = time.Duration(*config.SSHHandshakeTimeoutMilliseconds) * time.Millisecond
- }
- if config.ObfuscatedSSHKey != "" {
- seed, err := protocol.DeriveSSHServerVersionPRNGSeed(config.ObfuscatedSSHKey)
- if err != nil {
- return nil, errors.Tracef(
- "DeriveSSHServerVersionPRNGSeed failed: %s", err)
- }
- serverVersion := values.GetSSHServerVersion(seed)
- if serverVersion != "" {
- config.SSHServerVersion = serverVersion
- }
- }
- if config.UDPInterceptUdpgwServerAddress != "" {
- if err := validateNetworkAddress(config.UDPInterceptUdpgwServerAddress, true); err != nil {
- return nil, errors.Tracef("UDPInterceptUdpgwServerAddress is invalid: %s", err)
- }
- }
- if config.DNSResolverIPAddress != "" {
- if net.ParseIP(config.DNSResolverIPAddress) == nil {
- return nil, errors.Tracef("DNSResolverIPAddress is invalid")
- }
- }
- config.periodicGarbageCollection = PERIODIC_GARBAGE_COLLECTION
- if config.PeriodicGarbageCollectionSeconds != nil {
- config.periodicGarbageCollection = time.Duration(*config.PeriodicGarbageCollectionSeconds) * time.Second
- }
- config.stopEstablishTunnelsEstablishedClientThreshold = STOP_ESTABLISH_TUNNELS_ESTABLISHED_CLIENT_THRESHOLD
- if config.StopEstablishTunnelsEstablishedClientThreshold != nil {
- config.stopEstablishTunnelsEstablishedClientThreshold = *config.StopEstablishTunnelsEstablishedClientThreshold
- }
- err = accesscontrol.ValidateVerificationKeyRing(&config.AccessControlVerificationKeyRing)
- if err != nil {
- return nil, errors.Tracef(
- "AccessControlVerificationKeyRing is invalid: %s", err)
- }
- // Limitation: the following is a shortcut which extracts the server's
- // fronting provider ID from the server's OwnEncodedServerEntries. This logic
- // assumes a server has only one fronting provider. In principle, it's
- // possible for server with multiple server entries to run multiple fronted
- // protocols, each with a different fronting provider ID.
- //
- // TODO: add an explicit parameter mapping tunnel protocol ports to fronting
- // provider IDs.
- for _, encodedServerEntry := range config.OwnEncodedServerEntries {
- serverEntry, err := protocol.DecodeServerEntry(encodedServerEntry, "", "")
- if err != nil {
- return nil, errors.Tracef(
- "protocol.DecodeServerEntry failed: %s", err)
- }
- if config.frontingProviderID == "" {
- config.frontingProviderID = serverEntry.FrontingProviderID
- } else if config.frontingProviderID != serverEntry.FrontingProviderID {
- return nil, errors.Tracef("unsupported multiple FrontingProviderID values")
- }
- }
- config.runningProtocols = []string{}
- for tunnelProtocol := range config.TunnelProtocolPorts {
- config.runningProtocols = append(config.runningProtocols, tunnelProtocol)
- }
- return &config, nil
- }
- func validateNetworkAddress(address string, requireIPaddress bool) error {
- host, portStr, err := net.SplitHostPort(address)
- if err != nil {
- return err
- }
- if requireIPaddress && net.ParseIP(host) == nil {
- return errors.TraceNew("host must be an IP address")
- }
- port, err := strconv.Atoi(portStr)
- if err != nil {
- return err
- }
- if port < 0 || port > 65535 {
- return errors.TraceNew("invalid port")
- }
- return nil
- }
- // GenerateConfigParams specifies customizations to be applied to
- // a generated server config.
- type GenerateConfigParams struct {
- LogFilename string
- SkipPanickingLogWriter bool
- LogLevel string
- ServerIPAddress string
- WebServerPort int
- EnableSSHAPIRequests bool
- TunnelProtocolPorts map[string]int
- MarionetteFormat string
- TrafficRulesConfigFilename string
- OSLConfigFilename string
- TacticsConfigFilename string
- TacticsRequestPublicKey string
- TacticsRequestObfuscatedKey string
- }
- // GenerateConfig creates a new Psiphon server config. It returns JSON encoded
- // configs and a client-compatible "server entry" for the server. It generates
- // all necessary secrets and key material, which are emitted in the config
- // file and server entry as necessary.
- //
- // GenerateConfig uses sample values for many fields. The intention is for
- // generated configs to be used for testing or as examples for production
- // setup, not to generate production-ready configurations.
- //
- // When tactics key material is provided in GenerateConfigParams, tactics
- // capabilities are added for all meek protocols in TunnelProtocolPorts.
- func GenerateConfig(params *GenerateConfigParams) ([]byte, []byte, []byte, []byte, []byte, error) {
- // Input validation
- if net.ParseIP(params.ServerIPAddress) == nil {
- return nil, nil, nil, nil, nil, errors.TraceNew("invalid IP address")
- }
- if len(params.TunnelProtocolPorts) == 0 {
- return nil, nil, nil, nil, nil, errors.TraceNew("no tunnel protocols")
- }
- usedPort := make(map[int]bool)
- if params.WebServerPort != 0 {
- usedPort[params.WebServerPort] = true
- }
- usingMeek := false
- for tunnelProtocol, port := range params.TunnelProtocolPorts {
- if !common.Contains(protocol.SupportedTunnelProtocols, tunnelProtocol) {
- return nil, nil, nil, nil, nil, errors.TraceNew("invalid tunnel protocol")
- }
- if usedPort[port] {
- return nil, nil, nil, nil, nil, errors.TraceNew("duplicate listening port")
- }
- usedPort[port] = true
- if protocol.TunnelProtocolUsesMeekHTTP(tunnelProtocol) ||
- protocol.TunnelProtocolUsesMeekHTTPS(tunnelProtocol) {
- usingMeek = true
- }
- }
- // One test mode populates the tactics config file; this will generate
- // keys. Another test mode passes in existing keys to be used in the
- // server entry. Both the filename and existing keys cannot be passed in.
- if (params.TacticsConfigFilename != "") &&
- (params.TacticsRequestPublicKey != "" || params.TacticsRequestObfuscatedKey != "") {
- return nil, nil, nil, nil, nil, errors.TraceNew("invalid tactics parameters")
- }
- // Web server config
- var webServerSecret, webServerCertificate,
- webServerPrivateKey, webServerPortForwardAddress string
- if params.WebServerPort != 0 {
- webServerSecretBytes, err := common.MakeSecureRandomBytes(WEB_SERVER_SECRET_BYTE_LENGTH)
- if err != nil {
- return nil, nil, nil, nil, nil, errors.Trace(err)
- }
- webServerSecret = hex.EncodeToString(webServerSecretBytes)
- webServerCertificate, webServerPrivateKey, err = common.GenerateWebServerCertificate("")
- if err != nil {
- return nil, nil, nil, nil, nil, errors.Trace(err)
- }
- webServerPortForwardAddress = net.JoinHostPort(
- params.ServerIPAddress, strconv.Itoa(params.WebServerPort))
- }
- // SSH config
- rsaKey, err := rsa.GenerateKey(rand.Reader, SSH_RSA_HOST_KEY_BITS)
- if err != nil {
- return nil, nil, nil, nil, nil, errors.Trace(err)
- }
- sshPrivateKey := pem.EncodeToMemory(
- &pem.Block{
- Type: "RSA PRIVATE KEY",
- Bytes: x509.MarshalPKCS1PrivateKey(rsaKey),
- },
- )
- signer, err := ssh.NewSignerFromKey(rsaKey)
- if err != nil {
- return nil, nil, nil, nil, nil, errors.Trace(err)
- }
- sshPublicKey := signer.PublicKey()
- sshUserNameSuffixBytes, err := common.MakeSecureRandomBytes(SSH_USERNAME_SUFFIX_BYTE_LENGTH)
- if err != nil {
- return nil, nil, nil, nil, nil, errors.Trace(err)
- }
- sshUserNameSuffix := hex.EncodeToString(sshUserNameSuffixBytes)
- sshUserName := "psiphon_" + sshUserNameSuffix
- sshPasswordBytes, err := common.MakeSecureRandomBytes(SSH_PASSWORD_BYTE_LENGTH)
- if err != nil {
- return nil, nil, nil, nil, nil, errors.Trace(err)
- }
- sshPassword := hex.EncodeToString(sshPasswordBytes)
- sshServerVersion := "SSH-2.0-Psiphon"
- // Obfuscated SSH config
- obfuscatedSSHKeyBytes, err := common.MakeSecureRandomBytes(SSH_OBFUSCATED_KEY_BYTE_LENGTH)
- if err != nil {
- return nil, nil, nil, nil, nil, errors.Trace(err)
- }
- obfuscatedSSHKey := hex.EncodeToString(obfuscatedSSHKeyBytes)
- // Meek config
- var meekCookieEncryptionPublicKey, meekCookieEncryptionPrivateKey, meekObfuscatedKey string
- if usingMeek {
- rawMeekCookieEncryptionPublicKey, rawMeekCookieEncryptionPrivateKey, err :=
- box.GenerateKey(rand.Reader)
- if err != nil {
- return nil, nil, nil, nil, nil, errors.Trace(err)
- }
- meekCookieEncryptionPublicKey = base64.StdEncoding.EncodeToString(rawMeekCookieEncryptionPublicKey[:])
- meekCookieEncryptionPrivateKey = base64.StdEncoding.EncodeToString(rawMeekCookieEncryptionPrivateKey[:])
- meekObfuscatedKeyBytes, err := common.MakeSecureRandomBytes(SSH_OBFUSCATED_KEY_BYTE_LENGTH)
- if err != nil {
- return nil, nil, nil, nil, nil, errors.Trace(err)
- }
- meekObfuscatedKey = hex.EncodeToString(meekObfuscatedKeyBytes)
- }
- // Other config
- discoveryValueHMACKeyBytes, err := common.MakeSecureRandomBytes(DISCOVERY_VALUE_KEY_BYTE_LENGTH)
- if err != nil {
- return nil, nil, nil, nil, nil, errors.Trace(err)
- }
- discoveryValueHMACKey := base64.StdEncoding.EncodeToString(discoveryValueHMACKeyBytes)
- // Assemble configs and server entry
- // Note: this config is intended for either testing or as an illustrative
- // example or template and is not intended for production deployment.
- logLevel := params.LogLevel
- if logLevel == "" {
- logLevel = "info"
- }
- // For testing, set the Psiphon server to create its log files; we do not
- // expect tests to necessarily run under log managers, such as logrotate.
- createMode := 0666
- config := &Config{
- LogLevel: logLevel,
- LogFilename: params.LogFilename,
- LogFileCreateMode: &createMode,
- SkipPanickingLogWriter: params.SkipPanickingLogWriter,
- GeoIPDatabaseFilenames: nil,
- HostID: "example-host-id",
- ServerIPAddress: params.ServerIPAddress,
- DiscoveryValueHMACKey: discoveryValueHMACKey,
- WebServerPort: params.WebServerPort,
- WebServerSecret: webServerSecret,
- WebServerCertificate: webServerCertificate,
- WebServerPrivateKey: webServerPrivateKey,
- WebServerPortForwardAddress: webServerPortForwardAddress,
- SSHPrivateKey: string(sshPrivateKey),
- SSHServerVersion: sshServerVersion,
- SSHUserName: sshUserName,
- SSHPassword: sshPassword,
- ObfuscatedSSHKey: obfuscatedSSHKey,
- TunnelProtocolPorts: params.TunnelProtocolPorts,
- DNSResolverIPAddress: "8.8.8.8",
- UDPInterceptUdpgwServerAddress: "127.0.0.1:7300",
- MeekCookieEncryptionPrivateKey: meekCookieEncryptionPrivateKey,
- MeekObfuscatedKey: meekObfuscatedKey,
- MeekProhibitedHeaders: nil,
- MeekProxyForwardedForHeaders: []string{"X-Forwarded-For"},
- LoadMonitorPeriodSeconds: 300,
- TrafficRulesFilename: params.TrafficRulesConfigFilename,
- OSLConfigFilename: params.OSLConfigFilename,
- TacticsConfigFilename: params.TacticsConfigFilename,
- MarionetteFormat: params.MarionetteFormat,
- }
- encodedConfig, err := json.MarshalIndent(config, "\n", " ")
- if err != nil {
- return nil, nil, nil, nil, nil, errors.Trace(err)
- }
- intPtr := func(i int) *int {
- return &i
- }
- trafficRulesSet := &TrafficRulesSet{
- DefaultRules: TrafficRules{
- RateLimits: RateLimits{
- ReadUnthrottledBytes: new(int64),
- ReadBytesPerSecond: new(int64),
- WriteUnthrottledBytes: new(int64),
- WriteBytesPerSecond: new(int64),
- },
- IdleTCPPortForwardTimeoutMilliseconds: intPtr(DEFAULT_IDLE_TCP_PORT_FORWARD_TIMEOUT_MILLISECONDS),
- IdleUDPPortForwardTimeoutMilliseconds: intPtr(DEFAULT_IDLE_UDP_PORT_FORWARD_TIMEOUT_MILLISECONDS),
- MaxTCPPortForwardCount: intPtr(DEFAULT_MAX_TCP_PORT_FORWARD_COUNT),
- MaxUDPPortForwardCount: intPtr(DEFAULT_MAX_UDP_PORT_FORWARD_COUNT),
- AllowTCPPorts: nil,
- AllowUDPPorts: nil,
- },
- }
- encodedTrafficRulesSet, err := json.MarshalIndent(trafficRulesSet, "\n", " ")
- if err != nil {
- return nil, nil, nil, nil, nil, errors.Trace(err)
- }
- encodedOSLConfig, err := json.MarshalIndent(&osl.Config{}, "\n", " ")
- if err != nil {
- return nil, nil, nil, nil, nil, errors.Trace(err)
- }
- tacticsRequestPublicKey := params.TacticsRequestPublicKey
- tacticsRequestObfuscatedKey := params.TacticsRequestObfuscatedKey
- var tacticsRequestPrivateKey string
- var encodedTacticsConfig []byte
- if params.TacticsConfigFilename != "" {
- tacticsRequestPublicKey, tacticsRequestPrivateKey, tacticsRequestObfuscatedKey, err =
- tactics.GenerateKeys()
- if err != nil {
- return nil, nil, nil, nil, nil, errors.Trace(err)
- }
- decodedTacticsRequestPublicKey, err := base64.StdEncoding.DecodeString(tacticsRequestPublicKey)
- if err != nil {
- return nil, nil, nil, nil, nil, errors.Trace(err)
- }
- decodedTacticsRequestPrivateKey, err := base64.StdEncoding.DecodeString(tacticsRequestPrivateKey)
- if err != nil {
- return nil, nil, nil, nil, nil, errors.Trace(err)
- }
- decodedTacticsRequestObfuscatedKey, err := base64.StdEncoding.DecodeString(tacticsRequestObfuscatedKey)
- if err != nil {
- return nil, nil, nil, nil, nil, errors.Trace(err)
- }
- tacticsConfig := &tactics.Server{
- RequestPublicKey: decodedTacticsRequestPublicKey,
- RequestPrivateKey: decodedTacticsRequestPrivateKey,
- RequestObfuscatedKey: decodedTacticsRequestObfuscatedKey,
- DefaultTactics: tactics.Tactics{
- TTL: "1m",
- Probability: 1.0,
- },
- }
- encodedTacticsConfig, err = json.MarshalIndent(tacticsConfig, "\n", " ")
- if err != nil {
- return nil, nil, nil, nil, nil, errors.Trace(err)
- }
- }
- capabilities := []string{}
- if params.EnableSSHAPIRequests {
- capabilities = append(capabilities, protocol.CAPABILITY_SSH_API_REQUESTS)
- }
- if params.WebServerPort != 0 {
- capabilities = append(capabilities, protocol.CAPABILITY_UNTUNNELED_WEB_API_REQUESTS)
- }
- for tunnelProtocol := range params.TunnelProtocolPorts {
- capabilities = append(capabilities, protocol.GetCapability(tunnelProtocol))
- if params.TacticsRequestPublicKey != "" && params.TacticsRequestObfuscatedKey != "" &&
- protocol.TunnelProtocolUsesMeek(tunnelProtocol) {
- capabilities = append(capabilities, protocol.GetTacticsCapability(tunnelProtocol))
- }
- }
- sshPort := params.TunnelProtocolPorts["SSH"]
- obfuscatedSSHPort := params.TunnelProtocolPorts["OSSH"]
- obfuscatedSSHQUICPort := params.TunnelProtocolPorts["QUIC-OSSH"]
- // Meek port limitations
- // - fronted meek protocols are hard-wired in the client to be port 443 or 80.
- // - only one other meek port may be specified.
- meekPort := params.TunnelProtocolPorts["UNFRONTED-MEEK-OSSH"]
- if meekPort == 0 {
- meekPort = params.TunnelProtocolPorts["UNFRONTED-MEEK-HTTPS-OSSH"]
- }
- if meekPort == 0 {
- meekPort = params.TunnelProtocolPorts["UNFRONTED-MEEK-SESSION-TICKET-OSSH"]
- }
- // Note: fronting params are a stub; this server entry will exercise
- // client and server fronting code paths, but not actually traverse
- // a fronting hop.
- serverEntryWebServerPort := ""
- strippedWebServerCertificate := ""
- if params.WebServerPort != 0 {
- serverEntryWebServerPort = fmt.Sprintf("%d", params.WebServerPort)
- // Server entry format omits the BEGIN/END lines and newlines
- lines := strings.Split(webServerCertificate, "\n")
- strippedWebServerCertificate = strings.Join(lines[1:len(lines)-2], "")
- }
- serverEntry := &protocol.ServerEntry{
- IpAddress: params.ServerIPAddress,
- WebServerPort: serverEntryWebServerPort,
- WebServerSecret: webServerSecret,
- WebServerCertificate: strippedWebServerCertificate,
- SshPort: sshPort,
- SshUsername: sshUserName,
- SshPassword: sshPassword,
- SshHostKey: base64.RawStdEncoding.EncodeToString(sshPublicKey.Marshal()),
- SshObfuscatedPort: obfuscatedSSHPort,
- SshObfuscatedQUICPort: obfuscatedSSHQUICPort,
- SshObfuscatedKey: obfuscatedSSHKey,
- Capabilities: capabilities,
- Region: "US",
- MeekServerPort: meekPort,
- MeekCookieEncryptionPublicKey: meekCookieEncryptionPublicKey,
- MeekObfuscatedKey: meekObfuscatedKey,
- MeekFrontingHosts: []string{params.ServerIPAddress},
- MeekFrontingAddresses: []string{params.ServerIPAddress},
- MeekFrontingDisableSNI: false,
- TacticsRequestPublicKey: tacticsRequestPublicKey,
- TacticsRequestObfuscatedKey: tacticsRequestObfuscatedKey,
- MarionetteFormat: params.MarionetteFormat,
- ConfigurationVersion: 1,
- }
- encodedServerEntry, err := protocol.EncodeServerEntry(serverEntry)
- if err != nil {
- return nil, nil, nil, nil, nil, errors.Trace(err)
- }
- return encodedConfig, encodedTrafficRulesSet, encodedOSLConfig, encodedTacticsConfig, []byte(encodedServerEntry), nil
- }
|