1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// The metric types and constant values must be the same
// as those defined in bpf/metric_key.h

#[repr(C)]
#[derive(Default, Clone)]
pub struct phy_metric_key {
    ifindex:   u32,
    direction: u16,
    cpu:       u16,
}

#[repr(C)]
#[derive(Default, Clone)]
pub struct eth_metric_key {
    phy:      phy_metric_key,
    protocol: u32,
}

#[repr(C)]
#[derive(Default, Clone)]
pub struct ip_metric_key {
    eth:      eth_metric_key,
    saddr:    u32,
    daddr:    u32,
    protocol: u32,
}

#[repr(C)]
#[derive(Default, Clone)]
pub struct tcp_metric_key {
    ip:    ip_metric_key,
    sport: u16,
    dport: u16,
}

#[repr(C)]
#[derive(Default, Clone)]
pub struct udp_metric_key {
    ip:    ip_metric_key,
    sport: u16,
    dport: u16,
}

#[repr(C)]
#[derive(Default, Clone)]
pub struct eth_metric_val {
    packets: u64,
    bytes:   u64,
}

#[repr(C)]
#[derive(Default, Clone)]
pub struct ip_metric_val {
    packets:       u64,
    bytes:         u64,
    payload_bytes: u64,
}

#[repr(C)]
#[derive(Default, Clone)]
pub struct tcp_metric_val {
    packets:       u64,
    bytes:         u64,
    payload_bytes: u64,
    flags:         u64,
}

#[repr(C)]
#[derive(Default, Clone)]
pub struct udp_metric_val {
    packets:       u64,
    bytes:         u64,
    payload_bytes: u64,
}

pub const ETH_METRIC_MAP_LIMIT: u32 = 1024;
pub const IP_METRIC_MAP_LIMIT:  u32 = 1024;
pub const UDP_METRIC_MAP_LIMIT: u32 = 1024*1024;
pub const TCP_METRIC_MAP_LIMIT: u32 = 1024*1024;

define_metrics!{
    {"eth", eth_metric_key, eth_metric_val, ETH_METRIC_MAP_LIMIT},
    {"ip",  ip_metric_key,  ip_metric_val,  IP_METRIC_MAP_LIMIT},
    {"udp", udp_metric_key, udp_metric_val, UDP_METRIC_MAP_LIMIT},
    {"tcp", tcp_metric_key, tcp_metric_val, TCP_METRIC_MAP_LIMIT},
}