rust-sctp 0.0.6

High level SCTP networking library
Documentation
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
//! This crate provides high level SCTP networking.
//! Currently it only supports basic SCTP features like multi-homing
//! in one-to-one and one-to-many associations.
//! SCTP notifications and working directly on associations is not supported yet
//! but is in the TODO list.

extern crate libc;
extern crate sctp_sys;
extern crate winapi;
extern crate ws2_32;

mod sctpsock;
use sctp_sys::{SOCK_SEQPACKET, SOL_SCTP};
use sctpsock::{BindOp, RawSocketAddr, SctpSocket};

use std::io::prelude::*;
use std::io::{Error, ErrorKind, Result};
use std::net::{Shutdown, SocketAddr, ToSocketAddrs};

#[cfg(target_os = "linux")]
use std::os::unix::io::{AsRawFd, FromRawFd, RawFd};

#[cfg(target_os = "linux")]
pub mod mio_unix;

#[cfg(target_os = "windows")]
use std::os::windows::io::{AsRawHandle, FromRawHandle, RawHandle};

#[cfg(target_os = "linux")]
use libc::{
    AF_INET, AF_INET6, SOCK_STREAM, SOL_SOCKET, SO_RCVBUF, SO_RCVTIMEO, SO_SNDBUF, SO_SNDTIMEO,
};
#[cfg(target_os = "windows")]
use winapi::{
    AF_INET, AF_INET6, SOCK_STREAM, SOL_SOCKET, SO_RCVBUF, SO_RCVTIMEO, SO_SNDBUF, SO_SNDTIMEO,
};

/// Socket direction
pub enum SoDirection {
    /// RCV direction
    Receive,
    /// SND direction
    Send,
}

impl SoDirection {
    fn buffer_opt(&self) -> libc::c_int {
        match *self {
            SoDirection::Receive => SO_RCVBUF,
            SoDirection::Send => SO_SNDBUF,
        }
    }

    fn timeout_opt(&self) -> libc::c_int {
        match *self {
            SoDirection::Receive => SO_RCVTIMEO,
            SoDirection::Send => SO_SNDTIMEO,
        }
    }
}

/// One-to-one SCTP connected stream which behaves like a TCP stream.
/// A `SctpStream` can be obtained either actively by connecting to a SCTP endpoint with the
/// `connect` constructor, or passively from a `SctpListener` which accepts new connections
pub struct SctpStream(SctpSocket);

impl SctpStream {
    /// Create a new stream by connecting it to a remote endpoint
    pub fn connect<A: ToSocketAddrs>(address: A) -> Result<SctpStream> {
        let raw_addr = SocketAddr::from_addr(&address)?;
        let sock = SctpSocket::new(raw_addr.family(), SOCK_STREAM)?;
        sock.connect(raw_addr)?;
        Ok(SctpStream(sock))
    }

    /// Create a new stream by connecting it to a remote endpoint having multiple addresses
    pub fn connectx<A: ToSocketAddrs>(addresses: &[A]) -> Result<SctpStream> {
        if addresses.is_empty() {
            return Err(Error::new(ErrorKind::InvalidInput, "No addresses given"));
        }
        let mut vec = Vec::with_capacity(addresses.len());
        let mut family = AF_INET;
        for address in addresses {
            let a = SocketAddr::from_addr(address)?;
            if a.family() == AF_INET6 {
                family = AF_INET6;
            }
            vec.push(a);
        }

        let sock = SctpSocket::new(family, SOCK_STREAM)?;
        sock.connectx(&vec)?;
        Ok(SctpStream(sock))
    }

    /// Send bytes on the specified SCTP stream. On success, returns the
    /// quantity of bytes read
    pub fn sendmsg(&self, msg: &[u8], stream: u16) -> Result<usize> {
        self.0.sendmsg::<SocketAddr>(msg, None, 0, stream, 0)
    }

    /// Send bytes on the specified SCTP stream. On success, returns the
    /// quantity of bytes read
    pub fn sendmsg_ppid(&self, msg: &[u8], ppid: u32, stream: u16) -> Result<usize> {
        self.0.sendmsg::<SocketAddr>(msg, None, ppid, stream, 0)
    }

    /// Read bytes. On success, return a tuple with the quantity of
    /// bytes received and the stream they were recived on
    pub fn recvmsg(&self, msg: &mut [u8]) -> Result<(usize, u16)> {
        let (size, stream, _) = self.0.recvmsg(msg)?;
        Ok((size, stream))
    }

    /// Return the list of local socket addresses for this stream
    pub fn local_addrs(&self) -> Result<Vec<SocketAddr>> {
        self.0.local_addrs(0)
    }

    /// Return the list of socket addresses for the peer this stream is connected to
    pub fn peer_addrs(&self) -> Result<Vec<SocketAddr>> {
        self.0.peer_addrs(0)
    }

    /// Shuts down the read, write, or both halves of this connection
    pub fn shutdown(&self, how: Shutdown) -> Result<()> {
        self.0.shutdown(how)
    }

    /// Set or unset SCTP_NODELAY option
    pub fn set_nodelay(&self, nodelay: bool) -> Result<()> {
        let val: libc::c_int = if nodelay { 1 } else { 0 };
        self.0.setsockopt(SOL_SCTP, sctp_sys::SCTP_NODELAY, &val)
    }

    /// Verify if SCTP_NODELAY option is activated for this socket
    pub fn has_nodelay(&self) -> Result<bool> {
        let val: libc::c_int = self.0.sctp_opt_info(sctp_sys::SCTP_NODELAY, 0)?;
        Ok(val == 1)
    }

    /// Set the socket buffer size for the direction specified by `dir`.
    /// Linux systems will double the provided size
    pub fn set_buffer_size(&self, dir: SoDirection, size: usize) -> Result<()> {
        self.0
            .setsockopt(SOL_SOCKET, dir.buffer_opt(), &(size as libc::c_int))
    }

    /// Get the socket buffer size for the direction specified by `dir`
    pub fn get_buffer_size(&self, dir: SoDirection) -> Result<usize> {
        let val: u32 = self.0.getsockopt(SOL_SOCKET, dir.buffer_opt())?;
        Ok(val as usize)
    }

    /// Set `timeout` in seconds for operation `dir` (either receive or send)
    pub fn set_timeout(&self, dir: SoDirection, timeout: i32) -> Result<()> {
        // Workaround: Use of long instead of libc::time_t which does not compile in windows x86_64
        let tval = libc::timeval {
            tv_sec: timeout as libc::c_long,
            tv_usec: 0,
        };
        self.0.setsockopt(SOL_SOCKET, dir.timeout_opt(), &tval)
    }

    /// Try to clone the SctpStream. On success, returns a new stream
    /// wrapping a new socket handler
    pub fn try_clone(&self) -> Result<SctpStream> {
        Ok(SctpStream(self.0.try_clone()?))
    }
}

impl Read for SctpStream {
    fn read(&mut self, buf: &mut [u8]) -> Result<usize> {
        self.0.recv(buf)
    }
}

impl Write for SctpStream {
    fn write(&mut self, buf: &[u8]) -> Result<usize> {
        self.0.send(buf)
    }

    fn flush(&mut self) -> Result<()> {
        Ok(())
    }
}

#[cfg(target_os = "windows")]
impl AsRawHandle for SctpStream {
    fn as_raw_handle(&self) -> RawHandle {
        return self.0.as_raw_handle();
    }
}

#[cfg(target_os = "windows")]
impl FromRawHandle for SctpStream {
    unsafe fn from_raw_handle(hdl: RawHandle) -> SctpStream {
        SctpStream(SctpSocket::from_raw_handle(hdl))
    }
}

#[cfg(target_os = "linux")]
impl AsRawFd for SctpStream {
    fn as_raw_fd(&self) -> RawFd {
        self.0.as_raw_fd()
    }
}

#[cfg(target_os = "linux")]
impl FromRawFd for SctpStream {
    unsafe fn from_raw_fd(fd: RawFd) -> SctpStream {
        SctpStream(SctpSocket::from_raw_fd(fd))
    }
}

/// One-to-many SCTP endpoint.
pub struct SctpEndpoint(SctpSocket);

impl SctpEndpoint {
    /// Create a one-to-many SCTP endpoint bound to a single address
    pub fn bind<A: ToSocketAddrs>(address: A) -> Result<SctpEndpoint> {
        let raw_addr = SocketAddr::from_addr(&address)?;
        let sock = SctpSocket::new(raw_addr.family(), SOCK_SEQPACKET)?;
        sock.bind(raw_addr)?;
        sock.listen(-1)?;
        Ok(SctpEndpoint(sock))
    }

    /// Create a one-to-many SCTP endpoint bound to a multiple addresses. Requires at least one address
    pub fn bindx<A: ToSocketAddrs>(addresses: &[A]) -> Result<SctpEndpoint> {
        if addresses.is_empty() {
            return Err(Error::new(ErrorKind::InvalidInput, "No addresses given"));
        }
        let mut vec = Vec::with_capacity(addresses.len());
        let mut family = AF_INET;
        for address in addresses {
            let a = SocketAddr::from_addr(address)?;
            if a.family() == AF_INET6 {
                family = AF_INET6;
            }
            vec.push(a);
        }

        let sock = SctpSocket::new(family, SOCK_SEQPACKET)?;
        sock.bindx(&vec, BindOp::AddAddr)?;
        sock.listen(-1)?;
        Ok(SctpEndpoint(sock))
    }

    /// Wait for data to be received. On success, returns a triplet containing
    /// the quantity of bytes received, the sctp stream id on which data were received, and
    /// the socket address used by the peer to send the data
    pub fn recv_from(&self, msg: &mut [u8]) -> Result<(usize, u16, SocketAddr)> {
        self.0.recvmsg(msg)
    }

    /// Send data in Sctp style, to the provided address on the stream `stream`.
    /// On success, returns the quantity on bytes sent
    pub fn send_to<A: ToSocketAddrs>(
        &self,
        msg: &mut [u8],
        address: A,
        stream: u16,
    ) -> Result<usize> {
        self.0.sendmsg(msg, Some(address), 0, stream, 0)
    }

    /// Get local socket addresses to which this socket is bound
    pub fn local_addrs(&self) -> Result<Vec<SocketAddr>> {
        self.0.local_addrs(0)
    }

    /// Shuts down the read, write, or both halves of this connection
    pub fn shutdown(&self, how: Shutdown) -> Result<()> {
        self.0.shutdown(how)
    }

    /// Set or unset SCTP_NODELAY option
    pub fn set_nodelay(&self, nodelay: bool) -> Result<()> {
        let val: libc::c_int = if nodelay { 1 } else { 0 };
        self.0.setsockopt(SOL_SCTP, sctp_sys::SCTP_NODELAY, &val)
    }

    /// Verify if SCTP_NODELAY option is activated for this socket
    pub fn has_nodelay(&self) -> Result<bool> {
        let val: libc::c_int = self.0.sctp_opt_info(sctp_sys::SCTP_NODELAY, 0)?;
        Ok(val == 1)
    }

    /// Set the socket buffer size for the direction specified by `dir`.
    /// Linux systems will double the provided size
    pub fn set_buffer_size(&self, dir: SoDirection, size: usize) -> Result<()> {
        self.0
            .setsockopt(SOL_SOCKET, dir.buffer_opt(), &(size as libc::c_int))
    }

    /// Get the socket buffer size for the direction specified by `dir`
    pub fn get_buffer_size(&self, dir: SoDirection) -> Result<usize> {
        let val: u32 = self.0.getsockopt(SOL_SOCKET, dir.buffer_opt())?;
        Ok(val as usize)
    }

    /// Set `timeout` in seconds for operation `dir` (either receive or send)
    pub fn set_timeout(&self, dir: SoDirection, timeout: i32) -> Result<()> {
        // Workaround: Use of long instead of libc::time_t which does not compile in windows x86_64
        let tval = libc::timeval {
            tv_sec: timeout as libc::c_long,
            tv_usec: 0,
        };
        self.0.setsockopt(SOL_SOCKET, dir.timeout_opt(), &tval)
    }

    /// Try to clone this socket
    pub fn try_clone(&self) -> Result<SctpEndpoint> {
        Ok(SctpEndpoint(self.0.try_clone()?))
    }
}

#[cfg(target_os = "windows")]
impl AsRawHandle for SctpEndpoint {
    fn as_raw_handle(&self) -> RawHandle {
        return self.0.as_raw_handle();
    }
}

#[cfg(target_os = "windows")]
impl FromRawHandle for SctpEndpoint {
    unsafe fn from_raw_handle(hdl: RawHandle) -> SctpEndpoint {
        SctpEndpoint(SctpSocket::from_raw_handle(hdl))
    }
}

#[cfg(target_os = "linux")]
impl AsRawFd for SctpEndpoint {
    fn as_raw_fd(&self) -> RawFd {
        self.0.as_raw_fd()
    }
}

#[cfg(target_os = "linux")]
impl FromRawFd for SctpEndpoint {
    unsafe fn from_raw_fd(fd: RawFd) -> SctpEndpoint {
        SctpEndpoint(SctpSocket::from_raw_fd(fd))
    }
}

/// Iterator over incoming connections on `SctpListener`
pub struct Incoming<'a>(&'a SctpListener);

impl<'a> std::iter::Iterator for Incoming<'a> {
    type Item = Result<SctpStream>;

    fn next(&mut self) -> Option<Result<SctpStream>> {
        match self.0.accept() {
            Ok((stream, _)) => Some(Ok(stream)),
            Err(e) => Some(Err(e)),
        }
    }
}

/// SCTP listener which behaves like a `TcpListener`.
/// A SCTP listener is used to wait for and accept one-to-one SCTP connections.
/// An accepted connection is represented by `SctpStream`.
pub struct SctpListener(SctpSocket);

impl SctpListener {
    /// Create a listener bound to a single address
    pub fn bind<A: ToSocketAddrs>(address: A) -> Result<SctpListener> {
        let raw_addr = SocketAddr::from_addr(&address)?;
        let sock = SctpSocket::new(raw_addr.family(), SOCK_STREAM)?;
        sock.bind(raw_addr)?;
        sock.listen(-1)?;
        Ok(SctpListener(sock))
    }

    /// Create a listener bound to multiple addresses. Requires at least one address
    pub fn bindx<A: ToSocketAddrs>(addresses: &[A]) -> Result<SctpListener> {
        if addresses.is_empty() {
            return Err(Error::new(ErrorKind::InvalidInput, "No addresses given"));
        }
        let mut vec = Vec::with_capacity(addresses.len());
        let mut family = AF_INET;
        for address in addresses {
            let a = SocketAddr::from_addr(address)?;
            if a.family() == AF_INET6 {
                family = AF_INET6;
            }
            vec.push(a);
        }

        let sock = SctpSocket::new(family, SOCK_STREAM)?;
        sock.bindx(&vec, BindOp::AddAddr)?;
        sock.listen(-1)?;
        Ok(SctpListener(sock))
    }

    /// Accept a new connection
    pub fn accept(&self) -> Result<(SctpStream, SocketAddr)> {
        let (sock, addr) = self.0.accept()?;
        Ok((SctpStream(sock), addr))
    }

    /// Iterate over new connections
    pub fn incoming(&self) -> Incoming {
        Incoming(self)
    }

    /// Get the listener local addresses
    pub fn local_addrs(&self) -> Result<Vec<SocketAddr>> {
        self.0.local_addrs(0)
    }

    /// Set `timeout` in seconds on accept
    pub fn set_timeout(&self, timeout: i32) -> Result<()> {
        // Workaround: Use of long instead of libc::time_t which does not compile in windows x86_64
        let tval = libc::timeval {
            tv_sec: timeout as libc::c_long,
            tv_usec: 0,
        };
        self.0.setsockopt(SOL_SOCKET, SO_RCVTIMEO, &tval)
    }

    /// Try to clone this listener
    pub fn try_clone(&self) -> Result<SctpListener> {
        Ok(SctpListener(self.0.try_clone()?))
    }
}

#[cfg(target_os = "windows")]
impl AsRawHandle for SctpListener {
    fn as_raw_handle(&self) -> RawHandle {
        self.0.as_raw_handle()
    }
}

#[cfg(target_os = "windows")]
impl FromRawHandle for SctpListener {
    unsafe fn from_raw_handle(hdl: RawHandle) -> SctpListener {
        SctpListener(SctpSocket::from_raw_handle(hdl))
    }
}

#[cfg(target_os = "linux")]
impl AsRawFd for SctpListener {
    fn as_raw_fd(&self) -> RawFd {
        self.0.as_raw_fd()
    }
}

#[cfg(target_os = "linux")]
impl FromRawFd for SctpListener {
    unsafe fn from_raw_fd(fd: RawFd) -> SctpListener {
        SctpListener(SctpSocket::from_raw_fd(fd))
    }
}