/*
* 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 .
*
*/
package main
import (
"encoding/json"
"flag"
"fmt"
"io"
"io/ioutil"
"os"
"runtime/debug"
"strconv"
"strings"
"syscall"
"time"
"github.com/Psiphon-Inc/rotate-safe-writer"
"github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common"
"github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/common/buildinfo"
"github.com/Psiphon-Labs/psiphon-tunnel-core/psiphon/server"
"github.com/mitchellh/panicwrap"
)
var loadedConfigJSON []byte
func main() {
var configFilename string
var generateServerIPaddress string
var generateServerNetworkInterface string
var generateProtocolPorts stringListFlag
var generateWebServerPort int
var generateLogFilename string
var generateTrafficRulesConfigFilename string
var generateOSLConfigFilename string
var generateTacticsConfigFilename string
var generateServerEntryFilename string
flag.StringVar(
&configFilename,
"config",
server.SERVER_CONFIG_FILENAME,
"run or generate with this config `filename`")
flag.StringVar(
&generateServerIPaddress,
"ipaddress",
server.DEFAULT_SERVER_IP_ADDRESS,
"generate with this server `IP address`")
flag.StringVar(
&generateServerNetworkInterface,
"interface",
"",
"generate with server IP address from this `network-interface`")
flag.Var(
&generateProtocolPorts,
"protocol",
"generate with `protocol:port`; flag may be repeated to enable multiple protocols")
flag.IntVar(
&generateWebServerPort,
"web",
0,
"generate with web server `port`; 0 for no web server")
flag.StringVar(
&generateLogFilename,
"logFilename",
"",
"set application log file name and path; blank for stderr")
flag.StringVar(
&generateTrafficRulesConfigFilename,
"trafficRules",
server.SERVER_TRAFFIC_RULES_CONFIG_FILENAME,
"generate with this traffic rules config `filename`")
flag.StringVar(
&generateOSLConfigFilename,
"osl",
server.SERVER_OSL_CONFIG_FILENAME,
"generate with this OSL config `filename`")
flag.StringVar(
&generateTacticsConfigFilename,
"tactics",
server.SERVER_TACTICS_CONFIG_FILENAME,
"generate with this tactics config `filename`")
flag.StringVar(
&generateServerEntryFilename,
"serverEntry",
server.SERVER_ENTRY_FILENAME,
"generate with this server entry `filename`")
flag.Usage = func() {
fmt.Fprintf(os.Stderr,
"Usage:\n\n"+
"%s generate generates configuration files\n"+
"%s run runs configured services\n\n",
os.Args[0], os.Args[0])
flag.PrintDefaults()
}
flag.Parse()
args := flag.Args()
if len(args) < 1 {
flag.Usage()
os.Exit(1)
} else if args[0] == "generate" {
serverIPaddress := generateServerIPaddress
if generateServerNetworkInterface != "" {
// TODO: IPv6 support
serverIPv4Address, _, err := common.GetInterfaceIPAddresses(generateServerNetworkInterface)
if err == nil && serverIPv4Address == nil {
err = fmt.Errorf("no IPv4 address for interface %s", generateServerNetworkInterface)
}
if err != nil {
fmt.Printf("generate failed: %s\n", err)
os.Exit(1)
}
serverIPaddress = serverIPv4Address.String()
}
tunnelProtocolPorts := make(map[string]int)
for _, protocolPort := range generateProtocolPorts {
parts := strings.Split(protocolPort, ":")
if len(parts) == 2 {
port, err := strconv.Atoi(parts[1])
if err != nil {
fmt.Printf("generate failed: %s\n", err)
os.Exit(1)
}
tunnelProtocolPorts[parts[0]] = port
}
}
configJSON, trafficRulesConfigJSON, OSLConfigJSON,
tacticsConfigJSON, encodedServerEntry, err :=
server.GenerateConfig(
&server.GenerateConfigParams{
LogFilename: generateLogFilename,
ServerIPAddress: serverIPaddress,
TunnelProtocolPorts: tunnelProtocolPorts,
TrafficRulesConfigFilename: generateTrafficRulesConfigFilename,
OSLConfigFilename: generateOSLConfigFilename,
TacticsConfigFilename: generateTacticsConfigFilename,
})
if err != nil {
fmt.Printf("generate failed: %s\n", err)
os.Exit(1)
}
err = ioutil.WriteFile(configFilename, configJSON, 0600)
if err != nil {
fmt.Printf("error writing configuration file: %s\n", err)
os.Exit(1)
}
err = ioutil.WriteFile(generateTrafficRulesConfigFilename, trafficRulesConfigJSON, 0600)
if err != nil {
fmt.Printf("error writing traffic rule config file: %s\n", err)
os.Exit(1)
}
err = ioutil.WriteFile(generateOSLConfigFilename, OSLConfigJSON, 0600)
if err != nil {
fmt.Printf("error writing OSL config file: %s\n", err)
os.Exit(1)
}
err = ioutil.WriteFile(generateTacticsConfigFilename, tacticsConfigJSON, 0600)
if err != nil {
fmt.Printf("error writing tactics config file: %s\n", err)
os.Exit(1)
}
err = ioutil.WriteFile(generateServerEntryFilename, encodedServerEntry, 0600)
if err != nil {
fmt.Printf("error writing server entry file: %s\n", err)
os.Exit(1)
}
} else if args[0] == "run" {
configJSON, err := ioutil.ReadFile(configFilename)
if err != nil {
fmt.Printf("error loading configuration file: %s\n", err)
os.Exit(1)
}
loadedConfigJSON = configJSON
// The initial call to panicwrap.Wrap will spawn a child process
// running the same program.
//
// The parent process waits for the child to terminate and
// panicHandler logs any panics from the child.
//
// The child will return immediately from Wrap without spawning
// and fall through to server.RunServices.
// Unhandled panic wrapper. Logs it, then re-executes the current executable
exitStatus, err := panicwrap.Wrap(&panicwrap.WrapConfig{
Handler: panicHandler,
ForwardSignals: []os.Signal{os.Interrupt, os.Kill, syscall.SIGTERM, syscall.SIGUSR1, syscall.SIGUSR2, syscall.SIGTSTP, syscall.SIGCONT},
})
if err != nil {
fmt.Printf("failed to set up the panic wrapper: %s\n", err)
os.Exit(1)
}
// Note: panicwrap.Wrap documentation states that exitStatus == -1
// should be used to determine whether the process is the child.
// However, we have found that this exitStatus is returned even when
// the process is the parent. Likely due to panicwrap returning
// syscall.WaitStatus.ExitStatus() as the exitStatus, which _can_ be
// -1. Checking panicwrap.Wrapped(nil) is more reliable.
if !panicwrap.Wrapped(nil) {
os.Exit(exitStatus)
}
// Else, this is the child process.
// As of Go 1.19.10, programs with Linux capabilities or setuid do not
// dump panic stacks by default. See:
// https://github.com/golang/go/commit/a7b1cd452ddc69a6606c2f35ac5786dc892e62cb.
// To restore panic stacks, we call SetTraceback("single"), restoring
// the default GOTRACKBACK value. The server program is run as a
// non-privileged user and with CAP_NET capabilities; neither the
// panic stack traces nor register dumps are expected to expose any
// unexpected sensitive information.
debug.SetTraceback("single")
err = server.RunServices(configJSON)
if err != nil {
fmt.Printf("run failed: %s\n", err)
os.Exit(1)
}
}
}
type stringListFlag []string
func (list *stringListFlag) String() string {
return strings.Join(*list, ", ")
}
func (list *stringListFlag) Set(flagValue string) error {
*list = append(*list, flagValue)
return nil
}
func panicHandler(output string) {
if len(loadedConfigJSON) > 0 {
config, err := server.LoadConfig([]byte(loadedConfigJSON))
if err != nil {
fmt.Printf("error parsing configuration file: %s\n%s\n", err, output)
os.Exit(1)
}
logEvent := make(map[string]string)
logEvent["host_id"] = config.HostID
logEvent["build_rev"] = buildinfo.GetBuildInfo().BuildRev
logEvent["timestamp"] = time.Now().Format(time.RFC3339)
logEvent["event_name"] = "server_panic"
// ELK has a maximum field length of 32766 UTF8 bytes. Over that length, the
// log won't be delivered. Truncate the panic field, as it may be much longer.
maxLen := 32766
if len(output) > maxLen {
output = output[:maxLen]
}
logEvent["panic"] = output
// Logs are written to the configured file name. If no name is specified, logs are written to stderr
var jsonWriter io.Writer
if config.LogFilename != "" {
retries, create, mode := config.GetLogFileReopenConfig()
panicLog, err := rotate.NewRotatableFileWriter(
config.LogFilename, retries, create, mode)
if err != nil {
fmt.Printf("unable to set panic log output: %s\n%s\n", err, output)
os.Exit(1)
}
defer panicLog.Close()
jsonWriter = panicLog
} else {
jsonWriter = os.Stderr
}
enc := json.NewEncoder(jsonWriter)
err = enc.Encode(logEvent)
if err != nil {
fmt.Printf("unable to serialize panic message to JSON: %s\n%s\n", err, output)
os.Exit(1)
}
} else {
fmt.Printf("no configuration JSON was loaded, cannot continue\n%s\n", output)
os.Exit(1)
}
os.Exit(1)
}