forked from ghostunnel/ghostunnel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
status_linux.go
88 lines (77 loc) · 2.36 KB
/
status_linux.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
//go:build linux
/*-
* Copyright 2024, Ghostunnel
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package main
import (
"fmt"
"syscall"
"time"
"unsafe"
"github.com/coreos/go-systemd/v22/daemon"
)
const (
clock_monotonic_clkid = 1
)
// getMonotonicUsec gets time via CLOCK_MONOTONIC for reload messages
func getMonotonicUsec() int64 {
var ts syscall.Timespec
syscall.Syscall(syscall.SYS_CLOCK_GETTIME, clock_monotonic_clkid, uintptr(unsafe.Pointer(&ts)), 0)
sec, nsec := ts.Unix()
// 1s is 1e6µs, 1ns is 1/1000µs
return (sec * 1e6) + (nsec / 1000)
}
// systemdNotifyStatus sends a message to systemd to inform that we're ready.
func systemdNotifyStatus(status string) {
msg := fmt.Sprintf("STATUS=%s", status)
_, _ = daemon.SdNotify(false, msg)
}
// systemdNotifyReady sends a message to systemd to inform that we're ready.
func systemdNotifyReady() {
_, _ = daemon.SdNotify(false, daemon.SdNotifyReady)
}
// systemdNotifyReloading sends a message to systemd to inform that we're reloading.
func systemdNotifyReloading() {
msg := fmt.Sprintf("%s\nMONOTONIC_USEC=%d", daemon.SdNotifyReloading, getMonotonicUsec())
_, _ = daemon.SdNotify(false, msg)
}
// systemdNotifyStopping sends a message to systemd to inform that we're stopping.
func systemdNotifyStopping() {
_, _ = daemon.SdNotify(false, daemon.SdNotifyStopping)
}
// systemdHandleWatchdog sends watchdog messages to systemd to keep us alive, if enabled.
func systemdHandleWatchdog(isHealthy func() bool, shutdown chan bool) error {
dur, err := daemon.SdWatchdogEnabled(false)
if err != nil {
return err
}
if dur == 0 {
// Watchdog not enabled, ignore
return nil
}
ticker := time.NewTicker(dur / 2)
defer ticker.Stop()
for {
select {
case <-ticker.C:
if isHealthy() {
_, _ = daemon.SdNotify(false, daemon.SdNotifyWatchdog)
}
case <-shutdown:
return nil
}
}
panic("unreachable")
}