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 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
use libc::c_void;
use c_ulong;
use status::{L2_IPV4, L2_IPV6};
use nethdr::{L4Type, T2IpAddr};
/// C timeval structure
#[repr(C)]
struct Timeval {
tv_sec: c_ulong,
tv_usec: c_ulong,
}
/// Tranalyzer2 internal per flow structure.
#[repr(C, packed)]
pub struct Flow {
lru_next_flow: *mut c_void,
lru_prev_flow: *mut c_void,
/// Unique flow index: second column of Tranalyzer2 flow output.
pub findex: u64,
/// flow status bits.
pub status: u64,
/// Tranalyzer2 internal flow index: uniquely identify a flow in internal hashmap but is not
/// unique over a Tranalyzer2 run.
///
/// Use this value with the [`getflow`](::getflow) function. Use [`findex`](Flow::findex) for a
/// unique flow index.
///
pub flow_index: c_ulong,
/// Similar to [`flow_index`](Flow::flow_index) but identifies the opposite flow associated to
/// this flow.
///
/// Equals [`HASHTABLE_ENTRY_NOT_FOUND`](::HASHTABLE_ENTRY_NOT_FOUND) if this flow has no
/// opposite flow.
pub opposite_flow_index: c_ulong,
#[cfg(all(feature = "SCTP_ACTIVATE", feature = "SCTP_STATFINDEX"))]
sctp_findex: c_ulong,
last_seen: Timeval,
first_seen: Timeval,
duration: Timeval,
#[cfg(any(feature = "IPV6_ACTIVATE", feature = "IPV6_DUALMODE"))]
src_ip: T2IpAddr,
#[cfg(any(feature = "IPV6_ACTIVATE", feature = "IPV6_DUALMODE"))]
dst_ip: T2IpAddr,
#[cfg(not(any(feature = "IPV6_ACTIVATE", feature = "IPV6_DUALMODE")))]
src_ip: [u8; 4],
#[cfg(not(any(feature = "IPV6_ACTIVATE", feature = "IPV6_DUALMODE")))]
dst_ip: [u8; 4],
#[cfg(feature = "ETH_ACTIVATE")]
eth_dhost: [u8; 6],
#[cfg(feature = "ETH_ACTIVATE")]
eth_shost: [u8; 6],
#[cfg(any(feature = "ETH_ACTIVATE", feature = "IPV6_DUALMODE", feature = "LAPD_ACTIVATE"))]
eth_type: u16,
/// flow inner VLAN tag
pub vlan_id: u16,
/// flow source port (UDP or TCP)
pub src_port: u16,
/// flow destination port (UDP or TCP)
pub dst_port: u16,
#[cfg(feature = "SCTP_ASSOC")]
sctp_vtag: u32,
#[cfg(feature = "SCTP_STREAM")]
sctp_strm: u16,
l4_proto: u8,
/// timeout of this flow in seconds
timeout: f32,
last_ipid: u32,
#[cfg(feature = "SUBNET_INIT")]
subnet_nr_src: u32,
#[cfg(feature = "SUBNET_INIT")]
subnet_nr_dst: u32,
#[cfg(any(feature = "IPV6_ACTIVATE", feature = "IPV6_DUALMODE"))]
last_frag_ipid: u32,
#[cfg(not(any(feature = "IPV6_ACTIVATE", feature = "IPV6_DUALMODE")))]
last_frag_ipid: u16,
}
impl Flow {
/// Timestamp of the first seen packet (as the number of seconds since 1970-01-01).
pub fn first_seen(&self) -> f64 {
let ptr = std::ptr::addr_of!(self.first_seen);
let ts = unsafe { ptr.read_unaligned() };
ts.tv_sec as f64 + (ts.tv_usec as f64 / 1000000.0)
}
/// Timestamp of the last seen packet (as the number of seconds since 1970-01-01).
pub fn last_seen(&self) -> f64 {
let ptr = std::ptr::addr_of!(self.last_seen);
let ts = unsafe { ptr.read_unaligned() };
ts.tv_sec as f64 + (ts.tv_usec as f64 / 1000000.0)
}
/// Duration of this flow in seconds.
///
/// This method should only be called after the flow termination. To compute the current flow
/// duration before the flow termination, use [`first_seen`](Flow::first_seen) and
/// [`last_seen`](Flow::last_seen).
pub fn duration(&self) -> f64 {
let ptr = std::ptr::addr_of!(self.duration);
let ts = unsafe { ptr.read_unaligned() };
ts.tv_sec as f64 + (ts.tv_usec as f64 / 1000000.0)
}
/// Returns source IP address for IPv4 or IPv6 flow. None for non IP flow.
#[cfg(any(feature = "IPV6_ACTIVATE", feature = "IPV6_DUALMODE"))]
pub fn src_ip(&self) -> Option<IpAddr> {
if (self.status & L2_IPV4) != 0 {
Some(IpAddr::V4(Ipv4Addr::from(unsafe { self.src_ip.ipv4 })))
} else if (self.status & L2_IPV6) != 0 {
Some(IpAddr::V6(Ipv6Addr::from(unsafe { self.src_ip.ipv6 })))
} else {
None
}
}
/// Returns source IP address for IPv4 flow. None for IPv6 or non IP flow.
#[cfg(not(any(feature = "IPV6_ACTIVATE", feature = "IPV6_DUALMODE")))]
pub fn src_ip(&self) -> Option<IpAddr> {
if (self.status & L2_IPV4) != 0 {
Some(IpAddr::V4(Ipv4Addr::from(self.src_ip)))
} else {
None
}
}
/// Returns destination IP address for IPv4 or IPv6 flow. None for non IP flow.
#[cfg(any(feature = "IPV6_ACTIVATE", feature = "IPV6_DUALMODE"))]
pub fn dst_ip(&self) -> Option<IpAddr> {
if (self.status & L2_IPV4) != 0 {
Some(IpAddr::V4(Ipv4Addr::from(unsafe { self.dst_ip.ipv4 })))
} else if (self.status & L2_IPV6) != 0 {
Some(IpAddr::V6(Ipv6Addr::from(unsafe { self.dst_ip.ipv6 })))
} else {
None
}
}
/// Returns destination IP address for IPv4 flow. None for IPv6 or non IP flow.
#[cfg(not(any(feature = "IPV6_ACTIVATE", feature = "IPV6_DUALMODE")))]
pub fn dst_ip(&self) -> Option<IpAddr> {
if (self.status & L2_IPV4) != 0 {
Some(IpAddr::V4(Ipv4Addr::from(self.dst_ip)))
} else {
None
}
}
/// Type of the layer 4 header as defined in [`L4Type`].
pub fn l4_proto(&self) -> L4Type {
L4Type::from_u8(self.l4_proto)
}
/// Returns the IP version of this flow (4 or 6). Returns 0 if not IP flow.
#[cfg(any(feature = "IPV6_ACTIVATE", feature = "IPV6_DUALMODE"))]
pub fn ip_ver(&self) -> u8 {
if (self.status & L2_IPV4) != 0 {
4
} else if (self.status & L2_IPV6) != 0 {
6
} else {
0
}
}
/// Returns the IP version of this flow (4 or 6). Returns 0 if not IP flow.
#[cfg(not(any(feature = "IPV6_ACTIVATE", feature = "IPV6_DUALMODE")))]
pub fn ip_ver(&self) -> u8 {
if (self.status & L2_IPV4) != 0 {
4
} else {
0
}
}
}