consomme/
dns_unix.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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

use resolv_conf::ScopedIp;
use smoltcp::wire::Ipv4Address;
use thiserror::Error;

#[derive(Debug, Error)]
pub enum Error {
    #[error("failing reading resolv.conf")]
    Io(#[from] std::io::Error),
    #[error("failing parsing resolv.conf")]
    Parse(#[from] resolv_conf::ParseError),
}

pub fn nameservers() -> Result<Vec<Ipv4Address>, Error> {
    let contents = std::fs::read("/etc/resolv.conf")?;
    let config = resolv_conf::Config::parse(contents)?;
    Ok(config
        .nameservers
        .iter()
        .filter_map(|ns| match ns {
            ScopedIp::V4(addr) => Some(Ipv4Address::from(*addr)),
            ScopedIp::V6(_, _) => None,
        })
        .collect())
}