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
358 lines (310 loc) · 9.63 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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
package main
import (
"context"
"crypto/x509"
"flag"
"fmt"
"github.com/avast/retry-go"
"github.com/breml/rootcerts/embedded"
"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/getsentry/sentry-go"
"github.com/grpc-ecosystem/go-grpc-middleware/retry"
goversion "github.com/hashicorp/go-version"
"golang.org/x/time/rate"
"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"
"log"
"math"
"os"
"os/signal"
"path/filepath"
"runtime/debug"
"strconv"
"strings"
"syscall"
"time"
)
var (
version = "unknown"
commit = "unknown"
)
func fullVersion() string {
var versionToNormalize string
if version == "unknown" {
if info, ok := debug.ReadBuildInfo(); ok {
versionToNormalize = info.Main.Version
}
} else {
versionToNormalize = version
}
// We parse the version here for two reasons:
// * to weed out the "(devel)" version and fallback to "unknown" instead
// (see https://github.com/golang/go/issues/29228 for details on when this might happen)
// * to remove the "v" prefix from the BuildInfo's version (e.g. "v0.7.0") and thus be consistent
// with the binary builds, where the version string would be "0.7.0" instead
semver, err := goversion.NewSemver(versionToNormalize)
if err == nil {
version = semver.String()
}
return fmt.Sprintf("%s-%s", version, commit)
}
func main() {
// Provide fallback root CA certificates
mozillaRoots := x509.NewCertPool()
mozillaRoots.AppendCertsFromPEM([]byte(embedded.MozillaCACertificatesPEM()))
x509.SetFallbackRoots(mozillaRoots)
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")
versionFlag := flag.Bool("version", false, "display the version and exit")
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()
// Initialize Sentry
var release string
if version != "unknown" {
release = fmt.Sprintf("cirrus-ci-agent@%s", version)
}
err := sentry.Init(sentry.ClientOptions{
Release: release,
AttachStacktrace: true,
})
if err != nil {
log.Fatalf("failed to initialize Sentry: %v", err)
}
defer sentry.Flush(2 * time.Second)
// Enrich future events with Cirrus CI-specific tags
if tags, ok := os.LookupEnv("CIRRUS_SENTRY_TAGS"); ok {
sentry.ConfigureScope(func(scope *sentry.Scope) {
for _, tag := range strings.Split(tags, ",") {
splits := strings.SplitN(tag, "=", 2)
if len(splits) != 2 {
continue
}
scope.SetTag(splits[0], splits[1])
}
})
}
defer func() {
err := recover()
if err == nil {
return
}
// Report exception to Sentry
hub := sentry.CurrentHub()
hub.Recover(err)
// Report exception to Cirrus CI
log.Printf("Recovered an error: %v", err)
if client.CirrusClient == nil {
return
}
request := &api.ReportAgentProblemRequest{
TaskIdentification: &api.TaskIdentification{
TaskId: *taskIdPtr,
Secret: *clientTokenPtr,
},
Message: fmt.Sprint(err),
Stack: string(debug.Stack()),
}
_, _ = client.CirrusClient.ReportAgentError(context.Background(), request)
}()
if *versionFlag {
fmt.Println(fullVersion())
os.Exit(0)
}
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))
log.Printf("Running agent version %s", fullVersion())
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
signalChannel := make(chan os.Signal, 1)
signal.Notify(signalChannel)
go func() {
limiter := rate.NewLimiter(1, 1)
for {
sig := <-signalChannel
if sig == os.Interrupt || sig == syscall.SIGTERM {
cancel()
}
if signalfilter.IsNoisy(sig) || !limiter.Allow() {
continue
}
log.Printf("Captured %v...", sig)
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)
}
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 := os.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)
}
}