summaryrefslogtreecommitdiff
path: root/src/bin/client.rs
blob: d9b37fc912b88abcf2502d345f1a03c93c4d353a (plain)
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
#[macro_use]
extern crate clap;
extern crate roughenough;
extern crate ring;
extern crate time;
extern crate chrono;
extern crate byteorder;
extern crate hex;

use ring::rand;
use ring::rand::SecureRandom;

use byteorder::{LittleEndian, ReadBytesExt};

use chrono::TimeZone;
use chrono::offset::Utc;

use std::iter::Iterator;
use std::collections::HashMap;
use std::net::{UdpSocket, ToSocketAddrs};

use roughenough::{RtMessage, Tag, VERSION, CERTIFICATE_CONTEXT, SIGNED_RESPONSE_CONTEXT};
use roughenough::sign::Verifier;
use roughenough::merkle::root_from_paths;
use clap::{Arg, App};

fn create_nonce() -> [u8; 64] {
    let rng = rand::SystemRandom::new();
    let mut nonce = [0u8; 64];
    rng.fill(&mut nonce).unwrap();

    nonce
}

fn make_request(nonce: &[u8]) -> Vec<u8> {
    let mut msg = RtMessage::new(1);
    msg.add_field(Tag::NONC, nonce).unwrap();
    msg.pad_to_kilobyte();

    msg.encode().unwrap()
}

fn receive_response(sock: &mut UdpSocket) -> RtMessage {
    let mut buf = [0; 744];
    let resp_len = sock.recv_from(&mut buf).unwrap().0;
    RtMessage::from_bytes(&buf[0..resp_len]).unwrap()
}


struct ResponseHandler {
    pub_key: Option<Vec<u8>>,
    msg: HashMap<Tag, Vec<u8>>,
    srep: HashMap<Tag, Vec<u8>>,
    cert: HashMap<Tag, Vec<u8>>,
    dele: HashMap<Tag, Vec<u8>>,
    nonce: [u8; 64]
}

struct ParsedResponse {
    verified: bool,
    midpoint: u64,
    radius: u32
}

impl ResponseHandler {
    pub fn new(pub_key: Option<Vec<u8>>, response: RtMessage, nonce: [u8; 64]) -> ResponseHandler {
        let msg = response.into_hash_map();
        let srep = RtMessage::from_bytes(&msg[&Tag::SREP]).unwrap().into_hash_map();
        let cert = RtMessage::from_bytes(&msg[&Tag::CERT]).unwrap().into_hash_map();

        let dele = RtMessage::from_bytes(&cert[&Tag::DELE]).unwrap().into_hash_map();

        ResponseHandler {
            pub_key,
            msg,
            srep,
            cert,
            dele,
            nonce
        }
    }

    pub fn extract_time(&self) -> ParsedResponse {
        let midpoint = self.srep[&Tag::MIDP].as_slice().read_u64::<LittleEndian>().unwrap();
        let radius = self.srep[&Tag::RADI].as_slice().read_u32::<LittleEndian>().unwrap();
        let mut verified = false;

        if self.pub_key.is_some() {
            self.validate_dele();
            self.validate_srep();
            self.validate_merkle();
            self.validate_midpoint(midpoint);
            verified = true;
        }

        ParsedResponse {
            verified,
            midpoint,
            radius
        }
    }

    fn validate_dele(&self) {
        let mut full_cert = Vec::from(CERTIFICATE_CONTEXT.as_bytes());
        full_cert.extend(&self.cert[&Tag::DELE]);

        assert!(self.validate_sig(self.pub_key.as_ref().unwrap(), &self.cert[&Tag::SIG], &full_cert),
                "Invalid signature on DELE tag!");
    }

    fn validate_srep(&self) {
        let mut full_srep = Vec::from(SIGNED_RESPONSE_CONTEXT.as_bytes());
        full_srep.extend(&self.msg[&Tag::SREP]);

        assert!(self.validate_sig(&self.dele[&Tag::PUBK], &self.msg[&Tag::SIG], &full_srep),
                "Invalid signature on SREP tag!");
    }

    fn validate_merkle(&self) {
        let srep = RtMessage::from_bytes(&self.msg[&Tag::SREP]).unwrap().into_hash_map();
        let index = self.msg[&Tag::INDX].as_slice().read_u32::<LittleEndian>().unwrap();
        let paths = &self.msg[&Tag::PATH];

        let hash = root_from_paths(index as usize, &self.nonce, paths); 

        assert_eq!(Vec::from(hash), srep[&Tag::ROOT], "Nonce not in merkle tree!");

    }

    fn validate_midpoint(&self, midpoint: u64) {
        let mint = self.dele[&Tag::MINT].as_slice().read_u64::<LittleEndian>().unwrap();
        let maxt = self.dele[&Tag::MAXT].as_slice().read_u64::<LittleEndian>().unwrap();

        assert!(midpoint >= mint, "Response midpoint {} lies before delegation span ({}, {})");
        assert!(midpoint <= maxt, "Response midpoint {} lies after delegation span ({}, {})");
    }

    fn validate_sig(&self, public_key: &[u8], sig: &[u8], data: &[u8]) -> bool {
        let mut verifier = Verifier::new(public_key);
        verifier.update(data);
        verifier.verify(sig)
    }
}

fn main() {
    let matches = App::new("roughenough client")
                      .version(VERSION)
                      .arg(Arg::with_name("host")
                           .required(true)
                           .help("The Roughtime server to connect to")
                           .takes_value(true))
                      .arg(Arg::with_name("port")
                           .required(true)
                           .help("The Roughtime server port to connect to")
                           .takes_value(true))
                      .arg(Arg::with_name("public-key")
                           .short("p")
                           .long("public-key")
                           .takes_value(true)
                           .help("The server public key used to validate responses. If unset, no validation will be performed"))
                      .arg(Arg::with_name("time-format")
                           .short("f")
                           .long("time-format")
                           .takes_value(true)
                           .help("The strftime format string used to print the time recieved from the server")
                           .default_value("%b %d %Y %H:%M:%S")
                        )
                      .arg(Arg::with_name("num-requests")
                           .short("n")
                           .long("num-requests")
                           .takes_value(true)
                           .help("The number of requests to make to the server (each from a different source port). This is mainly useful for testing batch response handling")
                           .default_value("1")
                        )
                      .arg(Arg::with_name("stress")
                           .short("s")
                           .long("stress")
                           .help("Stress-tests the server by sending the same request as fast as possible. Please only use this on your own server")
                        )
                      .get_matches();

    let host = matches.value_of("host").unwrap();
    let port = value_t_or_exit!(matches.value_of("port"), u16);
    let num_requests = value_t_or_exit!(matches.value_of("num-requests"), u16) as usize;
    let pub_key = matches.value_of("public-key").map(|pkey| hex::decode(pkey).expect("Error parsing public key!"));
    let time_format = matches.value_of("time-format").unwrap();
    let stress = matches.is_present("stress");

    println!("Requesting time from: {:?}:{:?}", host, port);

    let addr = (host, port).to_socket_addrs().unwrap().next().unwrap();

    if stress {

        if !addr.ip().is_loopback() {
            println!("ERROR: Cannot use non-loopback address {} for stress testing", addr.ip());
            return;
        }

        println!("Stress-testing!");

        let nonce = create_nonce();
        let socket = UdpSocket::bind("0.0.0.0:0").expect("Couldn't open UDP socket");
        let request = make_request(&nonce);

        loop {
            socket.send_to(&request, addr).unwrap();
        }
    }


    let mut requests = Vec::with_capacity(num_requests);

    for _ in 0..num_requests {
        let nonce = create_nonce();
        let mut socket = UdpSocket::bind("0.0.0.0:0").expect("Couldn't open UDP socket");
        let request = make_request(&nonce);

        requests.push((nonce, request, socket));
    }

    for &mut (_, ref request, ref mut socket) in requests.iter_mut() {
        socket.send_to(request, addr).unwrap();
    }

    for (nonce, _, mut socket) in requests {
        let resp = receive_response(&mut socket);

        let ParsedResponse {verified, midpoint, radius} = ResponseHandler::new(pub_key.clone(), resp.clone(), nonce).extract_time();

        let map = resp.into_hash_map();
        let index = map[&Tag::INDX].as_slice().read_u32::<LittleEndian>().unwrap();

        let seconds = midpoint / 10_u64.pow(6);
        let spec = Utc.timestamp(seconds as i64, ((midpoint - (seconds * 10_u64.pow(6))) * 10_u64.pow(3)) as u32);
        let out = spec.format(time_format).to_string();

        println!("Recieved time from server: midpoint={:?}, radius={:?} (merkle_index={}, verified={})", out, radius, index, verified);
    }
}