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
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
//! Wrappers for `tokio-proto`
//!
//! This module contains wrappers for protocols defined by the `tokio-proto`
//! crate. These wrappers will all attempt to negotiate a TLS connection first
//! and then delegate all further protocol information to the protocol
//! specified.
//!
//! This module requires the `tokio-proto` feature to be enabled.

// TODO: change Read + Write in this file to `AsyncRead + AsyncWrite`

#![cfg(feature = "tokio-proto")]

extern crate tokio_proto;

use std::io::{self, Read, Write};
use std::sync::Arc;

use futures::{Future, IntoFuture, Poll};
use native_tls::{TlsAcceptor, TlsConnector};
use self::tokio_proto::multiplex;
use self::tokio_proto::pipeline;
use self::tokio_proto::streaming;

use {TlsStream, TlsAcceptorExt, TlsConnectorExt, AcceptAsync, ConnectAsync};

/// TLS server protocol wrapper.
///
/// This structure is a wrapper for other implementations of `ServerProto` in
/// the `tokio-proto` crate. This structure will negotiate a TLS connection
/// first and then delegate all further operations to the `ServerProto`
/// implementation for the underlying type.
pub struct Server<T> {
    inner: Arc<T>,
    acceptor: TlsAcceptor,
}

impl<T> Server<T> {
    /// Constructs a new TLS protocol which will delegate to the underlying
    /// `protocol` specified.
    ///
    /// The `acceptor` provided will be used to accept TLS connections. All new
    /// connections will go through the TLS acceptor first and then further I/O
    /// will go through the negotiated TLS stream through the `protocol`
    /// specified.
    pub fn new(protocol: T, acceptor: TlsAcceptor) -> Server<T> {
        Server {
            inner: Arc::new(protocol),
            acceptor: acceptor,
        }
    }
}

/// Future returned from `bind_transport` in the `ServerProto` implementation.
pub struct ServerPipelineBind<T, I>
    where T: pipeline::ServerProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    state: PipelineState<T, I>,
}

enum PipelineState<T, I>
    where T: pipeline::ServerProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    First(AcceptAsync<I>, Arc<T>),
    Next(<T::BindTransport as IntoFuture>::Future),
}

impl<T, I> pipeline::ServerProto<I> for Server<T>
    where T: pipeline::ServerProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    type Request = T::Request;
    type Response = T::Response;
    type Transport = T::Transport;
    type BindTransport = ServerPipelineBind<T, I>;

    fn bind_transport(&self, io: I) -> Self::BindTransport {
        let proto = self.inner.clone();

        ServerPipelineBind {
            state: PipelineState::First(self.acceptor.accept_async(io), proto),
        }
    }
}

impl<T, I> Future for ServerPipelineBind<T, I>
    where T: pipeline::ServerProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    type Item = T::Transport;
    type Error = io::Error;

    fn poll(&mut self) -> Poll<T::Transport, io::Error> {
        loop {
            let next = match self.state {
                PipelineState::First(ref mut a, ref state) => {
                    let res = a.poll().map_err(|e| {
                        io::Error::new(io::ErrorKind::Other, e)
                    });
                    state.bind_transport(try_ready!(res))
                }
                PipelineState::Next(ref mut b) => return b.poll(),
            };
            self.state = PipelineState::Next(next.into_future());
        }
    }
}

/// Future returned from `bind_transport` in the `ServerProto` implementation.
pub struct ServerMultiplexBind<T, I>
    where T: multiplex::ServerProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    state: MultiplexState<T, I>,
}

enum MultiplexState<T, I>
    where T: multiplex::ServerProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    First(AcceptAsync<I>, Arc<T>),
    Next(<T::BindTransport as IntoFuture>::Future),
}

impl<T, I> multiplex::ServerProto<I> for Server<T>
    where T: multiplex::ServerProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    type Request = T::Request;
    type Response = T::Response;
    type Transport = T::Transport;
    type BindTransport = ServerMultiplexBind<T, I>;

    fn bind_transport(&self, io: I) -> Self::BindTransport {
        let proto = self.inner.clone();

        ServerMultiplexBind {
            state: MultiplexState::First(self.acceptor.accept_async(io), proto),
        }
    }
}

impl<T, I> Future for ServerMultiplexBind<T, I>
    where T: multiplex::ServerProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    type Item = T::Transport;
    type Error = io::Error;

    fn poll(&mut self) -> Poll<T::Transport, io::Error> {
        loop {
            let next = match self.state {
                MultiplexState::First(ref mut a, ref state) => {
                    let res = a.poll().map_err(|e| {
                        io::Error::new(io::ErrorKind::Other, e)
                    });
                    state.bind_transport(try_ready!(res))
                }
                MultiplexState::Next(ref mut b) => return b.poll(),
            };
            self.state = MultiplexState::Next(next.into_future());
        }
    }
}

/// Future returned from `bind_transport` in the `ServerProto` implementation.
pub struct ServerStreamingPipelineBind<T, I>
    where T: streaming::pipeline::ServerProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    state: StreamingPipelineState<T, I>,
}

enum StreamingPipelineState<T, I>
    where T: streaming::pipeline::ServerProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    First(AcceptAsync<I>, Arc<T>),
    Next(<T::BindTransport as IntoFuture>::Future),
}

impl<T, I> streaming::pipeline::ServerProto<I> for Server<T>
    where T: streaming::pipeline::ServerProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    type Request = T::Request;
    type RequestBody = T::RequestBody;
    type Response = T::Response;
    type ResponseBody = T::ResponseBody;
    type Error = T::Error;
    type Transport = T::Transport;
    type BindTransport = ServerStreamingPipelineBind<T, I>;

    fn bind_transport(&self, io: I) -> Self::BindTransport {
        let proto = self.inner.clone();

        ServerStreamingPipelineBind {
            state: StreamingPipelineState::First(self.acceptor.accept_async(io), proto),
        }
    }
}

impl<T, I> Future for ServerStreamingPipelineBind<T, I>
    where T: streaming::pipeline::ServerProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    type Item = T::Transport;
    type Error = io::Error;

    fn poll(&mut self) -> Poll<T::Transport, io::Error> {
        loop {
            let next = match self.state {
                StreamingPipelineState::First(ref mut a, ref state) => {
                    let res = a.poll().map_err(|e| {
                        io::Error::new(io::ErrorKind::Other, e)
                    });
                    state.bind_transport(try_ready!(res))
                }
                StreamingPipelineState::Next(ref mut b) => return b.poll(),
            };
            self.state = StreamingPipelineState::Next(next.into_future());
        }
    }
}

/// Future returned from `bind_transport` in the `ServerProto` implementation.
pub struct ServerStreamingMultiplexBind<T, I>
    where T: streaming::multiplex::ServerProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    state: StreamingMultiplexState<T, I>,
}

enum StreamingMultiplexState<T, I>
    where T: streaming::multiplex::ServerProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    First(AcceptAsync<I>, Arc<T>),
    Next(<T::BindTransport as IntoFuture>::Future),
}

impl<T, I> streaming::multiplex::ServerProto<I> for Server<T>
    where T: streaming::multiplex::ServerProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    type Request = T::Request;
    type RequestBody = T::RequestBody;
    type Response = T::Response;
    type ResponseBody = T::ResponseBody;
    type Error = T::Error;
    type Transport = T::Transport;
    type BindTransport = ServerStreamingMultiplexBind<T, I>;

    fn bind_transport(&self, io: I) -> Self::BindTransport {
        let proto = self.inner.clone();

        ServerStreamingMultiplexBind {
            state: StreamingMultiplexState::First(self.acceptor.accept_async(io), proto),
        }
    }
}

impl<T, I> Future for ServerStreamingMultiplexBind<T, I>
    where T: streaming::multiplex::ServerProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    type Item = T::Transport;
    type Error = io::Error;

    fn poll(&mut self) -> Poll<T::Transport, io::Error> {
        loop {
            let next = match self.state {
                StreamingMultiplexState::First(ref mut a, ref state) => {
                    let res = a.poll().map_err(|e| {
                        io::Error::new(io::ErrorKind::Other, e)
                    });
                    state.bind_transport(try_ready!(res))
                }
                StreamingMultiplexState::Next(ref mut b) => return b.poll(),
            };
            self.state = StreamingMultiplexState::Next(next.into_future());
        }
    }
}

/// TLS client protocol wrapper.
///
/// This structure is a wrapper for other implementations of `ClientProto` in
/// the `tokio-proto` crate. This structure will negotiate a TLS connection
/// first and then delegate all further operations to the `ClientProto`
/// implementation for the underlying type.
pub struct Client<T> {
    inner: Arc<T>,
    connector: TlsConnector,
    hostname: String,
}

impl<T> Client<T> {
    /// Constructs a new TLS protocol which will delegate to the underlying
    /// `protocol` specified.
    ///
    /// The `connector` provided will be used to configure the TLS connection. Further I/O
    /// will go through the negotiated TLS stream through the `protocol` specified.
    pub fn new(protocol: T,
               connector: TlsConnector,
               hostname: &str) -> Client<T> {
        Client {
            inner: Arc::new(protocol),
            connector: connector,
            hostname: hostname.to_string(),
        }
    }
}

/// Future returned from `bind_transport` in the `ClientProto` implementation.
pub struct ClientPipelineBind<T, I>
    where T: pipeline::ClientProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    state: ClientPipelineState<T, I>,
}

enum ClientPipelineState<T, I>
    where T: pipeline::ClientProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    First(ConnectAsync<I>, Arc<T>),
    Next(<T::BindTransport as IntoFuture>::Future),
}

impl<T, I> pipeline::ClientProto<I> for Client<T>
    where T: pipeline::ClientProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    type Request = T::Request;
    type Response = T::Response;
    type Transport = T::Transport;
    type BindTransport = ClientPipelineBind<T, I>;

    fn bind_transport(&self, io: I) -> Self::BindTransport {
        let proto = self.inner.clone();
        let io = self.connector.connect_async(&self.hostname, io);

        ClientPipelineBind {
            state: ClientPipelineState::First(io, proto),
        }
    }
}

impl<T, I> Future for ClientPipelineBind<T, I>
    where T: pipeline::ClientProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    type Item = T::Transport;
    type Error = io::Error;

    fn poll(&mut self) -> Poll<T::Transport, io::Error> {
        loop {
            let next = match self.state {
                ClientPipelineState::First(ref mut a, ref state) => {
                    let res = a.poll().map_err(|e| {
                        io::Error::new(io::ErrorKind::Other, e)
                    });
                    state.bind_transport(try_ready!(res))
                }
                ClientPipelineState::Next(ref mut b) => return b.poll(),
            };
            self.state = ClientPipelineState::Next(next.into_future());
        }
    }
}

/// Future returned from `bind_transport` in the `ClientProto` implementation.
pub struct ClientMultiplexBind<T, I>
    where T: multiplex::ClientProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    state: ClientMultiplexState<T, I>,
}

enum ClientMultiplexState<T, I>
    where T: multiplex::ClientProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    First(ConnectAsync<I>, Arc<T>),
    Next(<T::BindTransport as IntoFuture>::Future),
}

impl<T, I> multiplex::ClientProto<I> for Client<T>
    where T: multiplex::ClientProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    type Request = T::Request;
    type Response = T::Response;
    type Transport = T::Transport;
    type BindTransport = ClientMultiplexBind<T, I>;

    fn bind_transport(&self, io: I) -> Self::BindTransport {
        let proto = self.inner.clone();
        let io = self.connector.connect_async(&self.hostname, io);

        ClientMultiplexBind {
            state: ClientMultiplexState::First(io, proto),
        }
    }
}

impl<T, I> Future for ClientMultiplexBind<T, I>
    where T: multiplex::ClientProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    type Item = T::Transport;
    type Error = io::Error;

    fn poll(&mut self) -> Poll<T::Transport, io::Error> {
        loop {
            let next = match self.state {
                ClientMultiplexState::First(ref mut a, ref state) => {
                    let res = a.poll().map_err(|e| {
                        io::Error::new(io::ErrorKind::Other, e)
                    });
                    state.bind_transport(try_ready!(res))
                }
                ClientMultiplexState::Next(ref mut b) => return b.poll(),
            };
            self.state = ClientMultiplexState::Next(next.into_future());
        }
    }
}

/// Future returned from `bind_transport` in the `ClientProto` implementation.
pub struct ClientStreamingPipelineBind<T, I>
    where T: streaming::pipeline::ClientProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    state: ClientStreamingPipelineState<T, I>,
}

enum ClientStreamingPipelineState<T, I>
    where T: streaming::pipeline::ClientProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    First(ConnectAsync<I>, Arc<T>),
    Next(<T::BindTransport as IntoFuture>::Future),
}

impl<T, I> streaming::pipeline::ClientProto<I> for Client<T>
    where T: streaming::pipeline::ClientProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    type Request = T::Request;
    type RequestBody = T::RequestBody;
    type Response = T::Response;
    type ResponseBody = T::ResponseBody;
    type Error = T::Error;
    type Transport = T::Transport;
    type BindTransport = ClientStreamingPipelineBind<T, I>;

    fn bind_transport(&self, io: I) -> Self::BindTransport {
        let proto = self.inner.clone();
        let io = self.connector.connect_async(&self.hostname, io);

        ClientStreamingPipelineBind {
            state: ClientStreamingPipelineState::First(io, proto),
        }
    }
}

impl<T, I> Future for ClientStreamingPipelineBind<T, I>
    where T: streaming::pipeline::ClientProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    type Item = T::Transport;
    type Error = io::Error;

    fn poll(&mut self) -> Poll<T::Transport, io::Error> {
        loop {
            let next = match self.state {
                ClientStreamingPipelineState::First(ref mut a, ref state) => {
                    let res = a.poll().map_err(|e| {
                        io::Error::new(io::ErrorKind::Other, e)
                    });
                    state.bind_transport(try_ready!(res))
                }
                ClientStreamingPipelineState::Next(ref mut b) => return b.poll(),
            };
            self.state = ClientStreamingPipelineState::Next(next.into_future());
        }
    }
}

/// Future returned from `bind_transport` in the `ClientProto` implementation.
pub struct ClientStreamingMultiplexBind<T, I>
    where T: streaming::multiplex::ClientProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    state: ClientStreamingMultiplexState<T, I>,
}

enum ClientStreamingMultiplexState<T, I>
    where T: streaming::multiplex::ClientProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    First(ConnectAsync<I>, Arc<T>),
    Next(<T::BindTransport as IntoFuture>::Future),
}

impl<T, I> streaming::multiplex::ClientProto<I> for Client<T>
    where T: streaming::multiplex::ClientProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    type Request = T::Request;
    type RequestBody = T::RequestBody;
    type Response = T::Response;
    type ResponseBody = T::ResponseBody;
    type Error = T::Error;
    type Transport = T::Transport;
    type BindTransport = ClientStreamingMultiplexBind<T, I>;

    fn bind_transport(&self, io: I) -> Self::BindTransport {
        let proto = self.inner.clone();
        let io = self.connector.connect_async(&self.hostname, io);

        ClientStreamingMultiplexBind {
            state: ClientStreamingMultiplexState::First(io, proto),
        }
    }
}

impl<T, I> Future for ClientStreamingMultiplexBind<T, I>
    where T: streaming::multiplex::ClientProto<TlsStream<I>>,
          I: Read + Write + 'static,
{
    type Item = T::Transport;
    type Error = io::Error;

    fn poll(&mut self) -> Poll<T::Transport, io::Error> {
        loop {
            let next = match self.state {
                ClientStreamingMultiplexState::First(ref mut a, ref state) => {
                    let res = a.poll().map_err(|e| {
                        io::Error::new(io::ErrorKind::Other, e)
                    });
                    state.bind_transport(try_ready!(res))
                }
                ClientStreamingMultiplexState::Next(ref mut b) => return b.poll(),
            };
            self.state = ClientStreamingMultiplexState::Next(next.into_future());
        }
    }
}