tor_geoip/lib.rs
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 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527
//! A crate for performing GeoIP lookups using the Tor GeoIP database.
// @@ begin lint list maintained by maint/add_warning @@
#![allow(renamed_and_removed_lints)] // @@REMOVE_WHEN(ci_arti_stable)
#![allow(unknown_lints)] // @@REMOVE_WHEN(ci_arti_nightly)
#![warn(missing_docs)]
#![warn(noop_method_call)]
#![warn(unreachable_pub)]
#![warn(clippy::all)]
#![deny(clippy::await_holding_lock)]
#![deny(clippy::cargo_common_metadata)]
#![deny(clippy::cast_lossless)]
#![deny(clippy::checked_conversions)]
#![warn(clippy::cognitive_complexity)]
#![deny(clippy::debug_assert_with_mut_call)]
#![deny(clippy::exhaustive_enums)]
#![deny(clippy::exhaustive_structs)]
#![deny(clippy::expl_impl_clone_on_copy)]
#![deny(clippy::fallible_impl_from)]
#![deny(clippy::implicit_clone)]
#![deny(clippy::large_stack_arrays)]
#![warn(clippy::manual_ok_or)]
#![deny(clippy::missing_docs_in_private_items)]
#![warn(clippy::needless_borrow)]
#![warn(clippy::needless_pass_by_value)]
#![warn(clippy::option_option)]
#![deny(clippy::print_stderr)]
#![deny(clippy::print_stdout)]
#![warn(clippy::rc_buffer)]
#![deny(clippy::ref_option_ref)]
#![warn(clippy::semicolon_if_nothing_returned)]
#![warn(clippy::trait_duplication_in_bounds)]
#![deny(clippy::unchecked_duration_subtraction)]
#![deny(clippy::unnecessary_wraps)]
#![warn(clippy::unseparated_literal_suffix)]
#![deny(clippy::unwrap_used)]
#![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
#![allow(clippy::uninlined_format_args)]
#![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
#![allow(clippy::result_large_err)] // temporary workaround for arti#587
#![allow(clippy::needless_raw_string_hashes)] // complained-about code is fine, often best
//! <!-- @@ end lint list maintained by maint/add_warning @@ -->
pub use crate::err::Error;
use once_cell::sync::OnceCell;
use rangemap::RangeInclusiveMap;
use std::fmt::{Debug, Display, Formatter};
use std::net::{IpAddr, Ipv6Addr};
use std::num::{NonZeroU32, NonZeroU8, TryFromIntError};
use std::str::FromStr;
use std::sync::Arc;
mod err;
/// An embedded copy of the latest geoip v4 database at the time of compilation.
///
/// FIXME(eta): This does use a few megabytes of binary size, which is less than ideal.
/// It would be better to parse it at compile time or something.
#[cfg(feature = "embedded-db")]
static EMBEDDED_DB_V4: &str = include_str!("../data/geoip");
/// An embedded copy of the latest geoip v6 database at the time of compilation.
#[cfg(feature = "embedded-db")]
static EMBEDDED_DB_V6: &str = include_str!("../data/geoip6");
/// A parsed copy of the embedded database.
#[cfg(feature = "embedded-db")]
static EMBEDDED_DB_PARSED: OnceCell<Arc<GeoipDb>> = OnceCell::new();
/// A two-letter country code.
///
/// Specifically, this type represents a purported "ISO 3166-1 alpha-2" country
/// code, such as "IT" for Italy or "UY" for Uruguay.
///
/// It does not include the sentinel value `??` that we use to represent
/// "country unknown"; if you need that, use [`OptionCc`]. Other than that, we
/// do not check whether the country code represents a real country: we only
/// ensure that it is a pair of printing ASCII characters.
///
/// Note that the geoip databases included with Arti will only include real
/// countries; we do not include the pseudo-countries `A1` through `An` for
/// "anonymous proxies", since doing so would mean putting nearly all Tor relays
/// into one of those countries.
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct CountryCode {
/// The underlying value (two printable ASCII characters, stored uppercase).
///
/// The special value `??` is excluded, since it is not a country; use
/// `OptionCc` instead if you need to represent that.
///
/// We store these as `NonZeroU8` so that an `Option<CountryCode>` only has to
/// take 2 bytes. This helps with alignment and storage.
inner: [NonZeroU8; 2],
}
impl CountryCode {
/// Make a new `CountryCode`.
fn new(cc_orig: &str) -> Result<Self, Error> {
/// Try to convert an array of 2 bytes into an array of 2 nonzero bytes.
#[inline]
fn try_cvt_to_nz(inp: [u8; 2]) -> Result<[NonZeroU8; 2], TryFromIntError> {
// I have confirmed that the asm here is reasonably efficient.
Ok([inp[0].try_into()?, inp[1].try_into()?])
}
let cc = cc_orig.to_ascii_uppercase();
let cc: [u8; 2] = cc
.as_bytes()
.try_into()
.map_err(|_| Error::BadCountryCode(cc))?;
if !cc.iter().all(|b| b.is_ascii() && !b.is_ascii_control()) {
return Err(Error::BadCountryCode(cc_orig.to_owned()));
}
if &cc == b"??" {
return Err(Error::NowhereNotSupported);
}
Ok(Self {
inner: try_cvt_to_nz(cc).map_err(|_| Error::BadCountryCode(cc_orig.to_owned()))?,
})
}
/// Get the actual country code.
///
/// This just calls `.as_ref()`.
pub fn get(&self) -> &str {
self.as_ref()
}
}
impl Display for CountryCode {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.as_ref())
}
}
impl Debug for CountryCode {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write!(f, "CountryCode(\"{}\")", self.as_ref())
}
}
impl AsRef<str> for CountryCode {
fn as_ref(&self) -> &str {
/// Convert a reference to an array of 2 nonzero bytes to a reference to
/// an array of 2 bytes.
#[inline]
fn cvt_ref(inp: &[NonZeroU8; 2]) -> &[u8; 2] {
// SAFETY: Every NonZeroU8 has a layout and bit validity that is
// also a valid u8. The layout of arrays is also guaranteed.
//
// (We don't use try_into here because we need to return a str that
// points to a reference to self.)
let ptr = inp.as_ptr() as *const u8;
let slice = unsafe { std::slice::from_raw_parts(ptr, inp.len()) };
slice
.try_into()
.expect("the resulting slice should have the correct length!")
}
// This shouldn't ever panic, since we shouldn't feed non-utf8 country
// codes in.
//
// In theory we could use from_utf8_unchecked, but that's probably not
// needed.
std::str::from_utf8(cvt_ref(&self.inner)).expect("invalid country code in CountryCode")
}
}
impl FromStr for CountryCode {
type Err = Error;
fn from_str(s: &str) -> Result<Self, Self::Err> {
CountryCode::new(s)
}
}
/// Wrapper for an `Option<`[`CountryCode`]`>` that encodes `None` as `??`.
///
/// Used so that we can implement foreign traits.
#[derive(
Copy, Clone, Debug, Eq, PartialEq, derive_more::Into, derive_more::From, derive_more::AsRef,
)]
#[allow(clippy::exhaustive_structs)]
pub struct OptionCc(pub Option<CountryCode>);
impl FromStr for OptionCc {
type Err = Error;
fn from_str(s: &str) -> Result<Self, Self::Err> {
match CountryCode::new(s) {
Err(Error::NowhereNotSupported) => Ok(None.into()),
Err(e) => Err(e),
Ok(cc) => Ok(Some(cc).into()),
}
}
}
impl Display for OptionCc {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
match self.0 {
Some(cc) => write!(f, "{}", cc),
None => write!(f, "??"),
}
}
}
/// A country code / ASN definition.
///
/// Type lifted from `geoip-db-tool` in the C-tor source.
#[derive(Copy, Clone, Eq, PartialEq, Debug)]
struct NetDefn {
/// The country code.
///
/// We translate the value "??" into None.
cc: Option<CountryCode>,
/// The ASN, if we have one. We translate the value "0" into None.
asn: Option<NonZeroU32>,
}
impl NetDefn {
/// Make a new `NetDefn`.
fn new(cc: &str, asn: Option<u32>) -> Result<Self, Error> {
let asn = NonZeroU32::new(asn.unwrap_or(0));
let cc = cc.parse::<OptionCc>()?.into();
Ok(Self { cc, asn })
}
/// Return the country code.
fn country_code(&self) -> Option<&CountryCode> {
self.cc.as_ref()
}
/// Return the ASN, if there is one.
fn asn(&self) -> Option<u32> {
self.asn.as_ref().map(|x| x.get())
}
}
/// A database of IP addresses to country codes.
#[derive(Clone, Eq, PartialEq, Debug)]
pub struct GeoipDb {
/// The IPv4 subset of the database, with v4 addresses stored as 32-bit integers.
map_v4: RangeInclusiveMap<u32, NetDefn>,
/// The IPv6 subset of the database, with v6 addresses stored as 128-bit integers.
map_v6: RangeInclusiveMap<u128, NetDefn>,
}
impl GeoipDb {
/// Make a new `GeoipDb` using a compiled-in copy of the GeoIP database.
///
/// The returned instance of the database is shared with `Arc` across all invocations of this
/// function in the same program.
#[cfg(feature = "embedded-db")]
pub fn new_embedded() -> Arc<Self> {
Arc::clone(EMBEDDED_DB_PARSED.get_or_init(|| {
Arc::new(
// It's reasonable to assume the one we embedded is fine -- we'll test it in CI, etc.
Self::new_from_legacy_format(EMBEDDED_DB_V4, EMBEDDED_DB_V6)
.expect("failed to parse embedded geoip database"),
)
}))
}
/// Make a new `GeoipDb` using provided copies of the v4 and v6 database, in Tor legacy format.
pub fn new_from_legacy_format(db_v4: &str, db_v6: &str) -> Result<Self, Error> {
let mut ret = GeoipDb {
map_v4: Default::default(),
map_v6: Default::default(),
};
for line in db_v4.lines() {
if line.starts_with('#') {
continue;
}
let line = line.trim();
if line.is_empty() {
continue;
}
let mut split = line.split(',');
let from = split
.next()
.ok_or(Error::BadFormat("empty line somehow?"))?
.parse::<u32>()?;
let to = split
.next()
.ok_or(Error::BadFormat("line with insufficient commas"))?
.parse::<u32>()?;
let cc = split
.next()
.ok_or(Error::BadFormat("line with insufficient commas"))?;
let asn = split.next().map(|x| x.parse::<u32>()).transpose()?;
let defn = NetDefn::new(cc, asn)?;
ret.map_v4.insert(from..=to, defn);
}
// This is slightly copypasta, but probably less readable to merge into one thing.
for line in db_v6.lines() {
if line.starts_with('#') {
continue;
}
let line = line.trim();
if line.is_empty() {
continue;
}
let mut split = line.split(',');
let from = split
.next()
.ok_or(Error::BadFormat("empty line somehow?"))?
.parse::<Ipv6Addr>()?;
let to = split
.next()
.ok_or(Error::BadFormat("line with insufficient commas"))?
.parse::<Ipv6Addr>()?;
let cc = split
.next()
.ok_or(Error::BadFormat("line with insufficient commas"))?;
let asn = split.next().map(|x| x.parse::<u32>()).transpose()?;
let defn = NetDefn::new(cc, asn)?;
ret.map_v6.insert(from.into()..=to.into(), defn);
}
Ok(ret)
}
/// Get the `NetDefn` for an IP address.
fn lookup_defn(&self, ip: IpAddr) -> Option<&NetDefn> {
match ip {
IpAddr::V4(v4) => self.map_v4.get(&v4.into()),
IpAddr::V6(v6) => self.map_v6.get(&v6.into()),
}
}
/// Get a 2-letter country code for the given IP address, if this data is available.
pub fn lookup_country_code(&self, ip: IpAddr) -> Option<&CountryCode> {
self.lookup_defn(ip).and_then(|x| x.country_code())
}
/// Determine a 2-letter country code for a host with multiple IP addresses.
///
/// This looks up all of the IP addresses with `lookup_country_code`. If the lookups
/// return different countries, `None` is returned. IP addresses that fail to resolve
/// into a country are ignored if some of the other addresses do resolve successfully.
pub fn lookup_country_code_multi<I>(&self, ips: I) -> Option<&CountryCode>
where
I: IntoIterator<Item = IpAddr>,
{
let mut ret = None;
for ip in ips {
if let Some(cc) = self.lookup_country_code(ip) {
// If we already have a return value and it's different, then return None;
// a server can't be in two different countries.
if ret.is_some() && ret != Some(cc) {
return None;
}
ret = Some(cc);
}
}
ret
}
/// Return the ASN the IP address is in, if this data is available.
pub fn lookup_asn(&self, ip: IpAddr) -> Option<u32> {
self.lookup_defn(ip)?.asn()
}
}
/// A (representation of a) host on the network which may have a known country code.
pub trait HasCountryCode {
/// Return the country code in which this server is most likely located.
///
/// This is usually implemented by simple GeoIP lookup on the addresses provided by `HasAddrs`.
/// It follows that the server might not actually be in the returned country, but this is a
/// halfway decent estimate for what other servers might guess the server's location to be
/// (and thus useful for e.g. getting around simple geo-blocks, or having webpages return
/// the correct localised versions).
///
/// Returning `None` signifies that no country code information is available. (Conflicting
/// GeoIP lookup results might also cause `None` to be returned.)
fn country_code(&self) -> Option<CountryCode>;
}
#[cfg(test)]
mod test {
// @@ begin test lint list maintained by maint/add_warning @@
#![allow(clippy::bool_assert_comparison)]
#![allow(clippy::clone_on_copy)]
#![allow(clippy::dbg_macro)]
#![allow(clippy::mixed_attributes_style)]
#![allow(clippy::print_stderr)]
#![allow(clippy::print_stdout)]
#![allow(clippy::single_char_pattern)]
#![allow(clippy::unwrap_used)]
#![allow(clippy::unchecked_duration_subtraction)]
#![allow(clippy::useless_vec)]
#![allow(clippy::needless_pass_by_value)]
//! <!-- @@ end test lint list maintained by maint/add_warning @@ -->
use super::*;
use std::net::Ipv4Addr;
// NOTE(eta): this test takes a whole 1.6 seconds in *non-release* mode
#[test]
#[cfg(feature = "embedded-db")]
fn embedded_db() {
let db = GeoipDb::new_embedded();
assert_eq!(
db.lookup_country_code(Ipv4Addr::new(8, 8, 8, 8).into())
.map(|x| x.as_ref()),
Some("US")
);
assert_eq!(
db.lookup_country_code("2001:4860:4860::8888".parse().unwrap())
.map(|x| x.as_ref()),
Some("US")
);
}
#[test]
fn basic_lookups() {
let src_v4 = r#"
16909056,16909311,GB
"#;
let src_v6 = r#"
fe80::,fe81::,US
dead:beef::,dead:ffff::,??
"#;
let db = GeoipDb::new_from_legacy_format(src_v4, src_v6).unwrap();
assert_eq!(
db.lookup_country_code(Ipv4Addr::new(1, 2, 3, 4).into())
.map(|x| x.as_ref()),
Some("GB")
);
assert_eq!(
db.lookup_country_code(Ipv4Addr::new(1, 1, 1, 1).into()),
None
);
assert_eq!(
db.lookup_country_code("fe80::dead:beef".parse().unwrap())
.map(|x| x.as_ref()),
Some("US")
);
assert_eq!(
db.lookup_country_code("fe81::dead:beef".parse().unwrap()),
None
);
assert_eq!(
db.lookup_country_code("dead:beef::1".parse().unwrap()),
None
);
}
#[test]
fn cc_parse() -> Result<(), Error> {
// real countries.
assert_eq!(CountryCode::from_str("us")?, CountryCode::from_str("US")?);
assert_eq!(CountryCode::from_str("UY")?, CountryCode::from_str("UY")?);
// not real as of this writing, but still representable.
assert_eq!(CountryCode::from_str("A7")?, CountryCode::from_str("a7")?);
assert_eq!(CountryCode::from_str("xz")?, CountryCode::from_str("xz")?);
// Can't convert to two bytes.
assert!(matches!(
CountryCode::from_str("z"),
Err(Error::BadCountryCode(_))
));
assert!(matches!(
CountryCode::from_str("🐻❄️"),
Err(Error::BadCountryCode(_))
));
assert!(matches!(
CountryCode::from_str("Sheboygan"),
Err(Error::BadCountryCode(_))
));
// Can convert to two bytes, but still not printable ascii
assert!(matches!(
CountryCode::from_str("\r\n"),
Err(Error::BadCountryCode(_))
));
assert!(matches!(
CountryCode::from_str("\0\0"),
Err(Error::BadCountryCode(_))
));
assert!(matches!(
CountryCode::from_str("¡"),
Err(Error::BadCountryCode(_))
));
// Not a country.
assert!(matches!(
CountryCode::from_str("??"),
Err(Error::NowhereNotSupported)
));
Ok(())
}
#[test]
fn opt_cc_parse() -> Result<(), Error> {
assert_eq!(
CountryCode::from_str("br")?,
OptionCc::from_str("BR")?.0.unwrap()
);
assert!(OptionCc::from_str("??")?.0.is_none());
Ok(())
}
}