-
Notifications
You must be signed in to change notification settings - Fork 11
/
monitor.go
222 lines (190 loc) · 5.03 KB
/
monitor.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
package embedshim
import (
"fmt"
"os"
"path/filepath"
"strconv"
"sync"
"syscall"
"github.com/fuweid/embedshim/pkg/exitsnoop"
"github.com/fuweid/embedshim/pkg/pidfd"
"github.com/cilium/ebpf"
"github.com/pkg/errors"
"golang.org/x/sys/unix"
)
var (
// unexpectedExitCode is used when failed to get correct exit code.
unexpectedExitCode = 128
)
type monitor struct {
sync.Mutex
pidPoller *pidfd.Epoller
initStore *exitsnoop.Store
execStore *exitsnoop.Store
}
func newMonitor(stateDir string) (_ *monitor, retErr error) {
epoller, err := pidfd.NewEpoller()
if err != nil {
return nil, err
}
defer func() {
if retErr != nil {
epoller.Close()
}
}()
initStore, err := exitsnoop.NewStore(stateDir)
if err != nil {
return nil, err
}
defer func() {
if retErr != nil {
initStore.Close()
}
}()
execStore, err := exitsnoop.NewStoreFromAttach()
if err != nil {
return nil, err
}
m := &monitor{
pidPoller: epoller,
initStore: initStore,
execStore: execStore,
}
// TODO: check the return
go m.pidPoller.Run()
return m, nil
}
// traceInitProcess checks init process is alive and starts to trace it's exit
// event by exitsnoop bpf tracepoint.
func (m *monitor) traceInitProcess(init *initProcess) (retErr error) {
m.Lock()
defer m.Unlock()
fd, err := pidfd.Open(uint32(init.Pid()), 0)
if err != nil {
return fmt.Errorf("failed to open pidfd for %s: %w", init, err)
}
defer func() {
if retErr != nil {
unix.Close(int(fd))
}
}()
// NOTE: The pid might be reused before pidfd.Open(like oom-killer or
// manually kill), so that we need to check the runc-init's exec.fifo
// file descriptor which is the "identity" of runc-init. :)
//
// Why we don't use runc-state commandline?
//
// The runc-state command only checks /proc/$pid/status's starttime,
// which is not reliable. And then it only checks exec.fifo exist in
// disk, but the runc-init has been killed. So we can't just use it.
if err := checkRuncInitAlive(init); err != nil {
return err
}
nsInfo, err := getPidnsInfo(uint32(init.Pid()))
if err != nil {
return fmt.Errorf("failed to get pidns info: %w", err)
}
if err := m.initStore.Trace(uint32(init.Pid()), &exitsnoop.TaskInfo{
TraceID: init.traceEventID,
PidnsInfo: nsInfo,
}); err != nil {
return fmt.Errorf("failed to insert taskinfo for %s: %w", init, err)
}
defer func() {
if retErr != nil {
m.initStore.DeleteTracingTask(uint32(init.Pid()))
m.initStore.DeleteExitedEvent(init.traceEventID)
}
}()
// Before trace it, the init-process might be killed and the exitsnoop
// tracepoint will not work, we need to check it alive again by pidfd.
if err := fd.SendSignal(0, 0); err != nil {
return err
}
if err := m.pidPoller.Add(fd, func() error {
// TODO(fuweid): do we need to check the pid value in event?
status, err := m.initStore.GetExitedEvent(init.traceEventID)
if err != nil {
init.SetExited(unexpectedExitCode)
return fmt.Errorf("failed to get exited status: %w", err)
}
init.SetExited(int(status.ExitCode))
return nil
}); err != nil {
return err
}
return nil
}
// repollingInitProcess is used to watch pidfd event after containerd restarts.
func (m *monitor) repollingInitProcess(init *initProcess) (retErr error) {
var (
eventID = init.traceEventID
exitedStatus *exitsnoop.ExitStatus
taskInfo *exitsnoop.TaskInfo
fd pidfd.FD
closeFD bool
err error
)
// fast path: check exit event from exitsnoop
exitedStatus, err = m.initStore.GetExitedEvent(eventID)
if err == nil {
init.SetExited(int(exitedStatus.ExitCode))
return nil
}
if !errors.Is(err, ebpf.ErrKeyNotExist) {
return err
}
fd, err = pidfd.Open(uint32(init.Pid()), 0)
if err != nil {
if !errors.Is(err, syscall.ESRCH) {
return err
}
goto set_exitedstatus
}
closeFD = true
defer func() {
if retErr != nil && closeFD {
unix.Close(int(fd))
}
}()
taskInfo, err = m.initStore.GetTracingTask(uint32(init.Pid()))
if err != nil {
if !errors.Is(err, ebpf.ErrKeyNotExist) {
return err
}
goto set_exitedstatus
}
// Just in case, the pid has been reused by other init process
if taskInfo != nil && taskInfo.TraceID == eventID {
return m.pidPoller.Add(fd, func() error {
// TODO(fuweid): do we need to check the pid value in event?
exitedStatus, err = m.initStore.GetExitedEvent(init.traceEventID)
if err != nil {
init.SetExited(unexpectedExitCode)
return fmt.Errorf("failed to get exited status: %w", err)
}
init.SetExited(int(exitedStatus.ExitCode))
return nil
})
}
unix.Close(int(fd))
closeFD = false
set_exitedstatus:
exitedStatus, err = m.initStore.GetExitedEvent(eventID)
if err != nil {
init.SetExited(unexpectedExitCode)
return err
}
init.SetExited(int(exitedStatus.ExitCode))
return nil
}
func getPidnsInfo(pid uint32) (exitsnoop.PidnsInfo, error) {
f, err := os.Stat(filepath.Join("/proc", strconv.Itoa(int(pid)), "ns", "pid"))
if err != nil {
return exitsnoop.PidnsInfo{}, err
}
return exitsnoop.PidnsInfo{
Dev: (f.Sys().(*syscall.Stat_t)).Dev,
Ino: (f.Sys().(*syscall.Stat_t)).Ino,
}, nil
}