2018-10-05 20:08:01 +00:00
|
|
|
// +build linux darwin
|
|
|
|
|
|
|
|
package envoy
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2019-06-21 15:06:25 +00:00
|
|
|
"fmt"
|
2018-10-05 20:08:01 +00:00
|
|
|
"os"
|
2019-06-21 15:06:25 +00:00
|
|
|
"os/exec"
|
2018-10-05 20:08:01 +00:00
|
|
|
"path/filepath"
|
2018-10-09 09:57:26 +00:00
|
|
|
"strings"
|
2019-06-21 15:06:25 +00:00
|
|
|
"syscall"
|
|
|
|
"time"
|
2018-10-05 20:08:01 +00:00
|
|
|
|
|
|
|
"golang.org/x/sys/unix"
|
|
|
|
)
|
|
|
|
|
2019-06-21 15:06:25 +00:00
|
|
|
// testSelfExecOverride is a way for the tests to no fork-bomb themselves by
|
|
|
|
// self-executing the whole test suite for each case recursively. It's gross but
|
|
|
|
// the least gross option I could think of.
|
|
|
|
var testSelfExecOverride string
|
|
|
|
|
2018-10-09 09:57:26 +00:00
|
|
|
func isHotRestartOption(s string) bool {
|
|
|
|
restartOpts := []string{
|
|
|
|
"--restart-epoch",
|
|
|
|
"--hot-restart-version",
|
|
|
|
"--drain-time-s",
|
|
|
|
"--parent-shutdown-time-s",
|
|
|
|
}
|
|
|
|
for _, opt := range restartOpts {
|
|
|
|
if s == opt {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
if strings.HasPrefix(s, opt+"=") {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func hasHotRestartOption(argSets ...[]string) bool {
|
|
|
|
for _, args := range argSets {
|
|
|
|
for _, opt := range args {
|
|
|
|
if isHotRestartOption(opt) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-06-21 15:06:25 +00:00
|
|
|
func makeBootstrapPipe(bootstrapJSON []byte) (string, error) {
|
|
|
|
pipeFile := filepath.Join(os.TempDir(),
|
|
|
|
fmt.Sprintf("envoy-%x-bootstrap.json", time.Now().UnixNano()+int64(os.Getpid())))
|
2018-10-09 09:57:26 +00:00
|
|
|
|
2019-06-21 15:06:25 +00:00
|
|
|
err := syscall.Mkfifo(pipeFile, 0600)
|
|
|
|
if err != nil {
|
|
|
|
return pipeFile, err
|
2018-10-05 20:08:01 +00:00
|
|
|
}
|
|
|
|
|
2019-06-21 15:06:25 +00:00
|
|
|
// Get our own executable path.
|
|
|
|
execPath, err := os.Executable()
|
2018-10-05 20:08:01 +00:00
|
|
|
if err != nil {
|
2019-06-21 15:06:25 +00:00
|
|
|
return pipeFile, err
|
2018-10-05 20:08:01 +00:00
|
|
|
}
|
|
|
|
|
2019-06-21 15:06:25 +00:00
|
|
|
if testSelfExecOverride != "" {
|
|
|
|
execPath = testSelfExecOverride
|
|
|
|
} else if strings.HasSuffix(execPath, "/envoy.test") {
|
|
|
|
return pipeFile, fmt.Errorf("I seem to be running in a test binary without " +
|
|
|
|
"overriding the self-executable. Not doing that - it will make you sad. " +
|
|
|
|
"See testSelfExecOverride.")
|
2018-10-05 20:08:01 +00:00
|
|
|
}
|
|
|
|
|
2019-06-21 15:06:25 +00:00
|
|
|
// Exec the pipe-bootstrap internal sub-command which will write the bootstrap
|
|
|
|
// from STDIN to the named pipe (once Envoy opens it) and then clean up the
|
|
|
|
// file for us.
|
|
|
|
cmd := exec.Command(execPath, "connect", "envoy", "pipe-bootstrap", pipeFile)
|
|
|
|
stdin, err := cmd.StdinPipe()
|
|
|
|
if err != nil {
|
|
|
|
return pipeFile, err
|
2018-10-05 20:08:01 +00:00
|
|
|
}
|
|
|
|
|
2019-06-21 15:06:25 +00:00
|
|
|
// Write the config
|
|
|
|
n, err := stdin.Write(bootstrapJSON)
|
|
|
|
// Close STDIN whether it was successful or not
|
|
|
|
stdin.Close()
|
|
|
|
if err != nil {
|
|
|
|
return pipeFile, err
|
2018-10-05 20:08:01 +00:00
|
|
|
}
|
2019-06-21 15:06:25 +00:00
|
|
|
if n < len(bootstrapJSON) {
|
|
|
|
return pipeFile, fmt.Errorf("failed writing boostrap to child STDIN: %s", err)
|
2018-10-05 20:08:01 +00:00
|
|
|
}
|
|
|
|
|
2019-06-21 15:06:25 +00:00
|
|
|
err = cmd.Start()
|
2018-10-05 20:08:01 +00:00
|
|
|
if err != nil {
|
2019-06-21 15:06:25 +00:00
|
|
|
return pipeFile, err
|
2018-10-05 20:08:01 +00:00
|
|
|
}
|
2019-06-21 15:06:25 +00:00
|
|
|
|
|
|
|
// We can't wait for the process since we need to exec into Envoy before it
|
|
|
|
// will be able to complete so it will be remain as a zombie until Envoy is
|
|
|
|
// killed then will be reaped by the init process (pid 0). This is all a bit
|
|
|
|
// gross but the cleanest workaround I can think of for Envoy 1.10 not
|
|
|
|
// supporting /dev/fd/<fd> config paths any more. So we are done and leaving
|
|
|
|
// the child to run it's course without reaping it.
|
|
|
|
return pipeFile, nil
|
2018-10-05 20:08:01 +00:00
|
|
|
}
|
|
|
|
|
2019-06-21 15:06:25 +00:00
|
|
|
func execEnvoy(binary string, prefixArgs, suffixArgs []string, bootstrapJSON []byte) error {
|
|
|
|
pipeFile, err := makeBootstrapPipe(bootstrapJSON)
|
2018-10-05 20:08:01 +00:00
|
|
|
if err != nil {
|
2019-06-21 15:06:25 +00:00
|
|
|
os.RemoveAll(pipeFile)
|
2018-10-05 20:08:01 +00:00
|
|
|
return err
|
|
|
|
}
|
2019-06-21 15:06:25 +00:00
|
|
|
// We don't defer a cleanup since we are about to Exec into Envoy which means
|
|
|
|
// defer will never fire. The child process cleans up for us in the happy
|
|
|
|
// path.
|
2018-10-05 20:08:01 +00:00
|
|
|
|
2019-06-21 15:06:25 +00:00
|
|
|
// We default to disabling hot restart because it makes it easier to run
|
|
|
|
// multiple envoys locally for testing without them trying to share memory and
|
|
|
|
// unix sockets and complain about being different IDs. But if user is
|
|
|
|
// actually configuring hot-restart explicitly with the --restart-epoch option
|
|
|
|
// then don't disable it!
|
|
|
|
disableHotRestart := !hasHotRestartOption(prefixArgs, suffixArgs)
|
2018-10-05 20:08:01 +00:00
|
|
|
|
2019-06-21 15:06:25 +00:00
|
|
|
// First argument needs to be the executable name.
|
|
|
|
envoyArgs := []string{binary}
|
|
|
|
envoyArgs = append(envoyArgs, prefixArgs...)
|
|
|
|
envoyArgs = append(envoyArgs, "--config-path", pipeFile)
|
|
|
|
if disableHotRestart {
|
|
|
|
envoyArgs = append(envoyArgs, "--disable-hot-restart")
|
2018-10-05 20:08:01 +00:00
|
|
|
}
|
2019-06-21 15:06:25 +00:00
|
|
|
envoyArgs = append(envoyArgs, suffixArgs...)
|
2018-10-05 20:08:01 +00:00
|
|
|
|
2019-06-21 15:06:25 +00:00
|
|
|
// Exec
|
|
|
|
if err = unix.Exec(binary, envoyArgs, os.Environ()); err != nil {
|
|
|
|
return errors.New("Failed to exec envoy: " + err.Error())
|
|
|
|
}
|
2018-10-05 20:08:01 +00:00
|
|
|
|
2019-06-21 15:06:25 +00:00
|
|
|
return nil
|
2018-10-05 20:08:01 +00:00
|
|
|
}
|