crowdsec/pkg/parser/enrich_geoip.go
Thibault bui Koechlin 2016167654 initial import
2020-05-15 11:39:16 +02:00

112 lines
2.9 KiB
Go

package parser
import (
"fmt"
"net"
"strconv"
"github.com/crowdsecurity/crowdsec/pkg/types"
log "github.com/sirupsen/logrus"
"github.com/oschwald/geoip2-golang"
"github.com/oschwald/maxminddb-golang"
//"github.com/crowdsecurity/crowdsec/pkg/parser"
)
type GeoIpEnricherCtx struct {
dbc *geoip2.Reader
dba *geoip2.Reader
dbraw *maxminddb.Reader
}
/* All plugins must export a list of function pointers for exported symbols */
var ExportedFuncs = []string{"GeoIpASN", "GeoIpCity"}
func IpToRange(field string, p *types.Event, ctx interface{}) (map[string]string, error) {
var dummy interface{}
ret := make(map[string]string)
if field == "" {
return nil, nil
}
ip := net.ParseIP(field)
if ip == nil {
log.Infof("Can't parse ip %s, no range enrich", field)
return nil, nil
}
net, ok, err := ctx.(GeoIpEnricherCtx).dbraw.LookupNetwork(ip, &dummy)
if err != nil {
log.Errorf("Failed to fetch network for %s : %v", ip.String(), err)
return nil, nil
}
if !ok {
log.Debugf("Unable to find range of %s", ip.String())
return nil, nil
}
ret["SourceRange"] = net.String()
return ret, nil
}
func GeoIpASN(field string, p *types.Event, ctx interface{}) (map[string]string, error) {
ret := make(map[string]string)
if field == "" {
return nil, nil
}
ip := net.ParseIP(field)
record, err := ctx.(GeoIpEnricherCtx).dba.ASN(ip)
if err != nil {
log.Debugf("Unable to enrich ip '%s'", field)
return nil, nil
}
ret["ASNNumber"] = fmt.Sprintf("%d", record.AutonomousSystemNumber)
ret["ASNOrg"] = record.AutonomousSystemOrganization
log.Tracef("geoip ASN %s -> %s, %s", field, ret["ASNNumber"], ret["ASNOrg"])
return ret, nil
}
func GeoIpCity(field string, p *types.Event, ctx interface{}) (map[string]string, error) {
ret := make(map[string]string)
if field == "" {
return nil, nil
}
ip := net.ParseIP(field)
record, err := ctx.(GeoIpEnricherCtx).dbc.City(ip)
if err != nil {
log.Fatal(err)
return nil, err
}
ret["IsoCode"] = record.Country.IsoCode
ret["IsInEU"] = strconv.FormatBool(record.Country.IsInEuropeanUnion)
ret["Latitude"] = fmt.Sprintf("%f", record.Location.Latitude)
ret["Longitude"] = fmt.Sprintf("%f", record.Location.Longitude)
log.Tracef("geoip City %s -> %s, %s", field, ret["IsoCode"], ret["IsInEU"])
return ret, nil
}
/* All plugins must export an Init function */
func GeoIpInit(cfg map[string]string) (interface{}, error) {
var ctx GeoIpEnricherCtx
var err error
ctx.dbc, err = geoip2.Open(cfg["datadir"] + "/GeoLite2-City.mmdb")
if err != nil {
log.Errorf("couldn't open geoip : %v", err)
return nil, err
}
ctx.dba, err = geoip2.Open(cfg["datadir"] + "/GeoLite2-ASN.mmdb")
if err != nil {
log.Errorf("couldn't open geoip : %v", err)
return nil, err
}
ctx.dbraw, err = maxminddb.Open(cfg["datadir"] + "/GeoLite2-ASN.mmdb")
if err != nil {
log.Errorf("couldn't open geoip : %v", err)
return nil, err
}
return ctx, nil
}