2021-01-02 13:05:09 +00:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
"os"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/yl2chen/cidranger"
|
|
|
|
|
2021-12-25 11:08:07 +00:00
|
|
|
"github.com/drakkan/sftpgo/v2/dataprovider"
|
2021-06-26 05:31:41 +00:00
|
|
|
"github.com/drakkan/sftpgo/v2/logger"
|
2021-07-11 13:26:51 +00:00
|
|
|
"github.com/drakkan/sftpgo/v2/util"
|
2021-01-02 13:05:09 +00:00
|
|
|
)
|
|
|
|
|
2021-10-13 07:15:04 +00:00
|
|
|
// HostEvent is the enumerable for the supported host events
|
2021-01-02 13:05:09 +00:00
|
|
|
type HostEvent int
|
|
|
|
|
|
|
|
// Supported host events
|
|
|
|
const (
|
|
|
|
HostEventLoginFailed HostEvent = iota
|
|
|
|
HostEventUserNotFound
|
|
|
|
HostEventNoLoginTried
|
2021-05-08 17:45:21 +00:00
|
|
|
HostEventLimitExceeded
|
2021-01-02 13:05:09 +00:00
|
|
|
)
|
|
|
|
|
2021-12-25 11:08:07 +00:00
|
|
|
// Supported defender drivers
|
|
|
|
const (
|
|
|
|
DefenderDriverMemory = "memory"
|
|
|
|
DefenderDriverProvider = "provider"
|
|
|
|
)
|
2021-06-07 19:52:43 +00:00
|
|
|
|
2021-12-25 11:08:07 +00:00
|
|
|
var (
|
|
|
|
supportedDefenderDrivers = []string{DefenderDriverMemory, DefenderDriverProvider}
|
|
|
|
)
|
2021-06-07 19:52:43 +00:00
|
|
|
|
2021-01-02 13:05:09 +00:00
|
|
|
// Defender defines the interface that a defender must implements
|
|
|
|
type Defender interface {
|
2021-12-25 11:08:07 +00:00
|
|
|
GetHosts() ([]*dataprovider.DefenderEntry, error)
|
|
|
|
GetHost(ip string) (*dataprovider.DefenderEntry, error)
|
2021-01-02 13:05:09 +00:00
|
|
|
AddEvent(ip string, event HostEvent)
|
|
|
|
IsBanned(ip string) bool
|
2021-12-25 11:08:07 +00:00
|
|
|
GetBanTime(ip string) (*time.Time, error)
|
|
|
|
GetScore(ip string) (int, error)
|
2021-06-07 19:52:43 +00:00
|
|
|
DeleteHost(ip string) bool
|
2021-01-04 16:52:14 +00:00
|
|
|
Reload() error
|
2021-01-02 13:05:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DefenderConfig defines the "defender" configuration
|
|
|
|
type DefenderConfig struct {
|
|
|
|
// Set to true to enable the defender
|
|
|
|
Enabled bool `json:"enabled" mapstructure:"enabled"`
|
2021-12-25 11:08:07 +00:00
|
|
|
// Defender implementation to use, we support "memory" and "provider".
|
|
|
|
// Using "provider" as driver you can share the defender events among
|
|
|
|
// multiple SFTPGo instances. For a single instance "memory" provider will
|
|
|
|
// be much faster
|
|
|
|
Driver string `json:"driver" mapstructure:"driver"`
|
2021-01-02 13:05:09 +00:00
|
|
|
// BanTime is the number of minutes that a host is banned
|
|
|
|
BanTime int `json:"ban_time" mapstructure:"ban_time"`
|
|
|
|
// Percentage increase of the ban time if a banned host tries to connect again
|
|
|
|
BanTimeIncrement int `json:"ban_time_increment" mapstructure:"ban_time_increment"`
|
|
|
|
// Threshold value for banning a client
|
|
|
|
Threshold int `json:"threshold" mapstructure:"threshold"`
|
|
|
|
// Score for invalid login attempts, eg. non-existent user accounts or
|
|
|
|
// client disconnected for inactivity without authentication attempts
|
|
|
|
ScoreInvalid int `json:"score_invalid" mapstructure:"score_invalid"`
|
|
|
|
// Score for valid login attempts, eg. user accounts that exist
|
|
|
|
ScoreValid int `json:"score_valid" mapstructure:"score_valid"`
|
2021-05-08 17:45:21 +00:00
|
|
|
// Score for limit exceeded events, generated from the rate limiters or for max connections
|
|
|
|
// per-host exceeded
|
|
|
|
ScoreLimitExceeded int `json:"score_limit_exceeded" mapstructure:"score_limit_exceeded"`
|
2021-01-02 13:05:09 +00:00
|
|
|
// Defines the time window, in minutes, for tracking client errors.
|
|
|
|
// A host is banned if it has exceeded the defined threshold during
|
|
|
|
// the last observation time minutes
|
|
|
|
ObservationTime int `json:"observation_time" mapstructure:"observation_time"`
|
|
|
|
// The number of banned IPs and host scores kept in memory will vary between the
|
2021-12-25 11:08:07 +00:00
|
|
|
// soft and hard limit for the "memory" driver. For the "provider" driver the
|
|
|
|
// soft limit is ignored and the hard limit is used to limit the number of entries
|
|
|
|
// to return when you request for the entire host list from the defender
|
2021-01-02 13:05:09 +00:00
|
|
|
EntriesSoftLimit int `json:"entries_soft_limit" mapstructure:"entries_soft_limit"`
|
|
|
|
EntriesHardLimit int `json:"entries_hard_limit" mapstructure:"entries_hard_limit"`
|
2021-01-02 19:02:05 +00:00
|
|
|
// Path to a file containing a list of ip addresses and/or networks to never ban
|
2021-01-02 13:05:09 +00:00
|
|
|
SafeListFile string `json:"safelist_file" mapstructure:"safelist_file"`
|
2021-01-02 19:02:05 +00:00
|
|
|
// Path to a file containing a list of ip addresses and/or networks to always ban
|
2021-01-02 13:05:09 +00:00
|
|
|
BlockListFile string `json:"blocklist_file" mapstructure:"blocklist_file"`
|
|
|
|
}
|
|
|
|
|
2021-12-25 11:08:07 +00:00
|
|
|
type baseDefender struct {
|
2021-01-02 13:05:09 +00:00
|
|
|
config *DefenderConfig
|
|
|
|
sync.RWMutex
|
|
|
|
safeList *HostList
|
|
|
|
blockList *HostList
|
|
|
|
}
|
|
|
|
|
2021-12-25 11:08:07 +00:00
|
|
|
// Reload reloads block and safe lists
|
|
|
|
func (d *baseDefender) Reload() error {
|
|
|
|
blockList, err := loadHostListFromFile(d.config.BlockListFile)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
d.Lock()
|
|
|
|
d.blockList = blockList
|
|
|
|
d.Unlock()
|
|
|
|
|
|
|
|
safeList, err := loadHostListFromFile(d.config.SafeListFile)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
d.Lock()
|
|
|
|
d.safeList = safeList
|
|
|
|
d.Unlock()
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *baseDefender) isBanned(ip string) bool {
|
|
|
|
if d.blockList != nil && d.blockList.isListed(ip) {
|
|
|
|
// permanent ban
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *baseDefender) getScore(event HostEvent) int {
|
|
|
|
var score int
|
|
|
|
|
|
|
|
switch event {
|
|
|
|
case HostEventLoginFailed:
|
|
|
|
score = d.config.ScoreValid
|
|
|
|
case HostEventLimitExceeded:
|
|
|
|
score = d.config.ScoreLimitExceeded
|
|
|
|
case HostEventUserNotFound, HostEventNoLoginTried:
|
|
|
|
score = d.config.ScoreInvalid
|
|
|
|
}
|
|
|
|
return score
|
|
|
|
}
|
|
|
|
|
2021-01-02 13:05:09 +00:00
|
|
|
// HostListFile defines the structure expected for safe/block list files
|
|
|
|
type HostListFile struct {
|
|
|
|
IPAddresses []string `json:"addresses"`
|
|
|
|
CIDRNetworks []string `json:"networks"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// HostList defines the structure used to keep the HostListFile in memory
|
|
|
|
type HostList struct {
|
|
|
|
IPAddresses map[string]bool
|
|
|
|
Ranges cidranger.Ranger
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *HostList) isListed(ip string) bool {
|
|
|
|
if _, ok := h.IPAddresses[ip]; ok {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
ok, err := h.Ranges.Contains(net.ParseIP(ip))
|
|
|
|
if err != nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
type hostEvent struct {
|
|
|
|
dateTime time.Time
|
|
|
|
score int
|
|
|
|
}
|
|
|
|
|
|
|
|
type hostScore struct {
|
|
|
|
TotalScore int
|
|
|
|
Events []hostEvent
|
|
|
|
}
|
|
|
|
|
|
|
|
// validate returns an error if the configuration is invalid
|
|
|
|
func (c *DefenderConfig) validate() error {
|
|
|
|
if !c.Enabled {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if c.ScoreInvalid >= c.Threshold {
|
|
|
|
return fmt.Errorf("score_invalid %v cannot be greater than threshold %v", c.ScoreInvalid, c.Threshold)
|
|
|
|
}
|
|
|
|
if c.ScoreValid >= c.Threshold {
|
|
|
|
return fmt.Errorf("score_valid %v cannot be greater than threshold %v", c.ScoreValid, c.Threshold)
|
|
|
|
}
|
2021-05-08 17:45:21 +00:00
|
|
|
if c.ScoreLimitExceeded >= c.Threshold {
|
|
|
|
return fmt.Errorf("score_limit_exceeded %v cannot be greater than threshold %v", c.ScoreLimitExceeded, c.Threshold)
|
2021-04-18 10:31:06 +00:00
|
|
|
}
|
2021-01-02 13:05:09 +00:00
|
|
|
if c.BanTime <= 0 {
|
|
|
|
return fmt.Errorf("invalid ban_time %v", c.BanTime)
|
|
|
|
}
|
|
|
|
if c.BanTimeIncrement <= 0 {
|
|
|
|
return fmt.Errorf("invalid ban_time_increment %v", c.BanTimeIncrement)
|
|
|
|
}
|
|
|
|
if c.ObservationTime <= 0 {
|
|
|
|
return fmt.Errorf("invalid observation_time %v", c.ObservationTime)
|
|
|
|
}
|
|
|
|
if c.EntriesSoftLimit <= 0 {
|
|
|
|
return fmt.Errorf("invalid entries_soft_limit %v", c.EntriesSoftLimit)
|
|
|
|
}
|
|
|
|
if c.EntriesHardLimit <= c.EntriesSoftLimit {
|
|
|
|
return fmt.Errorf("invalid entries_hard_limit %v must be > %v", c.EntriesHardLimit, c.EntriesSoftLimit)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func loadHostListFromFile(name string) (*HostList, error) {
|
|
|
|
if name == "" {
|
|
|
|
return nil, nil
|
|
|
|
}
|
2021-07-11 13:26:51 +00:00
|
|
|
if !util.IsFileInputValid(name) {
|
2021-01-02 13:05:09 +00:00
|
|
|
return nil, fmt.Errorf("invalid host list file name %#v", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
info, err := os.Stat(name)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// opinionated max size, you should avoid big host lists
|
|
|
|
if info.Size() > 1048576*5 { // 5MB
|
|
|
|
return nil, fmt.Errorf("host list file %#v is too big: %v bytes", name, info.Size())
|
|
|
|
}
|
|
|
|
|
2021-02-25 20:53:04 +00:00
|
|
|
content, err := os.ReadFile(name)
|
2021-01-02 13:05:09 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("unable to read input file %#v: %v", name, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
var hostList HostListFile
|
|
|
|
|
|
|
|
err = json.Unmarshal(content, &hostList)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(hostList.CIDRNetworks) > 0 || len(hostList.IPAddresses) > 0 {
|
|
|
|
result := &HostList{
|
|
|
|
IPAddresses: make(map[string]bool),
|
|
|
|
Ranges: cidranger.NewPCTrieRanger(),
|
|
|
|
}
|
|
|
|
ipCount := 0
|
|
|
|
cdrCount := 0
|
|
|
|
for _, ip := range hostList.IPAddresses {
|
|
|
|
if net.ParseIP(ip) == nil {
|
|
|
|
logger.Warn(logSender, "", "unable to parse IP %#v", ip)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
result.IPAddresses[ip] = true
|
|
|
|
ipCount++
|
|
|
|
}
|
|
|
|
for _, cidrNet := range hostList.CIDRNetworks {
|
|
|
|
_, network, err := net.ParseCIDR(cidrNet)
|
|
|
|
if err != nil {
|
|
|
|
logger.Warn(logSender, "", "unable to parse CIDR network %#v", cidrNet)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
err = result.Ranges.Insert(cidranger.NewBasicRangerEntry(*network))
|
|
|
|
if err == nil {
|
|
|
|
cdrCount++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.Info(logSender, "", "list %#v loaded, ip addresses loaded: %v/%v networks loaded: %v/%v",
|
|
|
|
name, ipCount, len(hostList.IPAddresses), cdrCount, len(hostList.CIDRNetworks))
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, nil
|
|
|
|
}
|