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
|
// Copyright 2017-2018 int08h LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//!
//! Roughtime server
//!
//! # Configuration
//! The server has multiple ways it can be configured, see
//! [`ServerConfig`](config/trait.ServerConfig.html) for details.
//!
extern crate byteorder;
extern crate ctrlc;
extern crate hex;
#[macro_use]
extern crate log;
extern crate mio;
extern crate mio_extras;
extern crate ring;
extern crate roughenough;
extern crate simple_logger;
extern crate time;
extern crate untrusted;
extern crate yaml_rust;
use std::env;
use std::process;
use std::sync::atomic::Ordering;
use roughenough::config;
use roughenough::config::ServerConfig;
use roughenough::server::Server;
use roughenough::VERSION;
macro_rules! check_ctrlc {
($keep_running:expr) => {
if !$keep_running.load(Ordering::Acquire) {
warn!("Ctrl-C caught, exiting...");
return;
}
};
}
fn polling_loop(config: Box<ServerConfig>) {
let mut server = Server::new(config);
info!("Long-term public key : {}", server.get_public_key());
info!("Online public key : {}", server.get_online_key());
info!(
"Max response batch size : {}",
server.get_config().batch_size()
);
info!(
"Status updates every : {} seconds",
server.get_config().status_interval().as_secs()
);
info!(
"Server listening on : {}:{}",
server.get_config().interface(),
server.get_config().port()
);
let kr = server.get_keep_running();
let kr_new = kr.clone();
ctrlc::set_handler(move || kr.store(false, Ordering::Release))
.expect("failed setting Ctrl-C handler");
loop {
check_ctrlc!(kr_new);
if server.process_events() {
return;
}
}
}
fn kms_support_str() -> &'static str {
if cfg!(feature = "awskms") {
" (+AWS KMS)"
} else if cfg!(feature = "gcpkms") {
" (+GCP KMS)"
} else {
""
}
}
pub fn main() {
use log::Level;
simple_logger::init_with_level(Level::Info).unwrap();
info!(
"Roughenough server v{}{} starting",
VERSION,
kms_support_str()
);
let mut args = env::args();
if args.len() != 2 {
error!("Usage: server <ENV|/path/to/config.yaml>");
process::exit(1);
}
let arg1 = args.nth(1).unwrap();
let config = match config::make_config(&arg1) {
Err(e) => {
error!("{:?}", e);
process::exit(1)
}
Ok(ref cfg) if !config::is_valid_config(&cfg) => process::exit(1),
Ok(cfg) => cfg,
};
polling_loop(config);
info!("Done.");
process::exit(0);
}
|