@@ -287,8 +287,9 @@ func (d *DockerSource) SupportedModes() []string {
287
287
288
288
// OneShotAcquisition reads a set of file and returns when done
289
289
func (d * DockerSource ) OneShotAcquisition (out chan types.Event , t * tomb.Tomb ) error {
290
+ ctx := context .TODO ()
290
291
d .logger .Debug ("In oneshot" )
291
- runningContainer , err := d .Client .ContainerList (context . Background () , dockerTypes.ContainerListOptions {})
292
+ runningContainer , err := d .Client .ContainerList (ctx , dockerTypes.ContainerListOptions {})
292
293
if err != nil {
293
294
return err
294
295
}
@@ -298,10 +299,10 @@ func (d *DockerSource) OneShotAcquisition(out chan types.Event, t *tomb.Tomb) er
298
299
d .logger .Debugf ("container with id %s is already being read from" , container .ID )
299
300
continue
300
301
}
301
- if containerConfig := d .EvalContainer (container ); containerConfig != nil {
302
+ if containerConfig := d .EvalContainer (ctx , container ); containerConfig != nil {
302
303
d .logger .Infof ("reading logs from container %s" , containerConfig .Name )
303
304
d .logger .Debugf ("logs options: %+v" , * d .containerLogsOptions )
304
- dockerReader , err := d .Client .ContainerLogs (context . Background () , containerConfig .ID , * d .containerLogsOptions )
305
+ dockerReader , err := d .Client .ContainerLogs (ctx , containerConfig .ID , * d .containerLogsOptions )
305
306
if err != nil {
306
307
d .logger .Errorf ("unable to read logs from container: %+v" , err )
307
308
return err
@@ -372,26 +373,26 @@ func (d *DockerSource) CanRun() error {
372
373
return nil
373
374
}
374
375
375
- func (d * DockerSource ) getContainerTTY (containerId string ) bool {
376
- containerDetails , err := d .Client .ContainerInspect (context . Background () , containerId )
376
+ func (d * DockerSource ) getContainerTTY (ctx context. Context , containerId string ) bool {
377
+ containerDetails , err := d .Client .ContainerInspect (ctx , containerId )
377
378
if err != nil {
378
379
return false
379
380
}
380
381
return containerDetails .Config .Tty
381
382
}
382
383
383
- func (d * DockerSource ) getContainerLabels (containerId string ) map [string ]interface {} {
384
- containerDetails , err := d .Client .ContainerInspect (context . Background () , containerId )
384
+ func (d * DockerSource ) getContainerLabels (ctx context. Context , containerId string ) map [string ]interface {} {
385
+ containerDetails , err := d .Client .ContainerInspect (ctx , containerId )
385
386
if err != nil {
386
387
return map [string ]interface {}{}
387
388
}
388
389
return parseLabels (containerDetails .Config .Labels )
389
390
}
390
391
391
- func (d * DockerSource ) EvalContainer (container dockerTypes.Container ) * ContainerConfig {
392
+ func (d * DockerSource ) EvalContainer (ctx context. Context , container dockerTypes.Container ) * ContainerConfig {
392
393
for _ , containerID := range d .Config .ContainerID {
393
394
if containerID == container .ID {
394
- return & ContainerConfig {ID : container .ID , Name : container .Names [0 ], Labels : d .Config .Labels , Tty : d .getContainerTTY (container .ID )}
395
+ return & ContainerConfig {ID : container .ID , Name : container .Names [0 ], Labels : d .Config .Labels , Tty : d .getContainerTTY (ctx , container .ID )}
395
396
}
396
397
}
397
398
@@ -401,27 +402,27 @@ func (d *DockerSource) EvalContainer(container dockerTypes.Container) *Container
401
402
name = name [1 :]
402
403
}
403
404
if name == containerName {
404
- return & ContainerConfig {ID : container .ID , Name : name , Labels : d .Config .Labels , Tty : d .getContainerTTY (container .ID )}
405
+ return & ContainerConfig {ID : container .ID , Name : name , Labels : d .Config .Labels , Tty : d .getContainerTTY (ctx , container .ID )}
405
406
}
406
407
}
407
408
}
408
409
409
410
for _ , cont := range d .compiledContainerID {
410
411
if matched := cont .MatchString (container .ID ); matched {
411
- return & ContainerConfig {ID : container .ID , Name : container .Names [0 ], Labels : d .Config .Labels , Tty : d .getContainerTTY (container .ID )}
412
+ return & ContainerConfig {ID : container .ID , Name : container .Names [0 ], Labels : d .Config .Labels , Tty : d .getContainerTTY (ctx , container .ID )}
412
413
}
413
414
}
414
415
415
416
for _ , cont := range d .compiledContainerName {
416
417
for _ , name := range container .Names {
417
418
if matched := cont .MatchString (name ); matched {
418
- return & ContainerConfig {ID : container .ID , Name : name , Labels : d .Config .Labels , Tty : d .getContainerTTY (container .ID )}
419
+ return & ContainerConfig {ID : container .ID , Name : name , Labels : d .Config .Labels , Tty : d .getContainerTTY (ctx , container .ID )}
419
420
}
420
421
}
421
422
}
422
423
423
424
if d .Config .UseContainerLabels {
424
- parsedLabels := d .getContainerLabels (container .ID )
425
+ parsedLabels := d .getContainerLabels (ctx , container .ID )
425
426
if len (parsedLabels ) == 0 {
426
427
d .logger .Tracef ("container has no 'crowdsec' labels set, ignoring container: %s" , container .ID )
427
428
return nil
@@ -458,13 +459,13 @@ func (d *DockerSource) EvalContainer(container dockerTypes.Container) *Container
458
459
}
459
460
d .logger .Errorf ("label %s is not a string" , k )
460
461
}
461
- return & ContainerConfig {ID : container .ID , Name : container .Names [0 ], Labels : labels , Tty : d .getContainerTTY (container .ID )}
462
+ return & ContainerConfig {ID : container .ID , Name : container .Names [0 ], Labels : labels , Tty : d .getContainerTTY (ctx , container .ID )}
462
463
}
463
464
464
465
return nil
465
466
}
466
467
467
- func (d * DockerSource ) WatchContainer (monitChan chan * ContainerConfig , deleteChan chan * ContainerConfig ) error {
468
+ func (d * DockerSource ) WatchContainer (ctx context. Context , monitChan chan * ContainerConfig , deleteChan chan * ContainerConfig ) error {
468
469
ticker := time .NewTicker (d .CheckIntervalDuration )
469
470
d .logger .Infof ("Container watcher started, interval: %s" , d .CheckIntervalDuration .String ())
470
471
for {
@@ -475,7 +476,7 @@ func (d *DockerSource) WatchContainer(monitChan chan *ContainerConfig, deleteCha
475
476
case <- ticker .C :
476
477
// to track for garbage collection
477
478
runningContainersID := make (map [string ]bool )
478
- runningContainer , err := d .Client .ContainerList (context . Background () , dockerTypes.ContainerListOptions {})
479
+ runningContainer , err := d .Client .ContainerList (ctx , dockerTypes.ContainerListOptions {})
479
480
if err != nil {
480
481
if strings .Contains (strings .ToLower (err .Error ()), "cannot connect to the docker daemon at" ) {
481
482
for idx , container := range d .runningContainerState {
@@ -501,7 +502,7 @@ func (d *DockerSource) WatchContainer(monitChan chan *ContainerConfig, deleteCha
501
502
if _ , ok := d .runningContainerState [container .ID ]; ok {
502
503
continue
503
504
}
504
- if containerConfig := d .EvalContainer (container ); containerConfig != nil {
505
+ if containerConfig := d .EvalContainer (ctx , container ); containerConfig != nil {
505
506
monitChan <- containerConfig
506
507
}
507
508
}
@@ -524,10 +525,10 @@ func (d *DockerSource) StreamingAcquisition(ctx context.Context, out chan types.
524
525
deleteChan := make (chan * ContainerConfig )
525
526
d .logger .Infof ("Starting docker acquisition" )
526
527
t .Go (func () error {
527
- return d .DockerManager (monitChan , deleteChan , out )
528
+ return d .DockerManager (ctx , monitChan , deleteChan , out )
528
529
})
529
530
530
- return d .WatchContainer (monitChan , deleteChan )
531
+ return d .WatchContainer (ctx , monitChan , deleteChan )
531
532
}
532
533
533
534
func (d * DockerSource ) Dump () interface {} {
@@ -541,9 +542,9 @@ func ReadTailScanner(scanner *bufio.Scanner, out chan string, t *tomb.Tomb) erro
541
542
return scanner .Err ()
542
543
}
543
544
544
- func (d * DockerSource ) TailDocker (container * ContainerConfig , outChan chan types.Event , deleteChan chan * ContainerConfig ) error {
545
+ func (d * DockerSource ) TailDocker (ctx context. Context , container * ContainerConfig , outChan chan types.Event , deleteChan chan * ContainerConfig ) error {
545
546
container .logger .Infof ("start tail for container %s" , container .Name )
546
- dockerReader , err := d .Client .ContainerLogs (context . Background () , container .ID , * d .containerLogsOptions )
547
+ dockerReader , err := d .Client .ContainerLogs (ctx , container .ID , * d .containerLogsOptions )
547
548
if err != nil {
548
549
container .logger .Errorf ("unable to read logs from container: %+v" , err )
549
550
return err
@@ -601,7 +602,7 @@ func (d *DockerSource) TailDocker(container *ContainerConfig, outChan chan types
601
602
}
602
603
}
603
604
604
- func (d * DockerSource ) DockerManager (in chan * ContainerConfig , deleteChan chan * ContainerConfig , outChan chan types.Event ) error {
605
+ func (d * DockerSource ) DockerManager (ctx context. Context , in chan * ContainerConfig , deleteChan chan * ContainerConfig , outChan chan types.Event ) error {
605
606
d .logger .Info ("DockerSource Manager started" )
606
607
for {
607
608
select {
@@ -610,7 +611,7 @@ func (d *DockerSource) DockerManager(in chan *ContainerConfig, deleteChan chan *
610
611
newContainer .t = & tomb.Tomb {}
611
612
newContainer .logger = d .logger .WithField ("container_name" , newContainer .Name )
612
613
newContainer .t .Go (func () error {
613
- return d .TailDocker (newContainer , outChan , deleteChan )
614
+ return d .TailDocker (ctx , newContainer , outChan , deleteChan )
614
615
})
615
616
d .runningContainerState [newContainer .ID ] = newContainer
616
617
}
0 commit comments