|
|
|
@ -1,4 +1,7 @@
|
|
|
|
|
#![feature(fs_read_write)]
|
|
|
|
|
|
|
|
|
|
extern crate base32;
|
|
|
|
|
extern crate crypto;
|
|
|
|
|
extern crate oath;
|
|
|
|
|
extern crate rand;
|
|
|
|
|
extern crate serde_json;
|
|
|
|
@ -6,9 +9,17 @@ extern crate serde_json;
|
|
|
|
|
#[macro_use]
|
|
|
|
|
extern crate serde_derive;
|
|
|
|
|
|
|
|
|
|
use crypto::buffer::{BufferResult, ReadBuffer, WriteBuffer};
|
|
|
|
|
use crypto::digest::Digest;
|
|
|
|
|
use crypto::sha2::Sha256;
|
|
|
|
|
use crypto::{aes, blockmodes, buffer, symmetriccipher};
|
|
|
|
|
|
|
|
|
|
use rand::{OsRng, Rng};
|
|
|
|
|
|
|
|
|
|
use std::collections::HashMap;
|
|
|
|
|
use std::fs::{create_dir_all, File, OpenOptions};
|
|
|
|
|
use std::io::ErrorKind;
|
|
|
|
|
use std::io::Write;
|
|
|
|
|
use std::path::{Path, PathBuf};
|
|
|
|
|
|
|
|
|
|
const DATABASE_VERSION: u8 = 1;
|
|
|
|
@ -121,30 +132,171 @@ struct DatabaseContentSchema {
|
|
|
|
|
|
|
|
|
|
pub struct JsonDatabase {
|
|
|
|
|
file_path: PathBuf,
|
|
|
|
|
secret_fn: &'static Fn() -> String,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const IV_SIZE: usize = 16;
|
|
|
|
|
const KEY_SIZE: usize = 32;
|
|
|
|
|
impl JsonDatabase {
|
|
|
|
|
pub fn new(path: PathBuf) -> JsonDatabase {
|
|
|
|
|
JsonDatabase { file_path: path }
|
|
|
|
|
pub fn new(path: PathBuf, secret_fn: &'static Fn() -> String) -> JsonDatabase {
|
|
|
|
|
JsonDatabase {
|
|
|
|
|
file_path: path,
|
|
|
|
|
secret_fn: secret_fn,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn form_secret_key(input: &str) -> [u8; KEY_SIZE] {
|
|
|
|
|
let mut sha = Sha256::new();
|
|
|
|
|
sha.input_str(input);
|
|
|
|
|
let mut res: [u8; KEY_SIZE] = [0; KEY_SIZE];
|
|
|
|
|
sha.result(&mut res);
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn read_database_file(&self) -> JsonDatabaseSchema {
|
|
|
|
|
let file = match File::open(&self.file_path) {
|
|
|
|
|
Ok(f) => f,
|
|
|
|
|
let data = match std::fs::read(&self.file_path) {
|
|
|
|
|
Ok(d) => d,
|
|
|
|
|
Err(ref err) if err.kind() == ErrorKind::NotFound => return Self::get_empty_schema(),
|
|
|
|
|
Err(err) => panic!("There was a problem opening file: {:?}", err),
|
|
|
|
|
};
|
|
|
|
|
serde_json::from_reader(file).expect("Couldn't parse JSON from database file")
|
|
|
|
|
let decrypted_data =
|
|
|
|
|
Self::decrypt_data(&data, &Self::form_secret_key((self.secret_fn)().as_str()));
|
|
|
|
|
serde_json::from_str(decrypted_data.as_str())
|
|
|
|
|
.expect("Couldn't parse JSON from database file")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn decrypt_data(data: &[u8], key: &[u8]) -> String {
|
|
|
|
|
let iv = &data[..IV_SIZE];
|
|
|
|
|
String::from_utf8(Self::decrypt(&data[IV_SIZE..], key, iv).expect("Couldn't decrypt data"))
|
|
|
|
|
.ok()
|
|
|
|
|
.unwrap()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn encrypt_data(data: &str, key: &[u8]) -> Vec<u8> {
|
|
|
|
|
let iv = Self::create_iv();
|
|
|
|
|
let encrypted_data =
|
|
|
|
|
Self::encrypt(data.as_bytes(), key, &iv).expect("Couldn't encrypt data");
|
|
|
|
|
[&iv, &encrypted_data[..]].concat()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn create_iv() -> Vec<u8> {
|
|
|
|
|
let mut iv = vec![0; IV_SIZE];
|
|
|
|
|
let mut rng = OsRng::new().ok().unwrap();
|
|
|
|
|
rng.fill_bytes(&mut iv);
|
|
|
|
|
iv
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn save_database_file(&self, content: JsonDatabaseSchema) {
|
|
|
|
|
let file = match self.open_database_file_for_write() {
|
|
|
|
|
let mut file = match self.open_database_file_for_write() {
|
|
|
|
|
Ok(f) => f,
|
|
|
|
|
Err(ref err) if err.kind() == ErrorKind::NotFound => self.create_database_file()
|
|
|
|
|
.expect("Couldn't create database file"),
|
|
|
|
|
Err(err) => panic!("Couldn't open database file: {:?}", err),
|
|
|
|
|
};
|
|
|
|
|
serde_json::to_writer(file, &content).expect("Couldn't write JSON data to database file");
|
|
|
|
|
let data = serde_json::to_string(&content).expect("Couldn't serialize data to JSON");
|
|
|
|
|
let encrypted_data =
|
|
|
|
|
Self::encrypt_data(&data, &Self::form_secret_key((self.secret_fn)().as_str()));
|
|
|
|
|
file.write_all(&encrypted_data)
|
|
|
|
|
.expect("Couldn't write data to database file");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Encrypt a buffer with the given key and iv using
|
|
|
|
|
// AES-256/CBC/Pkcs encryption.
|
|
|
|
|
fn encrypt(
|
|
|
|
|
data: &[u8],
|
|
|
|
|
key: &[u8],
|
|
|
|
|
iv: &[u8],
|
|
|
|
|
) -> Result<Vec<u8>, symmetriccipher::SymmetricCipherError> {
|
|
|
|
|
// Create an encryptor instance of the best performing
|
|
|
|
|
// type available for the platform.
|
|
|
|
|
let mut encryptor =
|
|
|
|
|
aes::cbc_encryptor(aes::KeySize::KeySize256, key, iv, blockmodes::PkcsPadding);
|
|
|
|
|
|
|
|
|
|
// Each encryption operation encrypts some data from
|
|
|
|
|
// an input buffer into an output buffer. Those buffers
|
|
|
|
|
// must be instances of RefReaderBuffer and RefWriteBuffer
|
|
|
|
|
// (respectively) which keep track of how much data has been
|
|
|
|
|
// read from or written to them.
|
|
|
|
|
let mut final_result = Vec::<u8>::new();
|
|
|
|
|
let mut read_buffer = buffer::RefReadBuffer::new(data);
|
|
|
|
|
let mut buffer = [0; 4096];
|
|
|
|
|
let mut write_buffer = buffer::RefWriteBuffer::new(&mut buffer);
|
|
|
|
|
|
|
|
|
|
// Each encryption operation will "make progress". "Making progress"
|
|
|
|
|
// is a bit loosely defined, but basically, at the end of each operation
|
|
|
|
|
// either BufferUnderflow or BufferOverflow will be returned (unless
|
|
|
|
|
// there was an error). If the return value is BufferUnderflow, it means
|
|
|
|
|
// that the operation ended while wanting more input data. If the return
|
|
|
|
|
// value is BufferOverflow, it means that the operation ended because it
|
|
|
|
|
// needed more space to output data. As long as the next call to the encryption
|
|
|
|
|
// operation provides the space that was requested (either more input data
|
|
|
|
|
// or more output space), the operation is guaranteed to get closer to
|
|
|
|
|
// completing the full operation - ie: "make progress".
|
|
|
|
|
//
|
|
|
|
|
// Here, we pass the data to encrypt to the enryptor along with a fixed-size
|
|
|
|
|
// output buffer. The 'true' flag indicates that the end of the data that
|
|
|
|
|
// is to be encrypted is included in the input buffer (which is true, since
|
|
|
|
|
// the input data includes all the data to encrypt). After each call, we copy
|
|
|
|
|
// any output data to our result Vec. If we get a BufferOverflow, we keep
|
|
|
|
|
// going in the loop since it means that there is more work to do. We can
|
|
|
|
|
// complete as soon as we get a BufferUnderflow since the encryptor is telling
|
|
|
|
|
// us that it stopped processing data due to not having any more data in the
|
|
|
|
|
// input buffer.
|
|
|
|
|
loop {
|
|
|
|
|
let result = try!(encryptor.encrypt(&mut read_buffer, &mut write_buffer, true));
|
|
|
|
|
|
|
|
|
|
// "write_buffer.take_read_buffer().take_remaining()" means:
|
|
|
|
|
// from the writable buffer, create a new readable buffer which
|
|
|
|
|
// contains all data that has been written, and then access all
|
|
|
|
|
// of that data as a slice.
|
|
|
|
|
final_result.extend(
|
|
|
|
|
write_buffer
|
|
|
|
|
.take_read_buffer()
|
|
|
|
|
.take_remaining()
|
|
|
|
|
.iter()
|
|
|
|
|
.map(|&i| i),
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
match result {
|
|
|
|
|
BufferResult::BufferUnderflow => break,
|
|
|
|
|
BufferResult::BufferOverflow => {}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Ok(final_result)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Decrypts a buffer with the given key and iv using
|
|
|
|
|
// AES-256/CBC/Pkcs encryption.
|
|
|
|
|
fn decrypt(
|
|
|
|
|
encrypted_data: &[u8],
|
|
|
|
|
key: &[u8],
|
|
|
|
|
iv: &[u8],
|
|
|
|
|
) -> Result<Vec<u8>, symmetriccipher::SymmetricCipherError> {
|
|
|
|
|
let mut decryptor =
|
|
|
|
|
aes::cbc_decryptor(aes::KeySize::KeySize256, key, iv, blockmodes::PkcsPadding);
|
|
|
|
|
|
|
|
|
|
let mut final_result = Vec::<u8>::new();
|
|
|
|
|
let mut read_buffer = buffer::RefReadBuffer::new(encrypted_data);
|
|
|
|
|
let mut buffer = [0; 4096];
|
|
|
|
|
let mut write_buffer = buffer::RefWriteBuffer::new(&mut buffer);
|
|
|
|
|
|
|
|
|
|
loop {
|
|
|
|
|
let result = try!(decryptor.decrypt(&mut read_buffer, &mut write_buffer, true));
|
|
|
|
|
final_result.extend(
|
|
|
|
|
write_buffer
|
|
|
|
|
.take_read_buffer()
|
|
|
|
|
.take_remaining()
|
|
|
|
|
.iter()
|
|
|
|
|
.map(|&i| i),
|
|
|
|
|
);
|
|
|
|
|
match result {
|
|
|
|
|
BufferResult::BufferUnderflow => break,
|
|
|
|
|
BufferResult::BufferOverflow => {}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Ok(final_result)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn create_database_file(&self) -> Result<File, std::io::Error> {
|
|
|
|
|