mirror of
https://github.com/maride/pancap.git
synced 2024-11-24 01:34:26 +00:00
72 lines
1.7 KiB
Go
72 lines
1.7 KiB
Go
package analyze
|
|
|
|
import (
|
|
"fmt"
|
|
"git.darknebu.la/maride/pancap/output"
|
|
"git.darknebu.la/maride/pancap/protocol"
|
|
"github.com/google/gopacket"
|
|
"log"
|
|
)
|
|
|
|
var (
|
|
// Store total amount and amount of visited packets
|
|
totalPackets int
|
|
processedPackets int
|
|
)
|
|
|
|
func Analyze(source *gopacket.PacketSource) error {
|
|
// Loop over all packets now
|
|
for {
|
|
packet, packetErr := source.NextPacket()
|
|
if packet == nil {
|
|
// We iterated over all packets, we're done here
|
|
break
|
|
} else if packetErr != nil {
|
|
// encountered some problem, report it
|
|
log.Printf("Encountered a problem with a packet: %s", packetErr.Error())
|
|
continue
|
|
}
|
|
|
|
// Track if we didn't process a packet
|
|
processed := false
|
|
|
|
// Iterate over all possible protocols
|
|
for _, p := range protocol.Protocols {
|
|
// Check if this protocol can handle this packet
|
|
if p.CanAnalyze(packet) {
|
|
handleErr(p.Analyze(packet))
|
|
processed = true
|
|
}
|
|
}
|
|
|
|
// Raise statistics
|
|
totalPackets += 1
|
|
if processed {
|
|
processedPackets += 1
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Prints all the summaries.
|
|
func PrintSummary() {
|
|
// First, print base information collected while analyzing
|
|
content := fmt.Sprintf("Processed %d out of %d packets (%d%%)", processedPackets, totalPackets, processedPackets*100/totalPackets)
|
|
output.PrintBlock("Overall statistics", content)
|
|
|
|
// Print summary of each protocol
|
|
for _, p := range protocol.Protocols {
|
|
p.PrintSummary()
|
|
}
|
|
}
|
|
|
|
// Handles an error, if err is not nil.
|
|
func handleErr(err error) {
|
|
// (hopefully) most calls to this function will contain a nil error, so we need to check if we really got an error
|
|
if err != nil {
|
|
log.Printf("Encountered error while examining packets, continuing anyway. Error: %s", err.Error())
|
|
}
|
|
}
|
|
|