mirror of
https://github.com/safing/portmaster
synced 2025-09-01 10:09:11 +00:00
100 lines
2.3 KiB
Go
100 lines
2.3 KiB
Go
package network
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/safing/portbase/log"
|
|
"github.com/safing/portmaster/network/packet"
|
|
"github.com/safing/portmaster/network/state"
|
|
"github.com/safing/portmaster/process"
|
|
)
|
|
|
|
const (
|
|
// DeleteConnsAfterEndedThreshold defines the amount of time after which
|
|
// ended connections should be removed from the internal connection state.
|
|
DeleteConnsAfterEndedThreshold = 10 * time.Minute
|
|
|
|
cleanerTickDuration = 5 * time.Second
|
|
)
|
|
|
|
func connectionCleaner(ctx context.Context) error {
|
|
ticker := time.NewTicker(cleanerTickDuration)
|
|
|
|
for {
|
|
select {
|
|
case <-ctx.Done():
|
|
ticker.Stop()
|
|
return nil
|
|
case <-ticker.C:
|
|
// clean connections and processes
|
|
activePIDs := cleanConnections()
|
|
process.CleanProcessStorage(activePIDs)
|
|
|
|
// clean udp connection states
|
|
state.CleanUDPStates(ctx)
|
|
}
|
|
}
|
|
}
|
|
|
|
func cleanConnections() (activePIDs map[int]struct{}) {
|
|
activePIDs = make(map[int]struct{})
|
|
|
|
name := "clean connections" // TODO: change to new fn
|
|
_ = module.RunMediumPriorityMicroTask(&name, func(ctx context.Context) error {
|
|
now := time.Now().UTC()
|
|
nowUnix := now.Unix()
|
|
deleteOlderThan := now.Add(-DeleteConnsAfterEndedThreshold).Unix()
|
|
|
|
// network connections
|
|
for _, conn := range conns.clone() {
|
|
conn.Lock()
|
|
|
|
// delete inactive connections
|
|
switch {
|
|
case conn.Ended == 0:
|
|
// Step 1: check if still active
|
|
exists := state.Exists(&packet.Info{
|
|
Inbound: false, // src == local
|
|
Version: conn.IPVersion,
|
|
Protocol: conn.IPProtocol,
|
|
Src: conn.LocalIP,
|
|
SrcPort: conn.LocalPort,
|
|
Dst: conn.Entity.IP,
|
|
DstPort: conn.Entity.Port,
|
|
}, now)
|
|
|
|
activePIDs[conn.process.Pid] = struct{}{}
|
|
|
|
if !exists {
|
|
// Step 2: mark end
|
|
conn.Ended = nowUnix
|
|
conn.Save()
|
|
}
|
|
case conn.Ended < deleteOlderThan:
|
|
// Step 3: delete
|
|
log.Tracef("network.clean: deleted %s (ended at %s)", conn.DatabaseKey(), time.Unix(conn.Ended, 0))
|
|
conn.delete()
|
|
}
|
|
|
|
conn.Unlock()
|
|
}
|
|
|
|
// dns requests
|
|
for _, conn := range dnsConns.clone() {
|
|
conn.Lock()
|
|
|
|
// delete old dns connections
|
|
if conn.Ended < deleteOlderThan {
|
|
log.Tracef("network.clean: deleted %s (ended at %s)", conn.DatabaseKey(), time.Unix(conn.Ended, 0))
|
|
conn.delete()
|
|
}
|
|
|
|
conn.Unlock()
|
|
}
|
|
|
|
return nil
|
|
})
|
|
|
|
return activePIDs
|
|
}
|