2017-01-10 06:36:19 +01:00
|
|
|
/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
|
2016-12-25 21:01:06 +01:00
|
|
|
|
2017-05-29 07:47:26 +02:00
|
|
|
extern crate snow;
|
|
|
|
extern crate base64;
|
2015-06-05 15:58:00 +02:00
|
|
|
extern crate time;
|
|
|
|
extern crate byteorder;
|
2017-05-29 07:47:26 +02:00
|
|
|
extern crate crypto;
|
2017-05-29 16:58:10 +02:00
|
|
|
extern crate pnet;
|
2015-06-05 15:58:00 +02:00
|
|
|
|
|
|
|
use byteorder::{ByteOrder, BigEndian, LittleEndian};
|
|
|
|
use crypto::blake2s::Blake2s;
|
2017-05-29 07:47:26 +02:00
|
|
|
use snow::NoiseBuilder;
|
2017-05-29 16:58:10 +02:00
|
|
|
use pnet::packet::Packet;
|
|
|
|
use pnet::packet::ip::IpNextHeaderProtocols;
|
|
|
|
use pnet::packet::ipv4::{MutableIpv4Packet, self};
|
|
|
|
use pnet::packet::icmp::{MutableIcmpPacket, IcmpTypes, echo_reply, echo_request, self};
|
2015-06-05 15:58:00 +02:00
|
|
|
use std::net::*;
|
2017-05-29 16:58:10 +02:00
|
|
|
use std::str::FromStr;
|
2015-06-05 15:58:00 +02:00
|
|
|
|
2017-07-16 16:12:20 +02:00
|
|
|
static TEST_SERVER: &'static str = "demo.wireguard.com:12913";
|
2017-05-29 07:47:26 +02:00
|
|
|
|
2015-06-05 15:58:00 +02:00
|
|
|
fn memcpy(out: &mut [u8], data: &[u8]) {
|
2017-05-29 07:47:26 +02:00
|
|
|
out[..data.len()].copy_from_slice(data);
|
2015-06-05 15:58:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2017-05-29 07:47:26 +02:00
|
|
|
let socket = UdpSocket::bind("0.0.0.0:0").unwrap();
|
|
|
|
|
|
|
|
let their_public = base64::decode(&"qRCwZSKInrMAq5sepfCdaCsRJaoLe5jhtzfiw7CjbwM=").unwrap();
|
|
|
|
let my_private = base64::decode(&"WAmgVYXkbT2bCtdcDwolI88/iVi/aV3/PHcUBTQSYmo=").unwrap();
|
|
|
|
let my_preshared = base64::decode(&"FpCyhws9cxwWoV4xELtfJvjJN+zQVRPISllRWgeopVE=").unwrap();
|
2015-06-05 15:58:00 +02:00
|
|
|
|
2017-05-29 07:47:26 +02:00
|
|
|
let mut noise = NoiseBuilder::new("Noise_IKpsk2_25519_ChaChaPoly_BLAKE2s".parse().unwrap())
|
|
|
|
.local_private_key(&my_private[..])
|
|
|
|
.remote_public_key(&their_public[..])
|
|
|
|
.prologue("WireGuard v1 zx2c4 Jason@zx2c4.com".as_bytes())
|
|
|
|
.psk(2, &my_preshared[..])
|
|
|
|
.build_initiator().unwrap();
|
2015-06-05 15:58:00 +02:00
|
|
|
|
|
|
|
let now = time::get_time();
|
|
|
|
let mut tai64n = [0; 12];
|
2017-04-27 11:10:50 +02:00
|
|
|
BigEndian::write_i64(&mut tai64n[0..], 4611686018427387914 + now.sec);
|
2015-06-05 15:58:00 +02:00
|
|
|
BigEndian::write_i32(&mut tai64n[8..], now.nsec);
|
2016-12-25 21:01:06 +01:00
|
|
|
let mut initiation_packet = [0; 148];
|
2015-06-05 15:58:00 +02:00
|
|
|
initiation_packet[0] = 1; /* Type: Initiation */
|
2016-12-25 21:01:06 +01:00
|
|
|
initiation_packet[1] = 0; /* Reserved */
|
|
|
|
initiation_packet[2] = 0; /* Reserved */
|
|
|
|
initiation_packet[3] = 0; /* Reserved */
|
|
|
|
LittleEndian::write_u32(&mut initiation_packet[4..], 28); /* Sender index: 28 (arbitrary) */
|
2017-05-29 07:47:26 +02:00
|
|
|
noise.write_message(&tai64n, &mut initiation_packet[8..]).unwrap();
|
2017-04-27 11:10:50 +02:00
|
|
|
let mut mac_key_input = [0; 40];
|
|
|
|
let mut mac_key = [0; 32];
|
|
|
|
memcpy(&mut mac_key_input, b"mac1----");
|
|
|
|
memcpy(&mut mac_key_input[8..], &their_public);
|
|
|
|
Blake2s::blake2s(&mut mac_key, &mac_key_input, &[0; 0]);
|
2015-06-05 15:58:00 +02:00
|
|
|
let mut mac = [0; 16];
|
2017-04-27 11:10:50 +02:00
|
|
|
Blake2s::blake2s(&mut mac, &initiation_packet[0..116], &mac_key);
|
2016-12-25 21:01:06 +01:00
|
|
|
memcpy(&mut initiation_packet[116..], &mac);
|
2017-05-29 07:47:26 +02:00
|
|
|
socket.send_to(&initiation_packet, TEST_SERVER).unwrap();
|
2015-06-05 15:58:00 +02:00
|
|
|
|
2016-12-25 21:01:06 +01:00
|
|
|
let mut response_packet = [0; 92];
|
2015-06-05 15:58:00 +02:00
|
|
|
socket.recv_from(&mut response_packet).unwrap();
|
|
|
|
assert!(response_packet[0] == 2 /* Type: Response */);
|
2016-12-25 21:01:06 +01:00
|
|
|
assert!(response_packet[1] == 0 /* Reserved */);
|
|
|
|
assert!(response_packet[2] == 0 /* Reserved */);
|
|
|
|
assert!(response_packet[3] == 0 /* Reserved */);
|
|
|
|
let their_index = LittleEndian::read_u32(&response_packet[4..]);
|
|
|
|
let our_index = LittleEndian::read_u32(&response_packet[8..]);
|
2015-06-05 15:58:00 +02:00
|
|
|
assert!(our_index == 28);
|
2017-05-29 07:47:26 +02:00
|
|
|
let payload_len = noise.read_message(&response_packet[12..60], &mut []).unwrap();
|
|
|
|
assert!(payload_len == 0);
|
|
|
|
noise = noise.into_transport_mode().unwrap();
|
2015-06-05 15:58:00 +02:00
|
|
|
|
2017-05-29 16:58:10 +02:00
|
|
|
let mut icmp_packet = [0; 48];
|
|
|
|
{
|
|
|
|
let mut ipv4 = MutableIpv4Packet::new(&mut icmp_packet).unwrap();
|
|
|
|
ipv4.set_version(4);
|
|
|
|
ipv4.set_header_length(5);
|
|
|
|
ipv4.set_total_length(37);
|
|
|
|
ipv4.set_ttl(20);
|
|
|
|
ipv4.set_next_level_protocol(IpNextHeaderProtocols::Icmp);
|
|
|
|
ipv4.set_source(Ipv4Addr::from_str("10.189.129.2").unwrap());
|
|
|
|
ipv4.set_destination(Ipv4Addr::from_str("10.189.129.1").unwrap());
|
|
|
|
let checksum = ipv4::checksum(&ipv4.to_immutable());
|
|
|
|
ipv4.set_checksum(checksum);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let mut icmp = echo_request::MutableEchoRequestPacket::new(&mut icmp_packet[20..]).unwrap();
|
|
|
|
icmp.set_icmp_type(IcmpTypes::EchoRequest);
|
|
|
|
icmp.set_icmp_code(echo_request::IcmpCodes::NoCode);
|
|
|
|
icmp.set_identifier(921);
|
|
|
|
icmp.set_sequence_number(438);
|
|
|
|
icmp.set_payload(b"WireGuard");
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let mut icmp = MutableIcmpPacket::new(&mut icmp_packet[20..]).unwrap();
|
|
|
|
let checksum = icmp::checksum(&icmp.to_immutable());
|
|
|
|
icmp.set_checksum(checksum);
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut ping_packet = [0; 80];
|
|
|
|
ping_packet[0] = 4; /* Type: Data */
|
|
|
|
ping_packet[1] = 0; /* Reserved */
|
|
|
|
ping_packet[2] = 0; /* Reserved */
|
|
|
|
ping_packet[3] = 0; /* Reserved */
|
|
|
|
LittleEndian::write_u32(&mut ping_packet[4..], their_index);
|
|
|
|
LittleEndian::write_u64(&mut ping_packet[8..], 0);
|
|
|
|
noise.write_message(&icmp_packet, &mut ping_packet[16..]).unwrap();
|
|
|
|
socket.send_to(&ping_packet, TEST_SERVER).unwrap();
|
|
|
|
|
|
|
|
socket.recv_from(&mut ping_packet).unwrap();
|
|
|
|
assert!(ping_packet[0] == 4 /* Type: Data */);
|
|
|
|
assert!(ping_packet[1] == 0 /* Reserved */);
|
|
|
|
assert!(ping_packet[2] == 0 /* Reserved */);
|
|
|
|
assert!(ping_packet[3] == 0 /* Reserved */);
|
|
|
|
let our_index_received = LittleEndian::read_u32(&ping_packet[4..]);
|
|
|
|
assert!(our_index_received == 28);
|
|
|
|
let nonce = LittleEndian::read_u64(&ping_packet[8..]);
|
|
|
|
assert!(nonce == 0);
|
|
|
|
let payload_len = noise.read_message(&ping_packet[16..], &mut icmp_packet).unwrap();
|
|
|
|
assert!(payload_len == 48);
|
|
|
|
let icmp_reply = echo_reply::EchoReplyPacket::new(&icmp_packet[20..37]).unwrap();
|
|
|
|
assert!(icmp_reply.get_icmp_type() == IcmpTypes::EchoReply && icmp_reply.get_icmp_code() == echo_reply::IcmpCodes::NoCode);
|
|
|
|
assert!(icmp_reply.get_identifier() == 921 && icmp_reply.get_sequence_number() == 438);
|
|
|
|
assert!(icmp_reply.payload() == b"WireGuard");
|
2017-06-01 18:45:20 +02:00
|
|
|
|
|
|
|
let mut keepalive_packet = [0; 32];
|
|
|
|
keepalive_packet[0] = 4; /* Type: Data */
|
|
|
|
keepalive_packet[1] = 0; /* Reserved */
|
|
|
|
keepalive_packet[2] = 0; /* Reserved */
|
|
|
|
keepalive_packet[3] = 0; /* Reserved */
|
|
|
|
LittleEndian::write_u32(&mut keepalive_packet[4..], their_index);
|
|
|
|
LittleEndian::write_u64(&mut keepalive_packet[8..], 1);
|
|
|
|
let empty_payload = [0; 0]; /* Empty payload means keepalive */
|
|
|
|
noise.write_message(&empty_payload, &mut keepalive_packet[16..]).unwrap();
|
|
|
|
socket.send_to(&keepalive_packet, TEST_SERVER).unwrap();
|
2015-06-05 15:58:00 +02:00
|
|
|
}
|