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
use libc as c;
use std::ffi::{CStr, CString};
use std::io;
use std::mem;
use std::net::SocketAddr;
use std::ptr;
use addr::MySocketAddr;
use err::lookup_errno;
use types::*;
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct AddrInfoHints {
pub socktype: SockType,
pub protocol: Protocol,
pub address: AddrFamily,
pub flags: u32,
}
impl AddrInfoHints {
unsafe fn as_addrinfo(&self) -> c::addrinfo {
let mut addrinfo: c::addrinfo = mem::zeroed();
addrinfo.ai_socktype = self.socktype.into();
addrinfo.ai_protocol = self.protocol.into();
addrinfo.ai_family = self.address.into();
addrinfo.ai_flags = self.flags as c::c_int;
addrinfo
}
}
impl Default for AddrInfoHints {
fn default() -> Self {
AddrInfoHints {
socktype: SockType::Unspec,
protocol: Protocol::IP,
address: AddrFamily::Unspec,
flags: 0,
}
}
}
#[derive(Clone, Debug, PartialEq)]
pub struct AddrInfo {
pub socktype: SockType,
pub protocol: Protocol,
pub address: AddrFamily,
pub sockaddr: SocketAddr,
pub canonname: Option<String>,
pub flags: u32,
}
impl AddrInfo {
unsafe fn from_ptr(a: *mut c::addrinfo) -> io::Result<Self> {
if a.is_null() {
return Err(io::Error::new(io::ErrorKind::Other, "Supplied pointer is null."))?;
}
let addrinfo = *a;
Ok(AddrInfo {
socktype: match addrinfo.ai_socktype.into() {
SockType::_Other(_) =>
return Err(io::Error::new(
io::ErrorKind::Other,
format!("Could not find socket type for: {}", addrinfo.ai_socktype)
)),
a @ _ => a,
},
protocol: match addrinfo.ai_protocol.into() {
Protocol::_Other(_) =>
return Err(io::Error::new(
io::ErrorKind::Other,
format!("Could not find protocol for: {}", addrinfo.ai_protocol)
)),
a @ _ => a,
},
address: match addrinfo.ai_family.into() {
AddrFamily::_Other(_) =>
return Err(io::Error::new(
io::ErrorKind::Other,
format!("Could not find address for: {}", addrinfo.ai_family)
)),
a @ _ => a,
},
sockaddr: MySocketAddr::from_inner(addrinfo.ai_addr, addrinfo.ai_addrlen)?.into(),
canonname: addrinfo.ai_canonname.as_ref().map(|s|
CStr::from_ptr(s).to_str().unwrap().to_owned()
),
flags: 0,
})
}
}
pub struct AddrInfoIter {
orig: *mut c::addrinfo,
cur: *mut c::addrinfo,
}
impl Iterator for AddrInfoIter {
type Item = io::Result<AddrInfo>;
fn next(&mut self) -> Option<Self::Item> {
unsafe {
if self.cur.is_null() { return None; }
let ret = AddrInfo::from_ptr(self.cur);
self.cur = (*self.cur).ai_next as *mut c::addrinfo;
Some(ret)
}
}
}
unsafe impl Sync for AddrInfoIter {}
unsafe impl Send for AddrInfoIter {}
impl Drop for AddrInfoIter {
fn drop(&mut self) {
unsafe { c::freeaddrinfo(self.orig) }
}
}
pub fn getaddrinfo(host: Option<&str>, service: Option<&str>, hints: Option<AddrInfoHints>)
-> io::Result<AddrInfoIter> {
if host.is_none() && service.is_none() {
return Err(io::Error::new(io::ErrorKind::Other, "Either host or service must be supplied"));
}
let host = match host {
Some(host_str) => Some(CString::new(host_str)?),
None => None
};
let c_host = host.as_ref().map_or(ptr::null(), |s| s.as_ptr());
let service = match service {
Some(service_str) => Some(CString::new(service_str)?),
None => None
};
let c_service = service.as_ref().map_or(ptr::null(), |s| s.as_ptr());
let c_hints = unsafe {
match hints {
Some(hints) => hints.as_addrinfo(),
None => mem::zeroed(),
}
};
let mut res = ptr::null_mut();
unsafe {
match lookup_errno(c::getaddrinfo(c_host, c_service, &c_hints, &mut res)) {
Ok(_) => {
Ok(AddrInfoIter { orig: res, cur: res })
},
#[cfg(unix)]
Err(e) => {
c::res_init();
Err(e)
},
#[cfg(not(unix))]
Err(e) => Err(e),
}
}
}
#[test]
fn test_getaddrinfo() {
let hints = AddrInfoHints {
flags: c::AI_CANONNAME as u32,
..AddrInfoHints::default()
};
for entry in getaddrinfo(Some("localhost"), Some("ssh"), Some(hints)).unwrap() {
if entry.is_err() {
println!(":P {:?}", entry);
continue;
}
println!("{:?}", entry);
}
}