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
|
#![feature(test)]
#![feature(duration_as_u128)]
use std::sync::Arc;
use std::thread;
use std::sync::atomic;
use std::net::SocketAddr;
#[macro_use]
extern crate log;
extern crate tokio;
extern crate tokio_threadpool;
extern crate tokio_executor;
extern crate tokio_signal;
extern crate futures;
extern crate time;
extern crate simple_logger;
extern crate oath;
extern crate evmap;
extern crate test;
#[macro_use]
extern crate horrorshow;
extern crate random;
extern crate http;
extern crate httparse;
extern crate bytes;
extern crate thread_local;
extern crate cookie;
extern crate url;
extern crate structopt;
use structopt::StructOpt;
use log::LogLevel::{Debug, Warn};
use time::Duration;
use futures::{Future, Stream};
use tokio_threadpool::Builder;
use tokio_executor::enter;
mod auth_handler;
mod cookie_store;
mod http_server;
mod router;
mod system;
mod totp;
use cookie_store::CookieStore;
#[derive(Clone)]
pub struct ApplicationState {
cookie_store: CookieStore,
cookie_max_age: Duration,
}
#[derive(Debug, StructOpt)]
#[structopt(name = "nginx-auth-totp")]
struct Opt {
#[structopt(short = "l", long = "port", default_value = "127.0.0.1:8080")]
addr: SocketAddr,
#[structopt(short = "d", long = "debug")]
debug: bool,
}
fn main() {
let opt = Opt::from_args();
simple_logger::init_with_level(if opt.debug { Debug } else { Warn })
.unwrap_or_else(|_| panic!("Failed to initialize logger"));
let state = ApplicationState { cookie_store: CookieStore::new(), cookie_max_age: Duration::days(1) };
let server_shutdown_condvar = Arc::new(atomic::AtomicBool::new(false));
let cookie_clean_thread = {
let server_shutdown_condvar = server_shutdown_condvar.clone();
let state = state.clone();
thread::spawn(move || {
thread::park_timeout(std::time::Duration::from_secs(10));
while !server_shutdown_condvar.load(atomic::Ordering::Relaxed) {
info!("Clean cookie cache");
state.cookie_store.clean_outdated_cookies();
thread::park_timeout(std::time::Duration::from_secs(60));
}
})
};
let auth_handler = auth_handler::AuthHandler::make();
let runtime = Builder::new()
.name_prefix("httpd-")
.after_start(|| {
debug!("Start new worker: {}", thread::current().name().unwrap_or("-"));
system::initialize_rng_from_time();
})
.build();
let program = http_server::serve(opt.addr, state, auth_handler);
runtime.spawn(program);
let ctrl_c_block = tokio_signal::ctrl_c()
.flatten_stream().take(1).for_each(|()| {
info!("ctrl-c received");
Ok(())
});
enter().expect("nested tokio::run")
.block_on(ctrl_c_block)
.unwrap();
runtime.shutdown();
info!("Waiting for cookie cleanup thread to stop");
server_shutdown_condvar.store(true, atomic::Ordering::Relaxed);
cookie_clean_thread.thread().unpark();
cookie_clean_thread.join().unwrap();
}
|