mirror of
https://github.com/kubeshark/kubeshark.git
synced 2025-08-11 21:32:37 +00:00
* add passive-tapper main tester (#353) * add passive-tapper main tester * add errors to go.sum of mizu agent * disable host mode for tester - to avoid filterAuthorities * rename main to tester * build extenssions as part of the tester launch * add a README to the tester * solving go.mod and .sum conflicts with addition of go-errors * trivial warning fixes (#354) * add passive-tapper main tester * trivial warning fixes * add errors to go.sum of mizu agent * disable host mode for tester - to avoid filterAuthorities * tcp streams map (#355) * add passive-tapper main tester * trivial warning fixes * add errors to go.sum of mizu agent * tcp streams map * disable host mode for tester - to avoid filterAuthorities * set tcp streams map for tcp stream factory * change rlog to mizu logger * errors map (#356) * add passive-tapper main tester * trivial warning fixes * add errors to go.sum of mizu agent * tcp streams map * disable host mode for tester - to avoid filterAuthorities * set tcp streams map for tcp stream factory * errors map * change int to uint - errorsmap * change from int to uint * Change errorsMap.nErrors to uint. * change errors map to mizu logger instead of rlog * init mizu logger in tester + fix errormap declaration Co-authored-by: Nimrod Gilboa Markevich <nimrod@up9.com> * move own ips to tcp stream factory (#358) * add passive-tapper main tester * trivial warning fixes * add errors to go.sum of mizu agent * tcp streams map * disable host mode for tester - to avoid filterAuthorities * set tcp streams map for tcp stream factory * errors map * move own ips to tcp stream factory * Feature/tapper refactor i/move own ips to tcp stream factory (#379) * add passive-tapper main tester * trivial warning fixes * add errors to go.sum of mizu agent * tcp streams map * disable host mode for tester - to avoid filterAuthorities * set tcp streams map for tcp stream factory * errors map * move own ips to tcp stream factory * fix ownips compilation issue Co-authored-by: Nimrod Gilboa Markevich <nimrod@up9.com>
97 lines
1.9 KiB
Go
97 lines
1.9 KiB
Go
package tap
|
|
|
|
import (
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/google/gopacket/reassembly"
|
|
"github.com/up9inc/mizu/shared/logger"
|
|
"github.com/up9inc/mizu/tap/api"
|
|
)
|
|
|
|
type CleanerStats struct {
|
|
flushed int
|
|
closed int
|
|
deleted int
|
|
}
|
|
|
|
type Cleaner struct {
|
|
assembler *reassembly.Assembler
|
|
assemblerMutex *sync.Mutex
|
|
cleanPeriod time.Duration
|
|
connectionTimeout time.Duration
|
|
stats CleanerStats
|
|
statsMutex sync.Mutex
|
|
}
|
|
|
|
func (cl *Cleaner) clean() {
|
|
startCleanTime := time.Now()
|
|
|
|
cl.assemblerMutex.Lock()
|
|
logger.Log.Debugf("Assembler Stats before cleaning %s", cl.assembler.Dump())
|
|
flushed, closed := cl.assembler.FlushCloseOlderThan(startCleanTime.Add(-cl.connectionTimeout))
|
|
cl.assemblerMutex.Unlock()
|
|
|
|
for _, extension := range extensions {
|
|
deleted := deleteOlderThan(extension.MatcherMap, startCleanTime.Add(-cl.connectionTimeout))
|
|
cl.stats.deleted += deleted
|
|
}
|
|
|
|
cl.statsMutex.Lock()
|
|
logger.Log.Debugf("Assembler Stats after cleaning %s", cl.assembler.Dump())
|
|
cl.stats.flushed += flushed
|
|
cl.stats.closed += closed
|
|
cl.statsMutex.Unlock()
|
|
}
|
|
|
|
func (cl *Cleaner) start() {
|
|
go func() {
|
|
ticker := time.NewTicker(cl.cleanPeriod)
|
|
|
|
for {
|
|
<-ticker.C
|
|
cl.clean()
|
|
}
|
|
}()
|
|
}
|
|
|
|
func (cl *Cleaner) dumpStats() CleanerStats {
|
|
cl.statsMutex.Lock()
|
|
|
|
stats := CleanerStats{
|
|
flushed: cl.stats.flushed,
|
|
closed: cl.stats.closed,
|
|
deleted: cl.stats.deleted,
|
|
}
|
|
|
|
cl.stats.flushed = 0
|
|
cl.stats.closed = 0
|
|
cl.stats.deleted = 0
|
|
|
|
cl.statsMutex.Unlock()
|
|
|
|
return stats
|
|
}
|
|
|
|
func deleteOlderThan(matcherMap *sync.Map, t time.Time) int {
|
|
numDeleted := 0
|
|
|
|
if matcherMap == nil {
|
|
return numDeleted
|
|
}
|
|
|
|
matcherMap.Range(func(key interface{}, value interface{}) bool {
|
|
message, _ := value.(*api.GenericMessage)
|
|
// TODO: Investigate the reason why `request` is `nil` in some rare occasion
|
|
if message != nil {
|
|
if message.CaptureTime.Before(t) {
|
|
matcherMap.Delete(key)
|
|
numDeleted++
|
|
}
|
|
}
|
|
return true
|
|
})
|
|
|
|
return numDeleted
|
|
}
|