Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: systemd double start/stop #288

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
19 changes: 17 additions & 2 deletions service_systemd_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,8 @@ func (s *systemd) Run() (err error) {
}

func (s *systemd) Status() (Status, error) {
exitCode, out, err := runWithOutput("systemctl", "is-active", s.unitName())
unitFile := s.unitName()
exitCode, out, err := runWithOutput("systemctl", "is-active", unitFile)
if exitCode == 0 && err != nil {
return StatusUnknown, err
}
Expand All @@ -244,7 +245,7 @@ func (s *systemd) Status() (Status, error) {
return StatusRunning, nil
case strings.HasPrefix(out, "inactive"):
// inactive can also mean its not installed, check unit files
exitCode, out, err := runWithOutput("systemctl", "list-unit-files", "-t", "service", s.unitName())
exitCode, out, err := runWithOutput("systemctl", "list-unit-files", "-t", "service", unitFile)
if exitCode == 0 && err != nil {
return StatusUnknown, err
}
Expand All @@ -264,10 +265,24 @@ func (s *systemd) Status() (Status, error) {
}

func (s *systemd) Start() error {
status, err := s.Status()
if err != nil {
return err
}
if status == StatusRunning {
return fmt.Errorf("%s already running", s.Config.Name)
}
return s.runAction("start")
}

func (s *systemd) Stop() error {
status, err := s.Status()
if err != nil {
return err
}
if status == StatusStopped {
return fmt.Errorf("%s already stopped", s.Config.Name)
}
return s.runAction("stop")
}

Expand Down
115 changes: 60 additions & 55 deletions service_unix.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@
package service

import (
"bytes"
"errors"
"fmt"
"io"
"io/ioutil"
"log/syslog"
"os/exec"
"strings"
"syscall"
)

Expand Down Expand Up @@ -64,76 +65,80 @@ func runWithOutput(command string, arguments ...string) (int, string, error) {
return runCommand(command, true, arguments...)
}

func runCommand(command string, readStdout bool, arguments ...string) (int, string, error) {
cmd := exec.Command(command, arguments...)

var output string
var stdout io.ReadCloser
var err error

func runCommand(command string, readStdout bool, arguments ...string) (exitStatus int, stdout string, err error) {
var (
cmd = exec.Command(command, arguments...)
cmdErr = fmt.Errorf("exec `%s` failed", strings.Join(cmd.Args, " "))
stdoutPipe, stderrPipe io.ReadCloser
)
if stderrPipe, err = cmd.StderrPipe(); err != nil {
err = fmt.Errorf("%s to connect stderr pipe: %w", cmdErr, err)
return
}
if readStdout {
// Connect pipe to read Stdout
stdout, err = cmd.StdoutPipe()

if err != nil {
// Failed to connect pipe
return 0, "", fmt.Errorf("%q failed to connect stdout pipe: %v", command, err)
if stdoutPipe, err = cmd.StdoutPipe(); err != nil {
err = fmt.Errorf("%s to connect stdout pipe: %w", cmdErr, err)
return
}
}

// Connect pipe to read Stderr
stderr, err := cmd.StderrPipe()

if err != nil {
// Failed to connect pipe
return 0, "", fmt.Errorf("%q failed to connect stderr pipe: %v", command, err)
// Execute the command.
if err = cmd.Start(); err != nil {
err = fmt.Errorf("%s: %w", cmdErr, err)
return
}

// Do not use cmd.Run()
if err := cmd.Start(); err != nil {
// Problem while copying stdin, stdout, or stderr
return 0, "", fmt.Errorf("%q failed: %v", command, err)
}
// Process command outputs.
var (
pipeErr = fmt.Errorf("%s while attempting to read", cmdErr)
stdoutErr = fmt.Errorf("%s from stdout", pipeErr)
stderrErr = fmt.Errorf("%s from stderr", pipeErr)

// Zero exit status
// Darwin: launchctl can fail with a zero exit status,
// so check for emtpy stderr
if command == "launchctl" {
slurp, _ := ioutil.ReadAll(stderr)
if len(slurp) > 0 && !bytes.HasSuffix(slurp, []byte("Operation now in progress\n")) {
return 0, "", fmt.Errorf("%q failed with stderr: %s", command, slurp)
}
errBuffer, readErr = ioutil.ReadAll(stderrPipe)
stderr = strings.TrimSuffix(string(errBuffer), "\n")

haveStdErr = len(stderr) != 0
)

// Always read stderr.
if readErr != nil {
err = fmt.Errorf("%s: %w", stderrErr, readErr)
return
}

// Maybe read stdout.
if readStdout {
out, err := ioutil.ReadAll(stdout)
if err != nil {
return 0, "", fmt.Errorf("%q failed while attempting to read stdout: %v", command, err)
} else if len(out) > 0 {
output = string(out)
outBuffer, readErr := ioutil.ReadAll(stdoutPipe)
if readErr != nil {
err = fmt.Errorf("%s: %w", stdoutErr, readErr)
return
}
stdout = string(outBuffer)
}

if err := cmd.Wait(); err != nil {
exitStatus, ok := isExitError(err)
if ok {
// Command didn't exit with a zero exit status.
return exitStatus, output, err
// Wait for command to finish.
if runErr := cmd.Wait(); runErr != nil {
var execErr *exec.ExitError
if errors.As(runErr, &execErr) {
if status, ok := execErr.Sys().(syscall.WaitStatus); ok {
exitStatus = status.ExitStatus()
}
}

// An error occurred and there is no exit status.
return 0, output, fmt.Errorf("%q failed: %v", command, err)
err = fmt.Errorf("%w: %s", cmdErr, runErr)
if haveStdErr {
err = fmt.Errorf("%w with stderr: %s", err, stderr)
}
return
}

return 0, output, nil
}

func isExitError(err error) (int, bool) {
if exiterr, ok := err.(*exec.ExitError); ok {
if status, ok := exiterr.Sys().(syscall.WaitStatus); ok {
return status.ExitStatus(), true
}
// Darwin: launchctl can fail with a zero exit status,
// so stderr must be inspected.
systemIsDarwin := command == "launchctl"
if systemIsDarwin &&
haveStdErr &&
!strings.HasSuffix(stderr, "Operation now in progress") {
err = fmt.Errorf("%w with stderr: %s", cmdErr, stderr)
}

return 0, false
return
}