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
#![forbid(unsafe_code)]
#![deny(rust_2018_idioms)]
#![allow(clippy::match_like_matches_macro)]
#[cfg(any(feature = "ssl-openssl", feature = "ssl-rustls"))]
use zeroize::Zeroizing;
use std::error::Error;
use std::io::Error as IoError;
use std::io::ErrorKind as IoErrorKind;
use std::io::Result as IoResult;
use std::net::{Shutdown, TcpStream, ToSocketAddrs};
use std::sync::atomic::AtomicBool;
use std::sync::atomic::Ordering::Relaxed;
use std::sync::mpsc;
use std::sync::Arc;
use std::thread;
use std::time::Duration;
use client::ClientConnection;
use connection::Connection;
use util::MessagesQueue;
pub use common::{HTTPVersion, Header, HeaderField, Method, StatusCode};
pub use connection::{ConfigListenAddr, ListenAddr, Listener};
pub use request::{ReadWrite, Request};
pub use response::{Response, ResponseBox};
pub use test::TestRequest;
mod client;
mod common;
mod connection;
mod request;
mod response;
mod ssl;
mod test;
mod util;
pub struct Server {
close: Arc<AtomicBool>,
messages: Arc<MessagesQueue<Message>>,
listening_addr: ListenAddr,
}
enum Message {
Error(IoError),
NewRequest(Request),
}
impl From<IoError> for Message {
fn from(e: IoError) -> Message {
Message::Error(e)
}
}
impl From<Request> for Message {
fn from(rq: Request) -> Message {
Message::NewRequest(rq)
}
}
#[doc(hidden)]
trait MustBeShareDummy: Sync + Send {}
#[doc(hidden)]
impl MustBeShareDummy for Server {}
pub struct IncomingRequests<'a> {
server: &'a Server,
}
#[derive(Debug, Clone)]
pub struct ServerConfig {
pub addr: ConfigListenAddr,
pub ssl: Option<SslConfig>,
}
#[derive(Debug, Clone)]
pub struct SslConfig {
pub certificate: Vec<u8>,
pub private_key: Vec<u8>,
}
impl Server {
#[inline]
pub fn http<A>(addr: A) -> Result<Server, Box<dyn Error + Send + Sync + 'static>>
where
A: ToSocketAddrs,
{
Server::new(ServerConfig {
addr: ConfigListenAddr::from_socket_addrs(addr)?,
ssl: None,
})
}
#[cfg(any(feature = "ssl-openssl", feature = "ssl-rustls"))]
#[inline]
pub fn https<A>(
addr: A,
config: SslConfig,
) -> Result<Server, Box<dyn Error + Send + Sync + 'static>>
where
A: ToSocketAddrs,
{
Server::new(ServerConfig {
addr: ConfigListenAddr::from_socket_addrs(addr)?,
ssl: Some(config),
})
}
#[cfg(unix)]
#[inline]
pub fn http_unix(
path: &std::path::Path,
) -> Result<Server, Box<dyn Error + Send + Sync + 'static>> {
Server::new(ServerConfig {
addr: ConfigListenAddr::unix_from_path(path),
ssl: None,
})
}
pub fn new(config: ServerConfig) -> Result<Server, Box<dyn Error + Send + Sync + 'static>> {
let listener = config.addr.bind()?;
Self::from_listener(listener, config.ssl)
}
pub fn from_listener<L: Into<Listener>>(
listener: L,
ssl_config: Option<SslConfig>,
) -> Result<Server, Box<dyn Error + Send + Sync + 'static>> {
let listener = listener.into();
let close_trigger = Arc::new(AtomicBool::new(false));
let (server, local_addr) = {
let local_addr = listener.local_addr()?;
log::debug!("Server listening on {}", local_addr);
(listener, local_addr)
};
#[cfg(all(feature = "ssl-openssl", feature = "ssl-rustls"))]
compile_error!(
"Features 'ssl-openssl' and 'ssl-rustls' must not be enabled at the same time"
);
#[cfg(not(any(feature = "ssl-openssl", feature = "ssl-rustls")))]
type SslContext = ();
#[cfg(any(feature = "ssl-openssl", feature = "ssl-rustls"))]
type SslContext = crate::ssl::SslContextImpl;
let ssl: Option<SslContext> = {
match ssl_config {
#[cfg(any(feature = "ssl-openssl", feature = "ssl-rustls"))]
Some(config) => Some(SslContext::from_pem(
config.certificate,
Zeroizing::new(config.private_key),
)?),
#[cfg(not(any(feature = "ssl-openssl", feature = "ssl-rustls")))]
Some(_) => return Err(
"Building a server with SSL requires enabling the `ssl` feature in tiny-http"
.into(),
),
None => None,
}
};
let messages = MessagesQueue::with_capacity(8);
let inside_close_trigger = close_trigger.clone();
let inside_messages = messages.clone();
thread::spawn(move || {
let tasks_pool = util::TaskPool::new();
log::debug!("Running accept thread");
while !inside_close_trigger.load(Relaxed) {
let new_client = match server.accept() {
Ok((sock, _)) => {
use util::RefinedTcpStream;
let (read_closable, write_closable) = match ssl {
None => RefinedTcpStream::new(sock),
#[cfg(any(feature = "ssl-openssl", feature = "ssl-rustls"))]
Some(ref ssl) => {
let sock = match ssl.accept(sock) {
Ok(s) => s,
Err(_) => continue,
};
RefinedTcpStream::new(sock)
}
#[cfg(not(any(feature = "ssl-openssl", feature = "ssl-rustls")))]
Some(ref _ssl) => unreachable!(),
};
Ok(ClientConnection::new(write_closable, read_closable))
}
Err(e) => Err(e),
};
match new_client {
Ok(client) => {
let messages = inside_messages.clone();
let mut client = Some(client);
tasks_pool.spawn(Box::new(move || {
if let Some(client) = client.take() {
if client.secure() {
let (sender, receiver) = mpsc::channel();
for rq in client {
messages.push(rq.with_notify_sender(sender.clone()).into());
receiver.recv().unwrap();
}
} else {
for rq in client {
messages.push(rq.into());
}
}
}
}));
}
Err(e) => {
log::error!("Error accepting new client: {}", e);
inside_messages.push(e.into());
break;
}
}
}
log::debug!("Terminating accept thread");
});
Ok(Server {
messages,
close: close_trigger,
listening_addr: local_addr,
})
}
#[inline]
pub fn incoming_requests(&self) -> IncomingRequests<'_> {
IncomingRequests { server: self }
}
#[inline]
pub fn server_addr(&self) -> ListenAddr {
self.listening_addr.clone()
}
pub fn num_connections(&self) -> usize {
unimplemented!()
}
pub fn recv(&self) -> IoResult<Request> {
match self.messages.pop() {
Some(Message::Error(err)) => Err(err),
Some(Message::NewRequest(rq)) => Ok(rq),
None => Err(IoError::new(IoErrorKind::Other, "thread unblocked")),
}
}
pub fn recv_timeout(&self, timeout: Duration) -> IoResult<Option<Request>> {
match self.messages.pop_timeout(timeout) {
Some(Message::Error(err)) => Err(err),
Some(Message::NewRequest(rq)) => Ok(Some(rq)),
None => Ok(None),
}
}
pub fn try_recv(&self) -> IoResult<Option<Request>> {
match self.messages.try_pop() {
Some(Message::Error(err)) => Err(err),
Some(Message::NewRequest(rq)) => Ok(Some(rq)),
None => Ok(None),
}
}
pub fn unblock(&self) {
self.messages.unblock();
}
}
impl Iterator for IncomingRequests<'_> {
type Item = Request;
fn next(&mut self) -> Option<Request> {
self.server.recv().ok()
}
}
impl Drop for Server {
fn drop(&mut self) {
self.close.store(true, Relaxed);
let maybe_stream = match &self.listening_addr {
ListenAddr::IP(addr) => TcpStream::connect(addr).map(Connection::from),
#[cfg(unix)]
ListenAddr::Unix(addr) => {
let path = addr.as_pathname().unwrap();
std::os::unix::net::UnixStream::connect(path).map(Connection::from)
}
};
if let Ok(stream) = maybe_stream {
let _ = stream.shutdown(Shutdown::Both);
}
#[cfg(unix)]
if let ListenAddr::Unix(addr) = &self.listening_addr {
if let Some(path) = addr.as_pathname() {
let _ = std::fs::remove_file(path);
}
}
}
}