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
use socket2::SockAddr;
use std::ffi::CStr;
use std::io;
use std::net::SocketAddr;
use std::str;

#[cfg(unix)]
use libc::{c_char, getnameinfo as c_getnameinfo};

#[cfg(windows)]
use winapi::c_char;
#[cfg(windows)]
use ws2_32::getnameinfo as c_getnameinfo;

use err::lookup_errno;

/// Retrieve the name for a given IP and Service. Acts as a thin wrapper around
/// the libc getnameinfo.
///
/// Returned names may be encoded in puny code for Interational Domain Names
/// (UTF8 DNS names). You can use the `idna` crate to decode these to their
/// actual UTF8 representation.
///
/// Retrieving names or services that contain non-UTF8 locales is currently not
/// supported (as String is returned). Raise an issue if this is a concern for
/// you.
pub fn getnameinfo(sock: &SocketAddr, flags: i32) -> io::Result<(String, String)> {
  // Convert the socket into our type, so we can get a sockaddr_in{,6} ptr.
  let sock: SockAddr = (*sock).into();
  let c_sock = sock.as_ptr();
  let c_sock_len = sock.len();

  // Hard code maximums, as they aren't defined in libc/winapi.

  // Allocate buffers for name and service strings.
  let mut c_host = [0 as c_char; 1024 as usize];
  // No NI_MAXSERV, so use suggested value.
  let mut c_service = [0 as c_char; 32 as usize];

  // Prime windows.
  #[cfg(windows)]
  ::init_winsock();

  unsafe {
    lookup_errno(
      c_getnameinfo(
        c_sock, c_sock_len,
        c_host.as_mut_ptr(),
        c_host.len() as u32,
        c_service.as_mut_ptr(),
        c_service.len() as u32,
        flags
      )
    )?
  }

  let host = unsafe {
    CStr::from_ptr(c_host.as_ptr())
  };
  let service = unsafe {
    CStr::from_ptr(c_service.as_ptr())
  };

  let host = match str::from_utf8(host.to_bytes()) {
    Ok(name) => Ok(name.to_owned()),
    Err(_) => Err(io::Error::new(io::ErrorKind::Other,
                   "Host UTF8 parsing failed"))
  }?;

  let service = match str::from_utf8(service.to_bytes()) {
    Ok(service) => Ok(service.to_owned()),
    Err(_) => Err(io::Error::new(io::ErrorKind::Other,
                   "Service UTF8 parsing failed"))
  }?;

  Ok((host, service))
}

#[test]
fn test_getnameinfo() {
   use std::net::{IpAddr, SocketAddr};

   let ip: IpAddr = "127.0.0.1".parse().unwrap();
   let port = 22;
   let socket: SocketAddr = (ip, port).into();

   let (name, service) = match getnameinfo(&socket, 0) {
     Ok((n, s)) => (n, s),
     Err(e) => panic!("Failed to lookup socket {:?}", e),
   };

   assert_eq!(name, "localhost");
   assert_eq!(service, "ssh");
}