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
// Copyright 2015-2016 Benjamin Fry <benjaminfry@me.com>
//
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
// http://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.

use std;
use std::net::{IpAddr, Ipv4Addr, Ipv6Addr, SocketAddr};
use std::io;

use futures::{Async, Future, Poll};
use futures::stream::{Fuse, Peekable, Stream};
use futures::task::park;
use rand::Rng;
use rand;
use tokio_core;
use tokio_core::channel::{channel, Sender, Receiver};
use tokio_core::reactor::{Handle};

pub type UdpClientStreamHandle = Sender<Vec<u8>>;

#[must_use = "futures do nothing unless polled"]
pub struct UdpClientStream {
  // TODO: this shouldn't be stored, it's only necessary for the client to setup Ipv4 or Ipv6
  //   binding
  // destination address for all requests
  name_server: SocketAddr,
  //
  socket: tokio_core::net::UdpSocket,
  outbound_messages: Peekable<Fuse<Receiver<Vec<u8>>>>,
}

lazy_static!{
  static ref IPV4_ZERO: Ipv4Addr = Ipv4Addr::new(0,0,0,0);
  static ref IPV6_ZERO: Ipv6Addr = Ipv6Addr::new(0,0,0,0,0,0,0,0);
}

impl UdpClientStream {
  /// it is expected that the resolver wrapper will be responsible for creating and managing
  ///  new UdpClients such that each new client would have a random port (reduce chance of cache
  ///  poisoning)
  pub fn new(name_server: SocketAddr, loop_handle: Handle) -> (Box<Future<Item=UdpClientStream, Error=io::Error>>, UdpClientStreamHandle) {
    let (message_sender, outbound_messages) = channel(&loop_handle).expect("somethings wrong with the event loop");

    // TODO: allow the bind address to be specified...
    // constructs a future for getting the next randomly bound port to a UdpSocket
    let next_socket = Self::next_bound_local_address(&name_server);

    // This set of futures collapses the next udp socket into a stream which can be used for
    //  sending and receiving udp packets.
    let stream: Box<Future<Item=UdpClientStream, Error=io::Error>> = Box::new(next_socket
      .map(move |socket| { tokio_core::net::UdpSocket::from_socket(socket, &loop_handle).expect("something wrong with the handle?") })
      .map(move |socket| {
        UdpClientStream {
          name_server: name_server,
          socket: socket,
          outbound_messages: outbound_messages.fuse().peekable(),
        }
      }));

    (stream, message_sender)
  }

  /// Creates a future for randomly binding to a local socket address for client connections.
  fn next_bound_local_address(name_server: &SocketAddr) -> NextRandomUdpSocket {
    let zero_addr: IpAddr = match *name_server {
      SocketAddr::V4(..) => IpAddr::V4(*IPV4_ZERO),
      SocketAddr::V6(..) => IpAddr::V6(*IPV6_ZERO),
    };

    NextRandomUdpSocket{ bind_address: zero_addr }
  }
}

impl Stream for UdpClientStream {
  type Item = Vec<u8>;
  type Error = io::Error;

  fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error> {
    // this will not accept incoming data while there is data to send
    //  makes this self throttling.
    loop {
      // first try to send
      match try!(self.outbound_messages.peek()) {
        Async::Ready(Some(buffer)) => {
          match self.socket.poll_write() {
            Async::NotReady => {
              return Ok(Async::NotReady)
            },
            Async::Ready(_) => {
              // will return if the socket will block
              try_nb!(self.socket.send_to(buffer, &self.name_server));
            },
          }
        },
        // all others will drop through to the poll()
        _ => (),
      }

      // now pop the request and check if we should break or continue.
      match try!(self.outbound_messages.poll()) {
        // already handled above, here to make sure the poll() pops the next message
        Async::Ready(Some(_)) => (),
        // now we get to drop through to the receives...
        // TODO: should we also return None if there are no more messages to send?
        Async::NotReady | Async::Ready(None) => break,
      }
    }

    // For QoS, this will only accept one message and output that
    // recieve all inbound messages

    // TODO: this should match edns settings
    let mut buf = [0u8; 2048];

    // TODO: should we drop this packet if it's not from the same src as dest?
    let (len, src) = try_nb!(self.socket.recv_from(&mut buf));
    if src != self.name_server {
      debug!("{} does not match name_server: {}", src, self.name_server)
    }

    Ok(Async::Ready(Some(buf.iter().take(len).cloned().collect())))
  }
}

#[must_use = "futures do nothing unless polled"]
struct NextRandomUdpSocket {
  bind_address: IpAddr,
}

impl Future for NextRandomUdpSocket {
  type Item = std::net::UdpSocket;
  type Error = io::Error;

  /// polls until there is an available next random UDP port.
  ///
  /// if there is no port available after 10 attempts, returns NotReady
  fn poll(&mut self) -> Poll<Self::Item, Self::Error> {
    let mut rand = rand::thread_rng();

    for attempt in 0..10 {
      let zero_addr = SocketAddr::new(self.bind_address, rand.gen_range(1025_u16, u16::max_value()));

      match std::net::UdpSocket::bind(&zero_addr) {
        Ok(socket) => {
          return Ok(Async::Ready(socket))
        },
        Err(err) => debug!("unable to bind port, attempt: {}: {}", attempt, err),
      }
    }

    warn!("could not get next random port, delaying");

    park().unpark();
    // returning NotReady here, perhaps the next poll there will be some more socket available.
    Ok(Async::NotReady)
  }
}

#[test]
fn test_udp_client_stream_ipv4() {
  udp_client_stream_test(IpAddr::V4(Ipv4Addr::new(127,0,0,1)))
}

#[test]
#[cfg(not(target_os = "linux"))] // ignored until Travis-CI fixes IPv6
fn test_udp_client_stream_ipv6() {
  udp_client_stream_test(IpAddr::V6(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1)))
}

#[cfg(test)]
fn udp_client_stream_test(server_addr: IpAddr) {
  use tokio_core::reactor::Core;

  use log::LogLevel;
  use ::logger::TrustDnsLogger;

  TrustDnsLogger::enable_logging(LogLevel::Debug);

  use std;
  let succeeded = std::sync::Arc::new(std::sync::atomic::AtomicBool::new(false));
  let succeeded_clone = succeeded.clone();
  std::thread::Builder::new().name("thread_killer".to_string()).spawn(move || {
    let succeeded = succeeded_clone.clone();
    for _ in 0..15 {
      std::thread::sleep(std::time::Duration::from_secs(1));
      if succeeded.load(std::sync::atomic::Ordering::Relaxed) { return }
    }

    panic!("timeout");
  }).unwrap();

  let server = std::net::UdpSocket::bind(SocketAddr::new(server_addr, 0)).unwrap();
  server.set_read_timeout(Some(std::time::Duration::from_secs(5))).unwrap(); // should recieve something within 5 seconds...
  server.set_write_timeout(Some(std::time::Duration::from_secs(5))).unwrap(); // should recieve something within 5 seconds...
  let server_addr = server.local_addr().unwrap();

  let test_bytes: &'static [u8; 8] = b"DEADBEEF";
  let send_recv_times = 4;

  // an in and out server
  let server_handle = std::thread::Builder::new().name("test_udp_client_stream_ipv4:server".to_string()).spawn(move || {
    let mut buffer = [0_u8; 512];

    for _ in 0..send_recv_times {
      // wait for some bytes...
      let (len, addr) = server.recv_from(&mut buffer).expect("receive failed");

      assert_eq!(&buffer[0..len], test_bytes);

      // bounce them right back...
      assert_eq!(server.send_to(&buffer[0..len], addr).expect("send failed"), len);
    }
  }).unwrap();

  // setup the client, which is going to run on the testing thread...
  let mut io_loop = Core::new().unwrap();

  // the tests should run within 5 seconds... right?
  // TODO: add timeout here, so that test never hangs...
  // let timeout = Timeout::new(Duration::from_secs(5), &io_loop.handle());
  let (stream, sender) = UdpClientStream::new(server_addr, io_loop.handle());
  let mut stream: UdpClientStream = io_loop.run(stream).ok().unwrap();

  for _ in 0..send_recv_times {
    // test once
    sender.send(test_bytes.to_vec()).unwrap();
    let (buffer, stream_tmp) = io_loop.run(stream.into_future()).ok().unwrap();
    stream = stream_tmp;
    assert_eq!(&buffer.expect("no buffer received"), test_bytes);
  }

  succeeded.store(true, std::sync::atomic::Ordering::Relaxed);
  server_handle.join().expect("server thread failed");
}