This repository has been archived by the owner on May 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
main.go
269 lines (239 loc) · 7.56 KB
/
main.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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
package main
import (
"context"
"flag"
"fmt"
"github.com/avast/retry-go"
"github.com/cirruslabs/cirrus-ci-agent/api"
"github.com/cirruslabs/cirrus-ci-agent/internal/client"
"github.com/cirruslabs/cirrus-ci-agent/internal/executor"
"github.com/cirruslabs/cirrus-ci-agent/internal/network"
"github.com/cirruslabs/cirrus-ci-agent/internal/signalfilter"
"github.com/cirruslabs/cirrus-ci-agent/pkg/grpchelper"
"github.com/grpc-ecosystem/go-grpc-middleware/retry"
"google.golang.org/grpc"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/connectivity"
"google.golang.org/grpc/grpclog"
"google.golang.org/grpc/keepalive"
"io"
"io/ioutil"
"log"
"math"
"os"
"os/signal"
"path/filepath"
"runtime/debug"
"strconv"
"strings"
"syscall"
"time"
)
func main() {
apiEndpointPtr := flag.String("api-endpoint", "https://grpc.cirrus-ci.com:443", "GRPC endpoint URL")
taskIdPtr := flag.Int64("task-id", 0, "Task ID")
clientTokenPtr := flag.String("client-token", "", "Secret token")
serverTokenPtr := flag.String("server-token", "", "Secret token")
help := flag.Bool("help", false, "help flag")
stopHook := flag.Bool("stop-hook", false, "pre stop flag")
commandFromPtr := flag.String("command-from", "", "Command to star execution from (inclusive)")
commandToPtr := flag.String("command-to", "", "Command to stop execution at (exclusive)")
preCreatedWorkingDir := flag.String("pre-created-working-dir", "",
"working directory to use when spawned via Persistent Worker")
flag.Parse()
if *help {
flag.PrintDefaults()
os.Exit(0)
}
var conn *grpc.ClientConn
logFilePath := filepath.Join(os.TempDir(), fmt.Sprintf("cirrus-agent-%d.log", *taskIdPtr))
if *stopHook {
// In case of a failure the log file will be persisted on the machine for debugging purposes.
// But unfortunately stop hook invocation will override it so let's use a different name.
logFilePath = filepath.Join(os.TempDir(), fmt.Sprintf("cirrus-agent-%d-hook.log", *taskIdPtr))
}
logFile, err := os.OpenFile(logFilePath, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, 0660)
if err != nil {
log.Printf("Failed to create log file: %v", err)
} else {
defer func() {
_ = logFile.Close()
uploadAgentLogs(context.Background(), logFilePath, *taskIdPtr, *clientTokenPtr)
if conn != nil {
conn.Close()
}
}()
}
multiWriter := io.MultiWriter(logFile, os.Stdout)
log.SetOutput(multiWriter)
grpclog.SetLoggerV2(grpclog.NewLoggerV2(multiWriter, multiWriter, multiWriter))
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
signalChannel := make(chan os.Signal, 1)
signal.Notify(signalChannel)
go func() {
for {
sig := <-signalChannel
if signalfilter.IsNoisy(sig) {
// Too much noise both for the text logs and the RPC with little debugging value
continue
}
log.Printf("Captured %v...", sig)
if sig == os.Interrupt || sig == syscall.SIGTERM {
cancel()
}
reportSignal(context.Background(), sig, *taskIdPtr, *clientTokenPtr)
}
}()
err = retry.Do(
func() error {
conn, err = dialWithTimeout(ctx, *apiEndpointPtr)
return err
}, retry.OnRetry(func(n uint, err error) {
log.Printf("Failed to open a connection: %v\n", err)
}),
retry.Delay(1*time.Second), retry.MaxDelay(1*time.Second),
retry.Attempts(math.MaxUint32), retry.LastErrorOnly(true),
retry.Context(ctx),
)
if err != nil {
// Context was cancelled before we had a chance to connect
return
}
log.Printf("Connected!\n")
client.InitClient(conn)
if *stopHook {
log.Printf("Stop hook!\n")
taskIdentification := api.TaskIdentification{
TaskId: *taskIdPtr,
Secret: *clientTokenPtr,
}
request := api.ReportStopHookRequest{
TaskIdentification: &taskIdentification,
}
_, err = client.CirrusClient.ReportStopHook(ctx, &request)
if err != nil {
log.Printf("Failed to report stop hook for task %d: %v\n", *taskIdPtr, err)
} else {
logFile.Close()
os.Remove(logFilePath)
}
os.Exit(0)
}
defer func() {
if err := recover(); err != nil {
log.Printf("Recovered an error: %v", err)
taskIdentification := api.TaskIdentification{
TaskId: *taskIdPtr,
Secret: *clientTokenPtr,
}
request := api.ReportAgentProblemRequest{
TaskIdentification: &taskIdentification,
Message: fmt.Sprint(err),
Stack: string(debug.Stack()),
}
_, _ = client.CirrusClient.ReportAgentError(context.Background(), &request)
}
}()
if portsToWait, ok := os.LookupEnv("CIRRUS_PORTS_WAIT_FOR"); ok {
ports := strings.Split(portsToWait, ",")
for _, port := range ports {
portNumber, err := strconv.Atoi(port)
if err != nil {
continue
}
log.Printf("Waiting on port %v...\n", port)
subCtx, cancel := context.WithTimeout(ctx, 60*time.Second)
network.WaitForLocalPort(subCtx, portNumber)
cancel()
}
}
go runHeartbeat(*taskIdPtr, *clientTokenPtr, conn)
buildExecutor := executor.NewExecutor(*taskIdPtr, *clientTokenPtr, *serverTokenPtr, *commandFromPtr, *commandToPtr,
*preCreatedWorkingDir)
buildExecutor.RunBuild(ctx)
}
func uploadAgentLogs(ctx context.Context, logFilePath string, taskId int64, clientToken string) {
if client.CirrusClient == nil {
return
}
logContents, readErr := ioutil.ReadFile(logFilePath)
if readErr != nil {
return
}
taskIdentification := api.TaskIdentification{
TaskId: taskId,
Secret: clientToken,
}
request := api.ReportAgentLogsRequest{
TaskIdentification: &taskIdentification,
Logs: string(logContents),
}
_, err := client.CirrusClient.ReportAgentLogs(ctx, &request)
if err == nil {
os.Remove(logFilePath)
}
}
func reportSignal(ctx context.Context, sig os.Signal, taskId int64, clientToken string) {
if client.CirrusClient == nil {
return
}
taskIdentification := api.TaskIdentification{
TaskId: taskId,
Secret: clientToken,
}
request := api.ReportAgentSignalRequest{
TaskIdentification: &taskIdentification,
Signal: sig.String(),
}
_, _ = client.CirrusClient.ReportAgentSignal(ctx, &request)
}
func dialWithTimeout(ctx context.Context, apiEndpoint string) (*grpc.ClientConn, error) {
ctx, cancel := context.WithTimeout(ctx, 1*time.Minute)
defer cancel()
target, transportSecurity := grpchelper.TransportSettingsAsDialOption(apiEndpoint)
retryCodes := []codes.Code{
codes.Unavailable, codes.Internal, codes.Unknown, codes.ResourceExhausted, codes.DeadlineExceeded,
}
return grpc.DialContext(
ctx,
target,
grpc.WithBlock(),
transportSecurity,
grpc.WithKeepaliveParams(
keepalive.ClientParameters{
Time: 30 * time.Second, // make connection is alive every 30 seconds
Timeout: 60 * time.Second, // with a timeout of 60 seconds
PermitWithoutStream: true, // always send Pings even if there are no RPCs
},
),
grpc.WithUnaryInterceptor(
grpc_retry.UnaryClientInterceptor(
grpc_retry.WithMax(3),
grpc_retry.WithCodes(retryCodes...),
grpc_retry.WithPerRetryTimeout(60*time.Second),
),
),
)
}
func runHeartbeat(taskId int64, clientToken string, conn *grpc.ClientConn) {
taskIdentification := api.TaskIdentification{
TaskId: taskId,
Secret: clientToken,
}
for {
log.Println("Sending heartbeat...")
_, err := client.CirrusClient.Heartbeat(context.Background(), &api.HeartbeatRequest{TaskIdentification: &taskIdentification})
if err != nil {
log.Printf("Failed to send heartbeat: %v", err)
connectionState := conn.GetState()
log.Printf("Connection state: %v", connectionState.String())
if connectionState == connectivity.TransientFailure {
conn.ResetConnectBackoff()
}
} else {
log.Printf("Sent heartbeat!")
}
time.Sleep(60 * time.Second)
}
}