503 lines
12 KiB
C
503 lines
12 KiB
C
#include <linux/if_ether.h>
|
|
#include <linux/udp.h>
|
|
#include <linux/tcp.h>
|
|
#include <linux/icmp.h>
|
|
#include <linux/ip.h>
|
|
#include <linux/in.h>
|
|
#include <inttypes.h>
|
|
#include <stdint.h>
|
|
#include <stdatomic.h>
|
|
|
|
#include <linux/bpf.h>
|
|
#include <linux/bpf_common.h>
|
|
|
|
#include "../libbpf/src/bpf_helpers.h"
|
|
|
|
#include "include/xdpfw.h"
|
|
|
|
//#define DEBUG
|
|
|
|
#ifdef DEBUG
|
|
|
|
#define bpf_printk(fmt, ...) \
|
|
({ \
|
|
char ____fmt[] = fmt; \
|
|
bpf_trace_printk(____fmt, sizeof(____fmt), \
|
|
##__VA_ARGS__); \
|
|
})
|
|
|
|
#endif
|
|
|
|
#define likely(x) __builtin_expect(!!(x), 1)
|
|
#define unlikely(x) __builtin_expect(!!(x), 0)
|
|
#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
|
|
#define htons(x) ((__be16)___constant_swab16((x)))
|
|
#define ntohs(x) ((__be16)___constant_swab16((x)))
|
|
#define htonl(x) ((__be32)___constant_swab32((x)))
|
|
#define ntohl(x) ((__be32)___constant_swab32((x)))
|
|
#elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
|
|
#define htons(x) (x)
|
|
#define ntohs(X) (x)
|
|
#define htonl(x) (x)
|
|
#define ntohl(x) (x)
|
|
#endif
|
|
|
|
struct bpf_map_def SEC("maps") filters_map =
|
|
{
|
|
.type = BPF_MAP_TYPE_ARRAY,
|
|
.key_size = sizeof(uint32_t),
|
|
.value_size = sizeof(struct filter),
|
|
.max_entries = MAX_FILTERS
|
|
};
|
|
|
|
struct bpf_map_def SEC("maps") stats_map =
|
|
{
|
|
.type = BPF_MAP_TYPE_ARRAY,
|
|
.key_size = sizeof(uint32_t),
|
|
.value_size = sizeof(struct xdpfw_stats),
|
|
.max_entries = 1
|
|
};
|
|
|
|
struct bpf_map_def SEC("maps") ip_stats_map =
|
|
{
|
|
.type = BPF_MAP_TYPE_LRU_HASH,
|
|
.key_size = sizeof(uint32_t),
|
|
.value_size = sizeof(struct xdpfw_ip_stats),
|
|
.max_entries = MAX_TRACK_IPS
|
|
};
|
|
|
|
struct bpf_map_def SEC("maps") ip_blacklist_map =
|
|
{
|
|
.type = BPF_MAP_TYPE_LRU_HASH,
|
|
.key_size = sizeof(uint32_t),
|
|
.value_size = sizeof(uint64_t),
|
|
.max_entries = MAX_TRACK_IPS
|
|
};
|
|
|
|
SEC("xdp_prog")
|
|
int xdp_prog_main(struct xdp_md *ctx)
|
|
{
|
|
// Initialize data.
|
|
void *data_end = (void *)(long)ctx->data_end;
|
|
void *data = (void *)(long)ctx->data;
|
|
|
|
// Scan ethernet header.
|
|
struct ethhdr *ethhdr = data;
|
|
|
|
// Check if the ethernet header is valid.
|
|
if (ethhdr + 1 > (struct ethhdr *)data_end)
|
|
{
|
|
return XDP_DROP;
|
|
}
|
|
|
|
// Check Ethernet protocol.
|
|
if (unlikely(ethhdr->h_proto != htons(ETH_P_IP)))
|
|
{
|
|
return XDP_PASS;
|
|
}
|
|
|
|
uint8_t matched = 0;
|
|
uint8_t action = 0;
|
|
uint64_t blocktime = 1;
|
|
|
|
// Scan IP header.
|
|
struct iphdr *iph = data + sizeof(struct ethhdr);
|
|
|
|
// Check if the IP header is valid.
|
|
if (unlikely(iph + 1 > (struct iphdr *)data_end))
|
|
{
|
|
return XDP_DROP;
|
|
}
|
|
|
|
// Check IP header protocols.
|
|
if (unlikely(iph->protocol != IPPROTO_UDP && iph->protocol != IPPROTO_TCP && iph->protocol != IPPROTO_ICMP))
|
|
{
|
|
return XDP_DROP;
|
|
}
|
|
|
|
uint64_t now = bpf_ktime_get_ns();
|
|
|
|
// Check blacklist map.
|
|
uint64_t *blocked = bpf_map_lookup_elem(&ip_blacklist_map, &iph->saddr);
|
|
|
|
if (blocked != NULL && *blocked > 0)
|
|
{
|
|
#ifdef DEBUG
|
|
bpf_printk("Checking for blocked packet... Block time %" PRIu64 "\n", *blocked);
|
|
#endif
|
|
|
|
if (now > *blocked)
|
|
{
|
|
// Remove element from map.
|
|
bpf_map_delete_elem(&ip_blacklist_map, &iph->saddr);
|
|
}
|
|
else
|
|
{
|
|
// They're still blocked. Drop the packet.
|
|
return XDP_DROP;
|
|
}
|
|
}
|
|
|
|
// Update IP stats (PPS/BPS).
|
|
uint64_t pps = 0;
|
|
uint64_t bps = 0;
|
|
|
|
struct xdpfw_ip_stats *ip_stats = bpf_map_lookup_elem(&ip_stats_map, &iph->saddr);
|
|
|
|
if (ip_stats)
|
|
{
|
|
// Check for reset.
|
|
if ((now - ip_stats->tracking) > 1000000000)
|
|
{
|
|
ip_stats->pps = 0;
|
|
ip_stats->bps = 0;
|
|
ip_stats->tracking = now;
|
|
}
|
|
|
|
// Increment PPS and BPS using built-in functions.
|
|
__sync_fetch_and_add(&ip_stats->pps, 1);
|
|
__sync_fetch_and_add(&ip_stats->bps, ctx->data_end - ctx->data);
|
|
|
|
pps = ip_stats->pps;
|
|
bps = ip_stats->bps;
|
|
}
|
|
else
|
|
{
|
|
// Create new entry.
|
|
struct xdpfw_ip_stats new;
|
|
|
|
new.pps = 1;
|
|
new.bps = ctx->data_end - ctx->data;
|
|
new.tracking = now;
|
|
|
|
pps = new.pps;
|
|
bps = new.bps;
|
|
|
|
bpf_map_update_elem(&ip_stats_map, &iph->saddr, &new, BPF_ANY);
|
|
}
|
|
|
|
// Let's get the filters we need.
|
|
struct filter *filter[MAX_FILTERS];
|
|
|
|
for (uint8_t i = 0; i < MAX_FILTERS; i++)
|
|
{
|
|
uint32_t key = i;
|
|
|
|
filter[i] = bpf_map_lookup_elem(&filters_map, &key);
|
|
}
|
|
|
|
struct tcphdr *tcph;
|
|
struct udphdr *udph;
|
|
struct icmphdr *icmph;
|
|
|
|
uint16_t l4headerLen = 0;
|
|
|
|
// Check protocol.
|
|
if (iph->protocol == IPPROTO_TCP)
|
|
{
|
|
// Scan TCP header.
|
|
tcph = (data + sizeof(struct ethhdr) + (iph->ihl * 4));
|
|
|
|
// Check TCP header.
|
|
if (tcph + 1 > (struct tcphdr *)data_end)
|
|
{
|
|
return XDP_PASS;
|
|
}
|
|
|
|
// Set L4 Header length.
|
|
l4headerLen = sizeof(struct tcphdr);
|
|
}
|
|
else if (iph->protocol == IPPROTO_UDP)
|
|
{
|
|
// Scan UDP header.
|
|
udph = (data + sizeof(struct ethhdr) + (iph->ihl * 4));
|
|
|
|
// Check TCP header.
|
|
if (udph + 1 > (struct udphdr *)data_end)
|
|
{
|
|
return XDP_PASS;
|
|
}
|
|
|
|
// Set L4 Header length.
|
|
l4headerLen = sizeof(struct udphdr);
|
|
}
|
|
else if (iph->protocol == IPPROTO_ICMP)
|
|
{
|
|
// Scan UDP header.
|
|
icmph = (data + sizeof(struct ethhdr) + (iph->ihl * 4));
|
|
|
|
// Check TCP header.
|
|
if (icmph + 1 > (struct icmphdr *)data_end)
|
|
{
|
|
return XDP_PASS;
|
|
}
|
|
|
|
// Set L4 Header length.
|
|
l4headerLen = sizeof(struct icmphdr);
|
|
}
|
|
|
|
for (uint8_t i = 0; i < MAX_FILTERS; i++)
|
|
{
|
|
// Check if ID is above 0 (if 0, it's an invalid rule).
|
|
if (!filter[i] || filter[i]->id < 1)
|
|
{
|
|
break;
|
|
}
|
|
|
|
// Check if the rule is enabled.
|
|
if (!filter[i]->enabled)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
// Source address.
|
|
if (filter[i]->srcIP != 0 && iph->saddr != filter[i]->srcIP)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
// Destination address.
|
|
if (filter[i]->dstIP != 0 && iph->daddr != filter[i]->dstIP)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
// Max TTL length.
|
|
if (filter[i]->do_max_ttl && filter[i]->max_ttl > iph->ttl)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
// Min TTL length.
|
|
if (filter[i]->do_min_ttl && filter[i]->min_ttl < iph->ttl)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
// Max packet length.
|
|
if (filter[i]->do_max_len && filter[i]->max_len > (ntohs(iph->tot_len) + sizeof(struct ethhdr)))
|
|
{
|
|
continue;
|
|
}
|
|
|
|
// Min packet length.
|
|
if (filter[i]->do_min_len && filter[i]->min_len < (ntohs(iph->tot_len) + sizeof(struct ethhdr)))
|
|
{
|
|
continue;
|
|
}
|
|
|
|
// TOS.
|
|
if (filter[i]->do_tos && filter[i]->tos != iph->tos)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
// PPS.
|
|
if (filter[i]->do_pps && pps <= filter[i]->pps)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
// BPS.
|
|
if (filter[i]->do_bps && bps <= filter[i]->bps)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
// Check layer 4 filters.
|
|
if (iph->protocol == IPPROTO_TCP && !filter[i]->tcpopts.enabled)
|
|
{
|
|
continue;
|
|
}
|
|
else if (iph->protocol == IPPROTO_UDP && !filter[i]->udpopts.enabled)
|
|
{
|
|
continue;
|
|
}
|
|
else if (iph->protocol == IPPROTO_ICMP && !filter[i]->icmpopts.enabled)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
// Payload matching.
|
|
/*
|
|
if (filter[i]->payloadLen > 0)
|
|
{
|
|
unsigned int offset = sizeof(struct ethhdr) + (iph->ihl * 4) + l4headerLen;
|
|
void *pos;
|
|
unsigned int j;
|
|
uint8_t *ptr;
|
|
|
|
pos = data;
|
|
|
|
int cont = 1;
|
|
|
|
for (j = 0; j < MAX_PAYLOAD_LENGTH; j++)
|
|
{
|
|
if ((j + 1) > filter[i]->payloadLen)
|
|
{
|
|
goto out;
|
|
}
|
|
|
|
if ((pos + offset) + 1 > data_end)
|
|
{
|
|
goto out;
|
|
}
|
|
|
|
ptr = pos + offset;
|
|
|
|
if (*ptr == filter[i]->payloadMatch[j])
|
|
{
|
|
offset++;
|
|
|
|
continue;
|
|
}
|
|
|
|
cont = 0;
|
|
goto exitloop;
|
|
}
|
|
|
|
exitloop:
|
|
if (!cont)
|
|
{
|
|
continue;
|
|
}
|
|
}
|
|
|
|
out:
|
|
*/
|
|
|
|
// Do TCP options.
|
|
if (iph->protocol == IPPROTO_TCP && filter[i]->tcpopts.enabled)
|
|
{
|
|
// Source port.
|
|
if (filter[i]->tcpopts.do_sport && htons(filter[i]->tcpopts.sport) != tcph->source)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
// Destination port.
|
|
if (filter[i]->tcpopts.do_dport && htons(filter[i]->tcpopts.dport) != tcph->dest)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
// URG flag.
|
|
if (filter[i]->tcpopts.do_urg && filter[i]->tcpopts.urg != tcph->urg)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
// ACK flag.
|
|
if (filter[i]->tcpopts.do_ack && filter[i]->tcpopts.ack != tcph->ack)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
// RST flag.
|
|
if (filter[i]->tcpopts.do_rst && filter[i]->tcpopts.rst != tcph->rst)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
// PSH flag.
|
|
if (filter[i]->tcpopts.do_psh && filter[i]->tcpopts.psh != tcph->psh)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
// SYN flag.
|
|
if (filter[i]->tcpopts.do_syn && filter[i]->tcpopts.syn != tcph->syn)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
// FIN flag.
|
|
if (filter[i]->tcpopts.do_fin && filter[i]->tcpopts.fin != tcph->fin)
|
|
{
|
|
continue;
|
|
}
|
|
}
|
|
else if (iph->protocol == IPPROTO_UDP && filter[i]->udpopts.enabled)
|
|
{
|
|
// Source port.
|
|
if (filter[i]->udpopts.do_sport && htons(filter[i]->udpopts.sport) != udph->source)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
// Destination port.
|
|
if (filter[i]->udpopts.do_dport && htons(filter[i]->udpopts.dport) != udph->dest)
|
|
{
|
|
continue;
|
|
}
|
|
}
|
|
else if (iph->protocol == IPPROTO_ICMP && filter[i]->icmpopts.enabled)
|
|
{
|
|
// Code.
|
|
if (filter[i]->icmpopts.do_code && filter[i]->icmpopts.code != icmph->code)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
// Type.
|
|
if (filter[i]->icmpopts.do_type && filter[i]->icmpopts.type != icmph->type)
|
|
{
|
|
continue;
|
|
}
|
|
}
|
|
|
|
// Matched.
|
|
#ifdef DEBUG
|
|
bpf_printk("Matched rule ID #%" PRIu8 ".\n", filter[i]->id);
|
|
#endif
|
|
|
|
matched = 1;
|
|
action = filter[i]->action;
|
|
blocktime = filter[i]->blockTime;
|
|
|
|
break;
|
|
}
|
|
|
|
if (matched)
|
|
{
|
|
// Get stats map.
|
|
uint32_t key = 0;
|
|
struct xdpfw_stats *stats;
|
|
|
|
stats = bpf_map_lookup_elem(&stats_map, &key);
|
|
|
|
if (stats)
|
|
{
|
|
// Update stats map.
|
|
if (action == 0)
|
|
{
|
|
__sync_fetch_and_add(&stats->blocked, 1);
|
|
}
|
|
else
|
|
{
|
|
__sync_fetch_and_add(&stats->allowed, 1);
|
|
}
|
|
}
|
|
|
|
#ifdef DEBUG
|
|
//bpf_printk("Matched with protocol %" PRIu8 " and sAddr %" PRIu32 ".\n", iph->protocol, iph->saddr);
|
|
#endif
|
|
}
|
|
|
|
if ((matched) && action == 0)
|
|
{
|
|
// Before dropping, update the blacklist map.
|
|
if (blocktime > 0)
|
|
{
|
|
uint64_t newTime = now + (blocktime * 1000000000);
|
|
|
|
bpf_map_update_elem(&ip_blacklist_map, &iph->saddr, &newTime, BPF_ANY);
|
|
}
|
|
|
|
return XDP_DROP;
|
|
}
|
|
|
|
return XDP_PASS;
|
|
}
|
|
|
|
char _license[] SEC("license") = "GPL"; |