Skip to content

Commit 078bb6c

Browse files
committed
Don't error in prometheus-listening on termination
To tell downstream routines that we're terminating, cancel the Run context; that eliminates an argument in the Run method, centralizes signal handling in main.go, and generally looks nicer.
1 parent 79e4b63 commit 078bb6c

File tree

3 files changed

+20
-12
lines changed

3 files changed

+20
-12
lines changed

cmd/hoopsnake/main.go

+9-2
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,18 @@ func main() {
1616
log.Fatalf("Invalid command line: %v", err)
1717
}
1818

19+
ctx := context.Background()
20+
ctx, terminate := context.WithCancel(ctx)
21+
1922
c := make(chan os.Signal, 1)
2023
signal.Notify(c, syscall.SIGINT, syscall.SIGTERM)
24+
go func() {
25+
signal := <-c
26+
log.Printf("Received signal %v, terminating...", signal)
27+
terminate()
28+
}()
2129

22-
ctx := context.Background()
23-
err = cli.Run(ctx, c)
30+
err = cli.Run(ctx)
2431
if err != nil {
2532
log.Fatal(err)
2633
}

prometheus.go

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package hoopsnake
22

33
import (
4+
"context"
45
"fmt"
56
"log"
67
"net/http"
@@ -13,7 +14,7 @@ import (
1314
"tailscale.com/tsnet"
1415
)
1516

16-
func (s *TailnetSSH) setupPrometheus(srv *tsnet.Server) error {
17+
func (s *TailnetSSH) setupPrometheus(ctx context.Context, srv *tsnet.Server) error {
1718
if s.prometheusAddr == "" {
1819
return nil
1920
}
@@ -28,8 +29,11 @@ func (s *TailnetSSH) setupPrometheus(srv *tsnet.Server) error {
2829
Handler: mux,
2930
ReadHeaderTimeout: 1 * time.Second,
3031
}
31-
log.Printf("Failed to listen on prometheus address: %v", server.Serve(listener))
32-
os.Exit(20)
32+
if ctx.Err() == nil {
33+
// Failed to listen but not asked to shut down:
34+
log.Printf("Failed to listen on prometheus address: %v", server.Serve(listener))
35+
os.Exit(20)
36+
}
3337
}()
3438

3539
v4, v6 := srv.TailscaleIPs()

ssh.go

+4-7
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ func (s *TailnetSSH) setupHostKey() error {
7575
//
7676
// If Run returns an error, that means it can no longer listen - these
7777
// errors are fatal.
78-
func (s *TailnetSSH) Run(ctx context.Context, quit <-chan os.Signal) error {
78+
func (s *TailnetSSH) Run(ctx context.Context) error {
7979
var err error
8080
s.Server.Handler = s.handle
8181

@@ -95,21 +95,18 @@ func (s *TailnetSSH) Run(ctx context.Context, quit <-chan os.Signal) error {
9595
return fmt.Errorf("could not listen on tailnet: %w", err)
9696
}
9797

98-
terminated := false
9998
go func() {
100-
signal := <-quit
101-
terminated = true
102-
log.Printf("Received signal %v, terminating...", signal)
99+
<-ctx.Done()
103100
srv.Close()
104101
}()
105102

106-
err = s.setupPrometheus(srv)
103+
err = s.setupPrometheus(ctx, srv)
107104
if err != nil {
108105
log.Printf("Setting up prometheus failed, but continuing anyway: %v", err)
109106
}
110107
log.Printf("starting ssh server on port :22...")
111108
err = s.Server.Serve(listener)
112-
if err != nil && !terminated {
109+
if err != nil && ctx.Err() == nil {
113110
return fmt.Errorf("ssh server failed serving: %w", err)
114111
}
115112
return nil

0 commit comments

Comments
 (0)